2010-01-28 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blob75927f129e7755c8d714cf8f76a231d3d431b44e
1 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
3         * pedump.c (main): Properly set the verifier mode when running the metadata
4         verifier.
6 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
8         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
9         overlapping fields now that we're called before has_references is set.
11         * pedump.c (dump_verify_info): Clear any loader error before verifying another
12         method. Otherwise all sort of weird stuff happens.
14 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
16         * object.c (mono_field_get_value_object): Handle nullable types correctly.
17         Fixes #572874.
19 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
21         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
22         Fixes #573322.
24 2010-01-23  Mark Probst  <mark.probst@gmail.com>
26         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
27         pin_staging_area_index is greater than 0.
29 2010-01-22 Miguel de Icaza (miguel@novell.com)
31         * loader.c: Since we do nothing with the error returned, pass NULL
32         to ignore the error.
34 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
36         * reflection.c (typebuilder_setup_fields): Pretend field setup already
37         happened before starting to encode the actual fields. This avoid ciclic
38         dependencies and eventual crashes.
40         Fixes #572660.
42 2010-01-21  Mark Probst  <mark.probst@gmail.com>
44         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
45         atomic and remove the half-constructed hack in SGen.
47 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
49         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
50         has a recursive reference to itself.
52         Fixes #571863.
54 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
56         * loader.c (mono_method_signature): Fix error message.
58 2010-01-21  Mark Probst  <mark.probst@gmail.com>
60         * sgen-gc.c: Reuse to-space sections between nursery collections.
62 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
64         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
65         from the current assembly or mscorlib. Fixes bug #322957.
67 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
69         * marshal.c: Calculate the target class of the delegete invoke wrappers using
70         get_wrapper_target_class.
72 2010-01-19  Mark Probst  <mark.probst@gmail.com>
74         * sgen-gc.c: Fix warnings.
76 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
78         * verify.c (store_local): Better error message.
80 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
82         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
83         arguments.
85 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
87         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
88         function is generics variance aware.
90 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
92         * security-core-clr.c (mono_security_core_clr_can_access_internals):
93         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
95 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
97         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
98           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
100         Code is contributed under MIT/X11 license.
102 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
104         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
105         on a GTD.
107 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
109         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
110         return a point to a wrapper specific info structure describing the wrapper.
111         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
113 2010-01-18  Mark Probst  <mark.probst@gmail.com>
115         * sgen-gc.c: Make minor collection section allowance adaptive,
116         depending on the amount of memory reclaimed in the last major
117         collection.  If more memory was reclaimed (i.e. more garbage
118         produced), do the next collection earlier.
120 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
122         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
123         to itself.
125         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
126         the token as parameter.
128         * verify-internals.h: Ditto.
130         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
132         Fixes #571460.
134 2010-01-18  Mark Probst  <mark.probst@gmail.com>
136         * sgen-gc.c: Make store_remset_buffer_index long.
138 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
140         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
142         Fixes #569579.
144 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
146         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
147         off precise marking if it is available.
148         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
150 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
152         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
154         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
155         pinned objects.
157         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
158         to the array allocator.
160 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
162         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
163         result of mono_compile_method (), it already includes an ftnptr.
165 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
167         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
169 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
171         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
172         hash value which doesn't depend on glib/eglib versions.
173         (mono_metadata_type_hash): Use it.
175         * object.c (mono_method_get_imt_slot): Ditto.
177 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
179         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
180         independently of the GTD.
182         * class.c (mono_class_setup_fields): Fail if field has negative offset.
184         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
185         to the upper limit since instance_size includes this amount.
187         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
189         Fixes #569544.
191 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
193         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
194         with static methods.
196         * object.c (build_imt_slots): Avoid asserting when static methods are
197         encountered in an interface.
199 2010-01-13  Mark Probst  <mark.probst@gmail.com>
201         * sgen-gc.c (to_space_expand): Fix assertion.
203 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
205         * string-icalls.c: missing declaration fixes.
206         * sgen-gc.c: portability fixes.
208 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
210         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
212         * class.c:
213         * cominterop.c:
214         * icall.c:
215         * object.c: 
216         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
218 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
220         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
221         it can fail loading the type.
223         * class.c: Add mono_class_inflate_generic_class_checked.
225         * class.c:
226         * verify.c:
227         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
229 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
231         * loader.c (mono_method_signature_checked): New internal function taking an
232         MonoError argument.
234         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
235         Fixes build on rh 7.3.
237 2010-01-10  Aaron Bockover  <abockover@novell.com>
239         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
240         at runtime in the same way as on Windows, which yields a relocatable
241         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
242         of the running mono process.
244         On TARGET_ARM, fallback () will always be executed.
246 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
248         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
250 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
252         * class.c (mono_class_is_assignable_from_slow): Support variant
253         generic delegates.
255         * class.c (mono_class_implement_interface_slow): Support types with
256         variant generic arguments.
258 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
260         * verify.c: Remove some code duplication.
262 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
264         * object.c: Update docs.
266 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
268         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
270         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
271         fallback trampoline as well.
273         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
274         out argument that is set to TRUE if the match was direct. 
276         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
278         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
280 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
282         * class.c: Add mono_class_interface_offset_with_variance function that does same
283         as mono_class_interface_offset but takes variance into account.
285         * class-internal.h: Export mono_class_interface_offset_with_variance.
287         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
289 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
291         * object.c:
292         * icall.c:
293         * class.c: Add some FIXME for due to variant generic arguments.
295         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
296         can't use the simple bitfield check, so call mono_class_is_assignable_from if
297         the bitfield check fails.
299 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
301         * class.c (mono_class_is_assignable_from): Rework the generics variance code
302         to be easier to read and fix bugs in the case a non generic type implements a variant
303         interface.
305         * class.c (mono_class_has_variant_generic_params): Make non static.
307         * class-internals.h: Export mono_class_has_variant_generic_params as part of
308         the private API.
310 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
312         * assembly.c: fix MONO_PATH debug output.
314 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
316         * culture-info-table.h : regenerated.
318 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
320         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
321         types that are meant to not have a parent.
323 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
325         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
326         from the image mempool, so it is not leaked.
328 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
330         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
332 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
334         * verify.c (verify_valuetype_layout_with_target): Fix case
335         that can lead to infinite recursion. Fix bug #567861
337 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
339         * pedump.c: Run code verifier even if image verification fails
340         due to a failed type we. This allows more errors to be shown.
342 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
344         * class.c (count_virtual_methods): Remove the assert and now
345         fail properly.
346         
347         * class.c (setup_interface_offsets): This can fail now.
349         * class.c (mono_class_setup_vtable_general): Check for parent vtable
350         errors. Check setup_interface_offsets errors.
352         * class.c (setup_interface_offsets): Simplify the return error logic
353         and remove class_init_ok.
355         Fixes #560327.
357 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
359         * class.c (mono_class_init): Do class verification at the beginning. Add
360         some asserts to avoid tripping into invalid memory.
362         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
363         g_error and a decent message.
365         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
367         Fixes #567548.
369 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
371         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
372         as inline functions instead of defining them in mempool.c.
374         * metadata-internals.h (MonoImageSet): New structure representing a set of
375         MonoImages, which own a collection of generic instances.
377         * metadata.c: Get rid of the global generic caches, instead assign each generic
378         instance to the image set which consists of all the images referenced by the
379         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
380         the memory used by generic instances to be allocated from a per image-set mempool
381         later.
383 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
385         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
387 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
389         * appdomain.c (zero_static_data): Fix a warning.
391         * locales.c (construct_culture_from_specific_name): Applied patch from
392         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
393         not found. Fixes #567900.
395 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
397         * loader.c (mono_method_get_signature_full): Remove two asserts.
398         Return NULL instead so that the verifier can handle both cases 
399         gracefully.
401 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
403         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
404         so we can properly fail types instead of crashing.
406         Fixes #567676.
408 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
410         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
411         generic method.
413 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
415         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
417 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
419         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
420         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
421         we can't remove it from it since we don't hold the lock.
422         (mon_new): Free the orphaned events here when a mon structure is added to the
423         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
424         this down.
426 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
428         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
429         as max stack might be zero.
431         Fixes #562320.
433 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
435         Rework all uses of mono_class_setup_methods to accept that it can fail now.
437         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
438         instances if the GTD did.
440         * class.c (mono_class_setup_properties): Ditto.
442         * class.c (mono_class_setup_events): Ditto.
444         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
446         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
447         error setting.
449         * class.c (mono_class_init): Fail if GTD did.
451         * cominterop.c:
452         * generic-sharing.c:
453         * icall.c:
454         * loader.c:
455         * object.c:
456         * verify.c: Properly handle failure of mono_class_setup_methods.
458 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
460         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
461         mono_class_inflate_generic_method_full internal.
463         * class.c (inflate_generic_context): Now takes a MonoError argument.
465         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
466         errors.
468 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
470         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
471         they cannot be patched. Partly fixes #564408.
473 2009-12-24  Mark Probst  <mark.probst@gmail.com>
475         * metadata-internals.h, reflection.c: Use the
476         MonoDynamicImage.handleref hash table only with unmanaged keys,
477         and add a managed hash table handleref_managed for managed keys.
479 2009-12-24  Mark Probst  <mark.probst@gmail.com>
481         * sgen-gc.c: Unset to-space bumper between collections.  It might
482         become invalid due to degraded allocations.
484 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
486         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
487         with the one from the original method.
489         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
490         compatibility.
492         * verify-internals.h: Add new function to the internal API.
494 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
496         * culture-info-tables.h: regenerated it to include the Georgian culture.
498 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
500         * sgen-gc.c: Include mono/utils/memcheck.h.
502         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
503         instead of the current domain, since the two might not match if this is called
504         from the debugger.
506         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
507         domain which created this assembly.
509 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
511         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
513 2009-12-17  Mark Probst  <mark.probst@gmail.com>
515         * sgen-gc.c: Managed implementation of the specialized generic
516         store write barrier.
518 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
520         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
521         A private virtual newslot method is used to implement an interface method without exposing
522         it to users. When querying for public instance methods, such method would hide a public one
523         on a parent type.
525         Fixes #564379.
527 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
529         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
530         conventions.
532 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
534         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
536 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
538         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
539         as they are no longer used.
540         
541          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
543         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
545 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
547         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
548         if the owner class has not been finished before returning reflection_info.      
550         Fixes #565127.
552 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
554         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
555         param doesn't have custom attributes. Fixes #565117.
557         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
558         #565120.
560 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
562         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
564 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
566         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
567         same amount done by a core-clr enabled runtime.
569 2009-12-15  Marek Habersack  <mhabersack@novell.com>
571         * appdomain.c (mono_make_shadow_copy): make sure access mode of
572         the target files is reset to writable by owner and readable by
573         everyone else to prevent problems when updating shadow copies of
574         files whose source is read-only. Fixes bug #556884
576 2009-12-15  Mark Probst  <mark.probst@gmail.com>
578         * class.c (mono_generic_class_get_class): Allocate the generic
579         class via malloc again, so that it can be freed when any one of
580         the images of its constituent types is closed.
582         * metadata.c: When closing an image, don't free generic insts and
583         generic classes right away, but put them into a list for later
584         freeing.
586         * image.c, metadata-internals.h: Store the free list and in the
587         second pass of closing an image, free it.
589 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
591         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
593         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
594         types in type_hash.
596         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
598 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
600         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
601         user type.
603         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
604         is used.
606 2009-12-14  Miguel de Icaza  <miguel@novell.com>
608         * verify.c (mono_method_verify): The Unused opcodes produce an
609         InvalidProgramException on .NET
611 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
613         * loader.c (mono_method_get_header): Move assert after the verifier
614         has been called on the method header.
616 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
618         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
620         * appdomain.c: Bump corlib version.
622 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
624         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
625         types as well since otherwise generic instances would not return UT as arguments but
626         their undelying system type.
628         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
629         to reflect the fact that they can have now multiple different types.
631         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
633         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
635         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
637         * reflection.c (mono_reflection_register_with_runtime): Init super types
638         if the image is not dynamic.
640         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
641         check if the generic type definition is a TypeBuilder.
643         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
644         doesn't belong to a dynamic image, skip initialization.
646         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
647         base definition is not a dynamic type.
649 2009-12-11  Marek Habersack  <mhabersack@novell.com>
651         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
652         mono_profiler_string_allocation
654         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
655         if string profiling is enabled, call
656         mono_profiler_string_allocation
658         * profiler.h: added two MonoProfileFlags -
659         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
660         installation functions for the hooks below.
662         * profiler-private.h, profiler.c: added two hooks:
663         mono_profiler_string_allocation called whenever a string is
664         allocated by InternalAllocateStr and mono_profiler_iomap called
665         whenever IOMAP code performs an adjustement on a file path.
667 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
669         * boehm-gc.c: fixed race condition while getting the target of a
670         disappearing link (bug #522233).
672 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
674         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
675         the error.
677 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
679         * reflection.c: Add mono_reflection_register_with_runtime icall to
680         allow a MonoGenericClass to register itself as the managed mirror of
681         a given generic instance.
682         This is a temporary workaround until all MGC instantiation happens in
683         managed code.
685         * object-internals.h: Ditto.
687         * icall-def.h: Ditto.
689 2009-12-10  Mark Probst  <mark.probst@gmail.com>
691         * sgen-gc.c (find_in_remsets): Also search the generic store
692         remsets.
694 2009-12-10  Mark Probst  <mark.probst@gmail.com>
696         * sgen-gc.c: Don't access class names in debugging code when
697         unloading a domain, because they might not be valid anymore.
699 2009-12-10  Mark Probst  <mark.probst@gmail.com>
701         * domain.c, domain-internals.h: New function mono_domain_unset().
703         * appdomain.c (unload_thread_main): Detach the thread again at the
704         end.
706         * threads.c: When a thread exists or is detached, unset its domain
707         so that it's NULL when, for example, a pthread destructor runs.
709         * sgen-gc.c: Assert that there is no domain set after a thread is
710         done.
712 2009-12-10  Mark Probst  <mark.probst@gmail.com>
714         * class.c (mono_generic_class_get_class),
715         metadata.c (free_generic_class): Allocate generic MonoClass's from
716         the image mempool, not via malloc.  The problem with malloc is
717         that when unloading a domain those classes are freed before
718         clearing the heap and SGen needs the classes.  Rewriting the
719         unloading code to do the free later would be more work and there's
720         no point in using malloc anyway.
722 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
724         * loader.c (mono_method_signature): Always call mono_loader_unlock 
725         before returning.
727 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
729         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
730         user string blobs.
732         * verify-internals.h: Add new function to the internal API.
734         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
735         check if it's a valid string.
737         * object.c (mono_ldstr): Ditto.
739         Fixes #561943.
741 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
743         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
744         from a method before returning it. This is the expected behavior.
746 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
748         * reflection.c (inflate_method): Handle the case of a regular system type.
750 2009-12-08  Mark Probst  <mark.probst@gmail.com>
752         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
753         gathering code.
755         * mempool.c, mempool-internals.h: New function
756         mono_mempool_get_bytes_allocated().
758         * Makefile.am: sgen-pinning-stats.c added.
760 2009-12-08  Mark Probst  <mark.probst@gmail.com>
762         * sgen-gc.c (create_allocator): Only use the fast path if the
763         object size is within the small object size limit.
765 2009-12-07  Mark Probst  <mark.probst@gmail.com>
767         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
768         possibly adding padding to sizeof (GCMemSection).
770 2009-12-07  Mark Probst  <mark.probst@gmail.com>
772         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
773         reference is not in the nursery.
775 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
777         * class.c (mono_class_from_typeref): Bounds check idx against the 
778         assemblyref table.
780 2009-12-07  Mark Probst  <mark.probst@gmail.com>
782         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
783         through the potential roots, then sort the results and find the
784         pinned objects from there.
786         * Makefile.am: sgen-pinning.c added.
788 2009-12-07  Mark Probst  <mark.probst@gmail.com>
790         * sgen-gc.c: Record generic stores in specialized remset buffers.
792 2009-12-06  Mark Probst  <mark.probst@gmail.com>
794         * sgen-gc.c: Make pinned chunks the same size as major heap
795         sections, and align them as well, so that we can check whether an
796         object is in a pinned chunk or a major section in constant time.
798 2009-12-06  Mark Probst  <mark.probst@gmail.com>
800         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
802 2009-12-06  Mark Probst  <mark.probst@gmail.com>
804         * sgen-gc.c: Make all major heap sections the same size (currently
805         128k) and allocate them on aligned addresses.  Small heap sections
806         give us better granularity with pinned objects - we can free up
807         much more memory.
809 2009-12-06  Mark Probst  <mark.probst@gmail.com>
811         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
812         output removed.
814 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
816         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
818         * mono/metadata/assembly.c: When opening an assembly image, pass the real
819         names in addition to the runtime generated one.
821         * mono/metadata/image.h: Add a function to take the real name of the assembly
822         image.
824         * mono/metadata/image.c: If a real name has been passed to load an assembly,
825         use it instead of the runtime generated one.
827         Code is contributed under MIT/X11 license.
829 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
831         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
832         before the other checks to prevent problems if the DateTime class is blittable.
833         Hopefully fixes #559600.
835 2009-12-05  Mark Probst  <mark.probst@gmail.com>
837         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
838         returns the largest string length that will not be put into the
839         LOS.
841         * sgen-gc.c, gc-internal.h: New function that returns the largest
842         object size that will not be put into the LOS.
844         * appdomain.c: Bump corlib version.
846 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
848         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
850         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
852 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
854         * reflection.c (inflate_method): Fix signature.
856         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
857         in managed code.
859 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
861         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
863 2009-12-03  Mark Probst  <mark.probst@gmail.com>
865         * sgen-gc.c: Abstract to-space handling.
867 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
869         * loader.c (find_method_in_class): Ignore methods with broken signatures.
871         Fixes #559906.
873 2009-12-03  Mark Probst  <mark.probst@gmail.com>
875         * sgen-gc.c: Only add references from outside the nursery to
876         within the nursery to the global remset list.
878 2009-12-03  Mark Probst  <mark.probst@gmail.com>
880         * appdomain.c (create_exceptions): Set the domain temporarily if
881         necessary to avoid cross-domain references.
883 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
885         * verify.c (get_stack_type): Return that the type is invalid instead of
886         asserting.
888         * verify.c (mono_method_verify): Verify that all locals and arguments
889         have valid stack types.
891         Fixes #559913.
893 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
895         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
896         bounds checking overflow aware.
898         Fixes #559910.
900 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
902         * verify.c (do_invoke_method): Check for invalid method signatures.
904         Fixes #553450.
906 2009-12-02  Jb Evain  <jbevain@novell.com>
908         * appdomain.c (MONO_CORLIB_VERSION): bump.
909         * icall-def.h (get_base_definition): renamed to get_base_method
910         and add a boolean argument indicating we want the original
911         method definition, or the immediate base method.
912         * icall.c: apply the get_base_definition to get_base_method change.
914 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
916         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
918         Fixes #558042.
920 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
922         * class.c: remove asserts for invalid type token in
923         mono_class_name_from_token(), mono_assembly_name_from_token() and
924         mono_class_create_from_typedef () (fixes bug #553318).
926 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
928         * metadata.c, class.c, loader.c: remove assert after bsearch() for
929         incorrect assemblies (bug #553322).
931 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
933         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
935         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
937         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
939         * class.c (inflate_generic_context): Ditto.
941         * loader.c (method_from_methodspec): Ditto.
943         Fixes #558230.
945 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
947         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
949         * class.c (mono_class_create_from_typespec): Ditto.
951         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
953         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
955         Fixes #558184.
957 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
959         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
961         * verify.c (verify_delegate_compatibility): Ditto.
963         * verify.c (do_newobj): Ditto.
965         Fixes #558046.
967 2009-12-02  Mark Probst  <mark.probst@gmail.com>
969         * sgen-gc.c: Use a gray queue instead of requiring that gray
970         objects are in a contiguous region.
972         * sgen-gray.c: The gray queue implementation.
974         * Makefile.am: sgen-gray.c added.
976 2009-12-02  Mark Probst  <mark.probst@gmail.com>
978         * appdomain.c: When unloading a domain, zero its static data and
979         perform a minor collection when using SGen.  That will get rid of
980         all the remsets pointing into that domain's static data.
982         * sgen-gc.c: Allow remsets into static data.  By doing this we
983         need less checks so we're more efficient.
985 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
987         * verify.c (mono_method_verify): Check for catch clauses with broken
988         types.
990         Fixes #558465.
992 2009-12-01  Jb Evain  <jbevain@novell.com>
994         * class.c (make_generic_param_class): set the namespace of
995         the generic parameter class from its owner, if available.
997 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
999         * verify.c (code_bounds_check): Do proper overflow checking.
1001         * verify.c (mono_method_verify): The number of switch entries is
1002         an unsigned int. Properly bounds check it.
1004         Fixes #558594.
1006 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1008         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
1009         mono_metadata_method_has_param_attrs which only checks if a given param
1010         list has a non zero flags entry.
1012         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
1013         to inform how many params should we expect to decode.
1015         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
1016         as it's faster than mono_metadata_get_param_attrs.
1018         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
1019         add mono_metadata_method_has_param_attrs.
1021 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1023         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
1024         failures.
1026         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
1027         is -1 but its class is broken.
1029         Fixes #558522.
1031 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1033         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
1034         for parameter overflow.
1036         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
1037         of mono_metadata_get_param_attrs.
1039         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
1040         API.
1042         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
1044 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1046         * class.c (mono_class_setup_fields): Check for fields with broken types.
1048         Fixes #558741.
1050 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
1052         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
1053         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
1054         its TypeBuilder::CreateType ().
1056         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
1057         if not needed.
1059         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
1060         to make setup_interface_offsets happy.
1062         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
1063         compilation now works.
1065 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
1067         * appdomain.c (create_exceptions): New helper function extracted from
1068         mono_runtime_init () to precreate objects used during exception handling.
1069         (mono_runtime_init): Call it.
1070         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
1072 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1074         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
1075         compilation until the proper one is found.
1077 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
1079         * class.c (mono_class_setup_vtable_general): Cache the result of
1080         get_virtual_methods () since it can be slow because of the metadata
1081         optimization.
1083         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
1084         from a MonoValueHashTable for now, since the later is based on an earlier
1085         version of hpj's internal probing code and seems to have serious collision
1086         issues.
1088         * loader.c (mono_get_method_full): Update after the change above.
1090 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1092         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
1094 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1096         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
1097         the GTD instead of the DGC instead of crashing.
1099         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
1100         required. Inflate fields if needed.
1102         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
1103         finished. Renamed.
1105 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1107         * class.c (check_interface_method_override): Check for NULL signatures and fail
1108         the type.
1110         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
1112         Fixes #553428.
1114 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1116         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
1117         the MONO_METHOD_FLAGS column instead of decoding the whole row.
1119 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1121         * loader.c (field_from_memberref): Resolve the class first then the field
1122         signature. Remove a lot of duplicated code and make sure we don't pass valid
1123         values to mono_loader_set_error_field_load.
1125         Fixes #553306.
1127 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1129         * class.c (inflate_generic_type): Change code to use new signature of
1130         mono_error_set_bad_image.
1132         Fixes #558124.
1134 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
1136         * verify.c (mono_method_verify): Don't free ctx.params items if 
1137         we aborted while inflating the ctx.locals. Complete previous fix
1139 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
1141         * verify.c (mono_method_verify): Use the uninflated type name, 
1142         when the inflated is null, to report errors. Also take care when
1143         freeing, not to free everything since, in case of an error, some
1144         stuff would be copies (i.e. not allocated by the function itself)
1145         Fix bug #558145
1147 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1149         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
1150         or overflow. The caller must have done this check explicitly. This guard us
1151         from accessing invalid memory.
1153         * verify.c (do_push_static_field): Check for stack overflow.
1155         Fixes #553333.
1157 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1159         * loader.c (find_method_in_class): Don't crash if the signature cannot
1160         be resolved.
1162         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
1163         of asserting for the case of invalid params.
1165         Fixes #553304.
1167 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
1169         * image.c (mono_image_load_module): Fix crash when a bad assembly
1170         has no module at all (fix bug #553412) and also replace the 
1171         g_assert with a return NULL (documented return value for failure)
1173 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
1175         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
1177 2009-11-23  Miguel de Icaza  <miguel@novell.com>
1179         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
1180         file attribute to managed code and avoid doing the mask/attribute
1181         checks here. 
1183 2009-11-22  Miguel de Icaza  <miguel@novell.com>
1185         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
1186         the managed world.
1188         * icall-def.h: New entry points.
1189         
1190 2009-11-19  Mark Probst  <mark.probst@gmail.com>
1192         * process.c: Don't put references to managed objects into a
1193         g_ptr_array.
1195 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
1197         * class.c (can_access_internals): Allow CoreCLR to participate in
1198         allowing (or not) [InternalsVisibleTo] between assemblies.
1199         * security-core-clr.c|h: Make sure that only trusted code (a 
1200         superset of platform code) can access the internals of platform
1201         code.
1203 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
1205         * reflection.c: use the correct base class to get the virtual method
1206         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
1208 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
1210         * security-core-clr.c (get_caller_no_reflection_related): 
1211         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
1212         it's still reflection and must be filtered correctly.
1214 2009-11-16  Mark Probst  <mark.probst@gmail.com>
1216         * object.c (compute_class_bitmap): Fix for large bitmaps.
1218 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
1220         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
1222         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
1223         koush@koushikdutta.com). Disable GC_no_dls on android.
1225 2009-11-12  Mark Probst  <mark.probst@gmail.com>
1227         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
1228         tlab_next points outside the TLAB because the allocator was
1229         interrupted.
1231 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1233         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
1235 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1237         * object-internals.h: Change signature for mono_string_to_utf8_image.
1239         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
1240         argument.
1242         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
1243         exceptions due to mono_string_to_utf8.
1245 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1247         * object-internals.h: Change signature for mono_string_to_utf8_mp.
1249         * object.c (mono_remote_class): Make sure all resources are released before
1250         raising an exception.
1252         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
1254 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1256         * mono-perfcounters.c (network_get_impl): Change variable initialization
1257         ordering to fix potential memory leak in case of exceptions.
1259         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
1260         encoded strings.
1261         
1262 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1264         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
1265         variable initialization ordering to fix potential memory leak in case
1266         of exceptions.
1268 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
1270         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
1271         needed.
1273 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1275         * appdomain.c: Fix shadow path code to better deal with exceptions.
1277 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1279         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
1280         exception in the middle of the runtime code.
1282 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1284         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
1285         leak memory with broken envvar value.
1287 2009-11-06  Mark Probst  <mark.probst@gmail.com>
1289         * reflection.c (mono_reflection_setup_internal_class): Because
1290         nested classes are not added to the name cache, we must put them
1291         in the reflection_info_unregister_classes list.
1293 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
1295         * class.c: When CoreCLR is enabled don't call mono_init_com_types
1296         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
1297         platform (trusted) code. Instead we return a TypeLoadException to
1298         be thrown later. This is the exception thrown by Silverlight 2 if
1299         a type, inside application (user) code is marked with [ComImport]
1301 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1303         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
1304         mono_is_debugger_attached () too.
1306         * mono-debug.c (mono_is_debugger_attached): New helper function.
1307         (mono_set_is_debugger_attached): Ditto.
1309 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1311         * object-internals.h: Add mono_string_to_utf8_checked.
1313         * object.c: Implement mono_string_to_utf8_checked.
1315 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1317         * class.c: Add missing check for load errors after every
1318         call to mono_class_setup_fields
1320         Fixes #552282.
1322 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1324         metadata-verify.c (verify_tables_schema): Fix the error message.
1326 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1328         * metadata.c: Change event table schema to use TDOR for event type
1329         as this is what it's meant to be.
1331         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
1332         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
1333         entry.
1335         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
1336         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
1337         rows in MONO_TABLE_GENERICPARAM.
1339         Fixes #552289.
1341 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1343         * class.c (mono_image_add_to_name_cache): Assert on duplicate
1344         insertion.
1346         * reflection.c (mono_reflection_setup_internal_class): Avoid
1347         registering a gc root the same MonoClass multiple times.
1348         Don't register nested types on the global scope as they should
1349         not be available there.
1351 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1353         * culture-info-tables.h: regenerated.
1355 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1357         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
1359 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
1361         * string-icalls.c|h: Remove string internal calls that are not 
1362         used anymore by the class libraries.
1363         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
1364         which is not used in the class librairies.
1365         * icall-def.h: Update tables.
1367 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1369         * class.h: Move mono_class_inflate_generic_type_checked...
1371         * class-internals.h: to here and make it internal. We don't want to
1372         further expose MonoGenericContext. 
1374 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1376         * verify.c (mono_method_verify): Improve error message.
1378 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1380         * reflection.c (fieldref_encode_signature): If field_image is NULL then
1381         the token is already properly encoded. Fixs 4.0 build.
1383 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1385         * locales.c (construct_number_format): Check if the number index is
1386         valid before trying to use it, if not, just return.
1387         
1388 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
1390         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
1391         since that loses the abort state. Fixes #539394.
1393 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
1395         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
1396         explicit this argument to the call signature.
1397         (mono_marshal_get_icall_wrapper): Ditto.
1399 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1401         * reflection.c (fieldref_encode_signature): Add new field_image parameter
1402         to indicate which assembly to use when resolving a custom-mod.
1404         Fixes handling of volatile fields used across assemblies as reported in #551513.
1406 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1408         * loader.c: Improve error messages.
1410 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1412         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
1413         of interfaces. Fixes IKVM.
1415         * class.c (mono_class_setup_vtable_general): Improve debug spew.
1417 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1419         * verify.c (verifier_inflate_type): Return the inflated type on success.
1421 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1423         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
1425         * threads.c (mono_thread_attach): Call the profiler thread start callback.
1427         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
1429         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
1430         flag set.
1432         * profiler.c: Add new profiler callbacks for runtime invoke.
1434         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
1436 2009-11-01  Mark Probst  <mark.probst@gmail.com>
1438         * sgen-gc.c: Keep track of the reason for a major collection and
1439         write it to the heap-dump file.
1441 2009-10-31  Miguel de Icaza  <miguel@novell.com>
1443         * threads.c: refactor the code that initializes the
1444         thread_start_args into a reusable function and use this in the two
1445         methods that start up threads.
1447 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
1449         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
1450         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
1452 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1454         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
1455         Until now, we only had the per-cpu(core) counters.
1457 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1459         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
1460         mono_gc_get_suspend_signal(), which returns the suspend signal
1461         number used by the GC.
1463 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1465         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
1467         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
1468         signalling start_notify.
1470 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1472         * appdomain.c: do not test the st_mode field for shadow-copies.
1473         Fixes bug #545276.
1475 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1477         * threadpool.[ch]: added hooks for thread start/finish and item
1478         processing begin/end. For monotouch use only.
1480 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1482         * threads.c (mono_thread_get_name): New helper function.
1484         * reflection.c (resolve_object): Set handle_class for strings too.
1485         (mono_reflection_create_custom_attr_data_args): New helper function to decode
1486         a cattr blob into a set of arrays and structures without creating the custom
1487         attributes themselves.
1488         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
1490         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
1492         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
1493         function.
1495 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1497         * verify.c: Replace calls to mono_class_inflate_generic_type with
1498         mono_class_inflate_generic_type_checked. Fixes #480005.
1500 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1502         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
1503         object since not all paths lead to callees initing it.
1505 2009-10-23  Alp Toker  <alp@nuanti.com>
1507         Fix embedding API breakage from r144688. mono-compiler.h is an internal
1508         header and should not be shipped:
1510         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
1511         which is specific to the mono build. Not going to work.
1513 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
1515         * security-manager.c: Report if core-clr is active from
1516         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
1517         to allow Moonlight BCL to behave appropriately (both in browser
1518         and outside, e.g. smcs)
1520 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1522         * mono-config.c: ignore UTF-8 BOM and report parser errors.
1523         Fixes bug #549108.
1525 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1527         * class.c: fix typo.
1529 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1531         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1532         a MonoError parameter.
1534         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1535         version that can does proper error handling.
1537         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1539         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1541         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1543 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1545         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1546         NO_UNALIGNED_ACCESS is defined.
1548 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1550         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1551         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1552         Fixes #549173.
1554 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1556         * sgen-gc.c: Shorten sections whenever possible.
1558 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1560         * sgen-gc.c: Use our portable semaphore #defines.
1562 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1564         * sgen-gc.c: A debug option for dumping the heap layout to a file
1565         after each collection.
1567 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1569         * sgen-gc.c: Make managed write barriers atomic via
1570         thread-restarts.
1572 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1574         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1575         methods. Fixes #543021.
1577 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1579         * socket-io.[ch]: fix VS build.
1581 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1583         * icall-def.h:
1584         * socket-io.[ch]: implemented SendFile.
1586 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1588         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1589         before the interfaces to avoid crashes later if class initialization fails.
1590         Fixes #548417.
1592         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1593         Fixes #548276.
1595 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1597         * domain.c: Bump 4.0 version.
1599 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1601         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1602         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1603         check since 'pubkey' can't be NULL at this stage
1604         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1605         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1606         initialization of 'iter'
1608 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1610         * cominterop.c : Search the interface parts of vtable to find 
1611           method matches.  Fixes 547030.
1613         Code is contributed under MIT/X11 license.
1615 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1617         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1618         multiple targets. Fixes bug #574426.
1620 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1622         * profiler.h: Put here the definition of
1623         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1624         (and fix the build...).
1626 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1628         * profiler.c, profiler.h, profiler-private.h:
1629         Added support for different ways of getting call chains in stat mode.
1631 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1633         * object.c, object-internals.h: New function for computing the
1634         size of an array, factored out of mono_array_new_full().  Use
1635         SGen's functions for allocating arrays and vectors.
1637         * sgen-gc.c, gc-internal.h: Special functions for allocating
1638         arrays and vectors without race conditions.  A managed array
1639         allocator method.
1641         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1643 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1645         * object.c, object.h, icall.c: Write barriers do the copying now,
1646         as well, so no need for an additional memcpy.
1648         * sgen-gc.c: Lock when storing remsets.  Do the memory
1649         copying/moving in the write barriers.
1651         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1653         * reflection.c: Added an assert.
1655 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1657         * threads.c, process.c: A few missing write barriers.
1659 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1661         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1662         network performance counters for bytes sent per second, bytes
1663         received per second, and bytes total per second.
1665         Code is contributed under MIT/X11 license.
1667 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1669         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1670         Fix warning.
1672 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1674         * threads.c, object-internals.h, object.c: Move code for
1675         transferring an object to a different domain (via
1676         serialization/remoting) to object.c.
1678         * object.c (call_unhandled_exception_delegate): If the exception
1679         is in a different domain than the delegate, transfer the exception
1680         to that domain.
1682 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1684         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1685         Fixes #322934.
1687 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1689         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1691 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1693         * object.c (mono_method_return_message_restore): Handle the case
1694         where the argument is an instance of a generic type.  Fixes
1695         #544446.
1697 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1699         * object.c (set_value): Write barrier fix - we must pass the
1700         count, not the size.
1702 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1704         * domain.c (mono_init_internal): Print a useful error message when encountering
1705         an old mscorlib, instead of crashing. Fixes #544307.
1707 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1709         * appdomain.c (copy_app_domain_setup): Fix a warning.
1711         * debug-helpers.c (dis_one): Ditto.
1713 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1715         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1716         into the new domain, instead of referencing the original one.
1718         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1719         non-static.
1721         * appdomain.c: Corlib version bump.
1723 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1725         * threadpool.c: one more...
1727 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1729         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1730         threads to die because we're shutting down. delgate5.exe works again.
1732 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1734         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1735           ccw_interface_hash table when a ccw is finalized.
1737         Code is contributed under MIT/X11 license.
1739 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1741         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1742         domain and image unloading into two steps.  We must do this
1743         because clearing the domain in SGen requires the class metadata to
1744         be intact, but we need to free the mono_g_hash_tables in case a
1745         collection occurs during domain unloading and the roots would trip
1746         up the GC.
1748 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1750         * object-internals.h: Remove serialized culture fields from
1751         MonoInternalThread.
1753         * icall-def.h, thread-types.h, threads.c: Remove serialized
1754         culture icalls.
1756         * appdomain.c: Corlib version bump.
1758 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1760         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1761         Fixes #543133.
1763 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1765         * sgen-gc.c: Try to shorten the new section after a major
1766         allocation to avoid ever-growing sections.
1768 2009-10-13  Martin Baulig  <martin@ximian.com>
1770         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1771         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1772         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1773         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1775         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1777 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1779         * threadpool.c: fixed the order in which 'completed' and the wait
1780         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1781         No need to use the wait_handle field of ASyncCall. Make sure the
1782         threadpool is active when adding a job or queueing an idle thread.
1784 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1786         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1788         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1789         when using --compile-all.
1791 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1793         * metadata.c (free_generic_class): Unregister the field_objects
1794         roots if we're using SGen.
1796 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1798         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1799         for GenericParamTableEntry.gparam.
1801 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1803         * marshal.c: don't create the handle when calling. It is created later
1804         if needed.
1806 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1808         * sgen-gc.c: Warning fixes.
1810 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1812         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1813         whole heap for cross-domain references before each collection.
1815         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1816         object.
1818         * threadpool-internals.h, threadpool.c: New function
1819         mono_thread_pool_is_queue_array() for checking whether a given
1820         array is used as a (cross-domain) queue by the thread pool code.
1822 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1824         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1825         searches the whole heap for objects containing a specific
1826         reference.  Only for debugging.
1828 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1830         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1832         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1833         byte arrays between domains.
1835 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1837         * threadpool.c:
1838         * class-internals.h:
1839         * mono-perfcounters-def.h:
1840         * mono-perfcounters.c:
1841         -There is a list of idle threads
1842         -Each of those idle threads wait on their own WaitHandle instead
1843         of all of them using the same semaphore. When a new work item is
1844         added, the job is assigned directly to an idle thread or a newly
1845         created one if possible and then the handle for that thread is
1846         signaled. Compare that to the current approach where all the
1847         threads in the pool compete to dequeue a job from the same
1848         queue.
1849         -New struct ThreadPool that brings together the bunch of static
1850         variable for each threadpool (IO and regular).
1851         -New performance counters: # of items added and its rate per
1852         threadpool. The rate will be used later, perhaps together with
1853         other perf. counters, to decide when idle threads should exit.
1855 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1857         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1858         Fix typo on Windows build.      
1859         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1860         
1861         Code is contributed under MIT/X11 license.
1863 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1865         * object-internals.h: The Thread class is split up into Thread and
1866         InternalThread now.  We have exactly one InternalThread per
1867         thread, and at most one Thread per appdomain per thread.  Most
1868         data is stored in InternalThread.  All InternalThread objects live
1869         in the root domain.
1871         * class-internals.h: Add internal_thread_class to MonoDefaults.
1873         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1874         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1875         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1876         resulting from the split of the Thread class.
1878         * gc-internal.h: Prototype for new function for checking whether a
1879         thread is the finalizer thread.
1881         * appdomain.c: Corlib version bump.
1883 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1885         * appdomain.c|h: Add a mono_domain_try_unload method which is
1886         equivalent to mono_domain_unload, except that it returns an exception
1887         instead of throwing it. Make mono_domain_unload use the
1888         mono_domain_try_unload method to avoid code-duplication.
1890 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1892         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1893         a problem.
1895 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1897         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1898         aborting when a conversion is not implemented.
1900 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1902         * verify.c: when comparing culture strings, use g_ascii_strcmp
1904         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1905         when comparing public key tokens to use memcmp on 16 bytes.   I do
1906         not believe this ever worked as advertised in the past.
1908         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1909         which would have always failed earlier.
1911 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1913         * gc.c: Raise a NullArgumentException if the object passed is
1914         null.
1916 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1918         * image.c (mono_image_close): Atomically decrement the reference count and
1919         remove the image from the hash tables, to prevent another thread from seeing a
1920         dying MonoImage. Fixes #541194.
1922 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1924         * threadpool.c: actually use the minimum number of 'completion ports'
1925         (for us is just a potential worker thread).
1927 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1929         * threadpool.c: remove ares_htable. It does not make sense any more
1930         since the same objects are now stored in GC-tracked arrays while they are
1931         in the queue.
1933 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1935         * threadpool.c: increase the minimum length of the queues to 128.
1936         Remove warning.
1938 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1940         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1941         return the modified signature used by string ctors.
1943 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1945         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1946         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1947         method, to be used by full-aot.
1949 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1951         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1952         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1953         be known to be good.
1955         * class.c (mono_class_init): Fail array types if their element type fails initialization
1956         as well.
1958         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
1959         initialization, additionally we request the element_type vtable to be initialized as well.
1961         This is fine and should not increase the working set in any meaningful way since it's reasonable
1962         to assume       that most code will create an array and eventually populate it, which will require the
1963         type's vtable to be initialized.
1965         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
1967 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
1969         * normalization-tables.h : regenerated.
1971 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1973         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
1974         a leb128 encoding can take up to 5 bytes.
1976 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1978         * class.c (verify_class_overrides): Remove useless argument.
1980         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
1981         before interface enumeration as this is no longer required.
1983 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1985         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
1986         used under mono_class_init context. This functions avoid any code path that
1987         calls mono_class_init, which leads it to be slow as some things like the interface
1988         bitmap are not available.
1990         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1991         of it's own broken version. Fixes the verifier part of #538588.
1993         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1994         API.
1996 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1998         * class.c (mono_class_init): Always set an exception in a class if
1999         vtable setup fails.  Fixes #538577.
2001         * generic-sharing.c: Raise an exception if mono_class_vtable()
2002         returns NULL.
2004 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
2006         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
2007         methods of vtypes, as they could be incorrectly shared with static methods
2008         taking an IntPtr argument.
2010 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
2012         * domain.c:
2013         * object.c:
2014         * class-internals.h: renamed waithandle_class to
2015         manualresetevent_class.
2016         * marshal.c: propagate the exception if a remoting BeginInvoke call
2017         fails.
2019 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2021         * object.c: Properly handle vtable failures.
2023 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2025         * socket-io.c: Assert on vtable failure.
2027         * mono-mlist.c: Assert on vtable failure.
2029 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2031         * marshal.c: Assert on vtable failure.
2033 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2035         * icall.c: Properly handle vtable failures.
2037 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2039         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
2041 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2043         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
2045         * console-unix.c (do_console_cancel_event): Same.
2047 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2049         * class-internals.h: Add mono_class_vtable_full function that allows control
2050         if an exception should be raised or not.
2052         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
2053         to do what its documentation say, that is to return NULL and set exception_type on
2054         failure.
2056         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
2057         and change the code to honor it.
2059 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2061         * verify.c: Fix typo in error message.
2063 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
2065         * security-core-clr.c: Fix default_platform_check so it can run
2066         the runtime coreclr tests (without an infinite recursion when
2067         throwing an exception).
2069 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2071         object.c (mono_delegate_ctor_with_method): Guard against null method.
2073 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2075         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
2076         that should be replaced with error handling later.
2078 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2080         * marshal.c (mono_delegate_end_invoke): Fix warning.
2082 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2084         * loader.c (mono_field_from_token): Properly handle invalid
2085         dynamic tokens.
2087 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2089         * pedump.c (verify_image_file): Skip types that can't be
2090         decoded.
2092 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2094         * verify.c: Look for recursive valuetypes only against the
2095         type been initialized as this is a lot simpler and works.
2097 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2099         * verify.c: Ensure that fields are properly loaded before
2100         checking them.
2102 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
2104         * object.c (mono_object_get_virtual_method) : Call 
2105           mono_cominterop_get_invoke if the object is a COM object.
2107         Code is contributed under MIT/X11 license.
2109 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
2111         * verify.c: Check for recursive valuetype definitions.
2113 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
2115         Use inheritance-aware interface offsets. Inherited types use the same offsets
2116         of their parents. This reduce offset duplication in case more than one type in
2117         the inheritance tree explicitly implements the same interface.
2119         This also removes a source of vtable bubbles found in #532409. An abstract type
2120         isn't required to provide abstract methods to all interfaces it implements, which
2121         resulted in a bubble with the previous scheme as the child would get a non-full
2122         vtable from its parent. We fail all concrete types with vtable bubbles, so this
2123         should be fixed.
2125         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
2126         it's expected to not cause any significant increase beyond that.
2128         * class.c (setup_interface_offsets): Compute super class iface offsets
2129         first to force sharing.
2131         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
2132         dumping only the relevant ones.
2134         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
2135         methods a new slot regardless if they belong to an interface or not. This allows
2136         an inherited type to override the iface method separately from the class one.
2138 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2140         * threadpool.c: make the Sleep() alertable to prevent delays exiting
2141         applications that take less than 2s to execute.
2142         Bug #524984 fixed.
2144 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
2146         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
2148         * object.c (mono_get_runtime_callbacks): New helper function to return
2149         the runtime callbacks.
2151         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
2152         mono_get_runtime_build_info () as the display name.
2153         
2154 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
2156         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
2157         argument, since NEWARR expects a native int. Fixes #481559.
2159 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2161         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
2162         against broken SRE methods.
2164 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2166         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
2167         a NULL variable. Abort early on failure.
2169 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2171         * class.c (can_access_type): Fail visibility test for non nested
2172         types with nested visibility.
2174 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
2176         * assembly.c (parse_public_key): Avoid allocating (and not 
2177         freeing) the public key array when it's not requested by the 
2178         caller.
2179         * threads.c (mono_thread_manage, mono_thread_create_internal, 
2180         ves_icall_System_Threading_Thread_Thread_internal): Free 
2181         allocated memory on error.
2183 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2185         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
2187 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2189         * class.c (mono_class_setup_fields): Remove duplicated local variable
2190         named gklass.
2191         Rename gklass to gtd to reflect the fact that it points to the generic
2192         type definition.
2193         Remove the duplicated call to mono_class_setup_fields on gtd and move
2194         the error check to the beginning.
2196 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2198         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
2199         Remove cruft of the previous patch.
2201 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2203         * metadata-verify.c (verify_method_table): Check for abstract + final.
2204         Fixes #534175.
2206 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2208         * verify.c (verify_class_fields): Check for duplicate fields.
2210 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2212         * metadata-verify.c: Verify the typeref table for duplicates.
2214 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2216         This reverts r140936 and properly handles interfaces with static methods. The
2217         right fix is to ensure vtables without bubles which is an easier to verify
2218         constraint. We should avoid such special cases as of the reverted patch as those
2219         only make the runtime more brittle.
2221         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
2222         static methods on interfaces.
2224         * class.c (setup_interface_offsets): Use the number of virtual methods when
2225         calculating interface offsets instead of the number of methods. This way we
2226         avoid bubles on the layout.
2228 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
2230         * metadata-verify.c (verify_metadata_header): Some very smart
2231         obfuscators like to add extra stream headers. Ignore them.
2233 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
2235         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
2236         methods correctly.
2238 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
2240         * metadata-verify.c: Verify for duplicated types.
2242 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
2244         * metadata-verify.c (verify_typedef_table): Verify for nested types
2245         without an entry on the nested class table.
2247 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
2249         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
2250         <tom_hindle@sil.org>. Add locking around hash table accesses.
2252 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2254         * verify.c (mono_verifier_verify_class): Verify all interface if
2255         really are interfaces. Fixes #534184.
2257 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
2259         * pedump.c: Initialize all types during metadata validation so we report
2260         errors only detected as part of class initialization.
2262 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
2264         * metadata-verify.c (verify_method_table): PInvoke requires method to
2265         be static. Fixes #534189
2267 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
2269         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
2270         being NULL.
2272 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2274         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
2275         for holes or bad methods. Fixes #525314.
2277 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2279         * class.c (setup_interface_offsets): Don't allocate slot
2280         for the same interface multiple times. This creates bubbles
2281         that waster space and make vtable verification harder.
2283         The same interface get a slot multiple times since we need
2284         to get the closure of all implemented interfaces, which means
2285         the same interface is reported multiple times.
2287 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2289         * verify.c (mono_verifier_verify_class): Don't check the fields
2290         of generic instances since the context on which they got expanded
2291         might lead to false positives.
2293         Such thing happens when a generic type is inflated in the context
2294         of a generic method and the inflated type of a field turns into a
2295         generic method argument, which causes the checking code to think
2296         it's an invalid class when it's not.
2298 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2300         * verify.c (mono_type_is_valid_in_context): Verify if type
2301         is NULL and remove duplicate test.
2303 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2305         * verify.c (mono_verifier_verify_class): Check fields for
2306         invalid generic arguments.
2308 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2310         * class.c (verify_class_overrides): Verify if for static
2311         and non virtual methods.
2313 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2315         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
2316         Check for errors after retrieving the vtable.
2318 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2320         * class.c (mono_class_setup_vtable_general): Verify
2321         if method overrides are valid before processing them.
2323 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2325         * marshal.c (mono_array_to_lparray): Fix minimal build with
2326         cominterop disabled.
2328         * marshal.c (mono_free_lparray): Same.
2330 2009-08-21  Mark Probst  <mark.probst@gmail.com>
2332         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
2333         the hash function for the ares_htable.
2335 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
2337         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
2338         bit for assembly flags. MS is ok with it but there is no spec anywhere
2339         on its mean
2341 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2343         * class.c (mono_class_create_from_typedef): Emit profiler events
2344         in all cases.
2346 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2348         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
2349         Release memory on failure.
2351 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2353         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
2354         to the internal API.
2356         * metadata.c (get_constraints): Use a single-linked table as we don't
2357         traverse it backward. Fail and return FALSE if only of the contraint types
2358         is not found.
2360         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
2361         to mono_metadata_load_generic_param_constraints except for having a return value.
2362         This has to be done since the later is part of the public API.
2364         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
2365         and fail the type.
2367         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
2368         and fail the method.
2370 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2372         * metadata-verify.c (is_valid_method_header): Add work-around to deal
2373         with MS broken behavior of emmitting EH section sizes without the
2374         header size added.
2376 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2378         * metadata.c (mono_type_create_from_typespec): Don't allocate image
2379         memory until we're sure that we'll need it. This avoids leaking for
2380         broken types or duplicated instantiation.
2382 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2384         * metadata-verify.c (is_valid_method_header): Fix stupid formating
2385         mistake.
2387 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2389         * metadata-verify.c (is_valid_method_header): Fix number of clauses
2390         and expected size calculation.
2392 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2394         * class.c (mono_class_get_field_idx): Add fixme for broken
2395         behavior for types with multiple fields with the same name.
2396         I would rather fix it, but have no idea on how to generate
2397         such artifact for testing.
2399 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2401         * verify.c (verifier_load_field): We should allow references to
2402         fields to be made using the generic type definition. It's up to
2403         the loader system to fail invalid ops.
2405         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
2406         are invalid.
2408 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2410         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
2412         * metadata-internals.h: Fix declaration of 
2413         mono_metadata_interfaces_from_typedef_full.
2415         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
2416         heap_alloc_result parameter that controls if the result should be
2417         g_malloc'd.
2419         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
2420         array be g_malloc'd and properly document this public API function.
2422 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2424         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
2425         remove METHOD_HEADER_TINY_FORMAT1.
2427         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
2429         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
2431         Both spec and MS uses only 2 bits to enumerate the kind of header.
2432         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
2433         is superfluous, only used for tiny headers with odd code lengths.
2435         This change also make sure that mono doesn't wronly interpret bit 2
2436         of fat header flags, which is currently reserved.
2438 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2440         * metadata.c (do_mono_metadata_parse_type): Do error
2441         checking for element types. Don't abort if presented
2442         with a broken type kind.
2444 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2446         * metadata.c (mono_metadata_parse_method_signature_full):
2447         Gracefully fail bad vararg signatures.
2449 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2451         * profiler.c:
2452         * class.c: Fix warnings for uninitialized variables.
2454 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2456         * icall.c: Fix _NSGetEnviron method declaration warning.
2458 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2460         * icall.c:
2461         * reflection.c: Make bitwise checks explicit.
2463 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2465         * debug-helpers.c:
2466         * marshal.c: Fix printf warnings.
2468 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
2470         * reflection.c (encode_cattr_value): Fix a warning.
2472 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2474         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
2475         of array bounds.
2477 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2479         * loader.c (mono_method_signature): Don't assert on broken
2480         signature. Print a more useful error message.
2482 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2484         * loader.c (mono_method_get_marshal_info): Assert if
2485         signature is invalid. Bounds check stores to the
2486         mspecs array;
2488 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2490         * loader.c (field_from_memberref): Fix warning.
2492 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2494         * loader.c (mono_method_get_param_names): Check if signature
2495         is null. Don't store beyond the size of the name array.
2497 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2499         * loader.c (mono_get_method_constrained): Check if signature
2500         is null.
2502 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2504         * loader.c (mono_loader_set_error_bad_image): Improve
2505         error messages.
2507 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2509         * loader.c (mono_get_method_full): Convert an assertion
2510         into a loader error.
2512 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2514         * class-internals.h, class.c: Better naming and documentation.
2516 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
2518         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
2519         obj is NULL.
2521 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2523         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
2524         parsing fails.
2526 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2528         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2529         errors with no class set.
2531         * loader.c (field_from_memberref): If the field signature is of the wrong
2532         type fail with a MissingFieldException instead of a BadImageException as
2533         this is the behavior observed on MS. 
2535 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2537         * loader.c (field_from_memberref): Don't crash if either the field
2538         signature or the typespec class are invalid.
2540 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2542         * verify.c (verifier_load_field): Don't allow field related
2543         ops to reference fields on generic type definition.
2545 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2547         * metadata-verify.c: Add new warning level for errors specified
2548         by ECMA 335 but that MS ignores.
2550         * metadata-verify.c (verify_method_table): Make compiler controled
2551         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2552         this check is safe because the end result will only be some visibility
2553         exceptions been thrown.
2555 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2557         * verify.c (get_boxable_mono_type): Don't allow the
2558         use of the generic type definition on boxed type positions.
2560         Fixes #531237.
2562 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2564         * threadpool.c: Make sure no cross-domain references remain in
2565         ares_htable or the arrays that are thrown away when resizing.
2567 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2569         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2570         list of classes for which we have to unregister reflection_info
2571         with the GC and which are not in the namespace cache.
2573         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2574         the class to the list.
2576 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2578         * domain.c (mono_domain_free): Unregister the GC roots in
2579         MonoDomain.
2581 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2583         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2585 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2587         * class.c: Add mono_class_get_field_from_name_full which does
2588         the same as mono_class_get_field_from_name but does check field
2589         signature as well.
2591         * class-internals.h: Export mono_class_get_field_from_name_full as
2592         part of the internal API.
2594         * loader.c (field_from_memberref): Search fields by name and signature
2595         as it's valid to have two fields with same name but different types.
2597         Fixes #528055.
2599 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2601         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2603         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2605         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2606         System.Type.
2608 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2610         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2612         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2614 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2616         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2617         to sgen-scan-object.h, which can be included and parameterized via
2618         macros.
2620         * Makefile.am: sgen-scan-object.h added.
2622 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2624         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2626 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2628         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2629         before clearing a domain in the GC.
2631 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2633         * exception.c (mono_exception_from_name_domain): Actually create
2634         the exception in the specified domain.
2636         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2637         OutOfMemoryException a bit later so that the domain is inialized
2638         "enough" that it works.
2640 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2642         * threads.c (thread_cleanup): Clean up the cached_culture_info
2643         array to prevent cross-domain references.
2645 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2647         * metadata.c: more documentation for MonoType accessors.
2649 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2651         Fix incorrect size definitions where the tail array isn't a list
2652         of pointers
2653         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2654         define size.
2655         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2656         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2657         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2659 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2661         * reflection.h:
2662         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2664 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2666         * metadata.c:
2667         * loader.c:
2668         * metadata-internals.h:
2669         * method-builder.c:
2670         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2672 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2674         * cominterop.c:
2675         * metadata.c:
2676         * metadata.h:
2677         * loader.c:
2678         * marshal.c:
2679         * reflection.c: #define for sizeof in MonoType and
2680         MonoMethodSignature.
2682 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2684         * domain.c:
2685         * domain-internals.h: add and use #define's instead of sizeof()
2686         for MonoJitInfo and MonoJitInfoTable.
2688 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2690         * object.c:
2691         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2693 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2695         * metadata.c:
2696         * metadata.h:
2697         * object.c:
2698         * class-internals.h:
2699         * generic-sharing.c:
2700         * marshal.c: use a #define instead of sizeof() for a few
2701         structures that use a zero-length array.
2703 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2705         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2706         to handle inflated generic methods.
2708         * appdomain.c: Bump corlib version.
2710         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2711         instances.
2713         * reflection.c (fixup_method): Same
2715         * reflection.c (resolve_object): Same.
2717         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2718         g_error and a decent message.
2720 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2722         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2723         from the object because it could not yet be available globally
2724         (it happens if the profiler tries to create a gchandle on the
2725         MonoThread object of a thread that is still registering itself
2726         with the runtime).
2728 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2730         * reflection.c (mono_generic_class_get_object): Initialized the
2731         managed type arguments array.
2733         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2735         * appdomain.c: Bump corlib version.
2737 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2739         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2740         #527902.
2742 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2744         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2745         Avoid a crash if synch_cs is not set.
2746         
2747         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2748         Handle the case when the handle is 0.
2750         * appdomain.c: Bump corlib version.
2752 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2754         * reflection.c (mono_type_get_object): Fix a warning.
2756 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2758         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2759         descriptor here.  We assume it's already been computed.
2761         * generic-sharing.c (instantiate_other_info): Compute the GC
2762         descriptor for info type MONO_RGCTX_INFO_KLASS.
2764 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2766         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2767         type, so don't use MONO_OBJECT_SETREF to set a field.
2769 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2771         * gc.c: We were missing one case where invoking a finalizer would
2772         not reset the domain.  Also, in the finalizer thread loop, assert
2773         that we're in the root domain.
2775 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2777         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2778         if the type is not an array.
2780 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2782         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2783         method bound to the declaring type of the method. Raise an exception
2784         if the type is not a generic param.
2786 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2788         * class.c (print_unimplemented_interface_method_info): Print the
2789         full type name.
2791         * class.c (mono_class_setup_vtable_general): When dealing with a
2792         generic instance first check if the generic type definition is
2793         not broken.
2795 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2797         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2799         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2801         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2803         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2805         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2807         Code is contributed under MIT/X11 license
2809 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2811         * verify.c: Fix naming of stelem and ldelem.
2813 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2815         * generic-sharing.c: Replace the templates lock with the loader
2816         lock because of very hard to resolve deadlock issues.
2818 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2820         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2821         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2822         directly. Fixes #525338.
2824         * class.c (mono_class_get_vtable_size): New helper function.
2826         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2827         the field belongs to the type. Fixes #525733.
2829 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2831         * sgen-gc.c: When we stop a thread and its stack top is not within
2832         its allocated stack (because it's in an altstack signal handler),
2833         restart it and stop it again, until it is.
2835 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2837         * sgen-gc.c: Take a thread's stack top and registers from the
2838         sigcontext in the suspend signal handler.
2840         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2841         stuff to sgen-archdep.h.
2843         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2844         caller, because have code in sgen-archdep.h to acquire that data.
2846 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2848         * profiler.c, profiler.h, profiler-private.h:
2849         Added support for keeping track of code chunks and buffers.
2851 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2853         * metadata-verify.c: Fix endianness problems on decoding functions.
2854         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2856 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2858         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2859         schema for vectors and one dimension SZARRAY.
2861 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2863         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2864         schema for vectors and one dimension SZARRAY.
2866 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2868         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2869         Interlocked.(Compare)Exchange with object arguments, which invoke
2870         write barriers.
2872 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2874         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2875         passed invalid arguments.   Fixes another crasher in the
2876         Silverlight test suite.
2878         * class.c (mono_class_array_element_size): Return 0 for the size
2879         of the class;  This fixes the crasher exposed by :
2881         typeof (void).MakeArrayType ();
2883         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2884         if there is no method to dereference.    Put all the code that
2885         depends on this inside the if (method) block.
2887         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2888         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2890         With this change, we pass the test.
2891         
2892         * reflection.c (mono_reflection_sighelper_get_signature_local):
2893         Only dereference the assembly if it has been set.    Fixes a
2894         crasher exposed by #525328
2896 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2898         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2899         don't perform the store in mono_gc_wbarrier_generic_nostore().
2900         Remove the second argument (value), which is not needed.
2902 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2904         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2905         the build.
2907         * boehm-gc.c: Ditto.
2908         
2909 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2911         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2912         not perform the store itself.  Introduce
2913         mono_gc_wbarrier_generic_nostore(), which is the same as
2914         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2915         store.
2917 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2919         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2920         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2921         we still need the memcpy().
2923 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2925         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2926         so that big arrays are handled correctly.  Always use
2927         safe_object_get_size() to calculate array object sizes, which
2928         takes bounds into account.
2930 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2932         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2933         GC descriptor is computed before we use it.
2935 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2937         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2938         write barrier if necessary.
2940 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2942         * icall-def.h, icall.c, thread-types.h: New separate icall for
2943         VolatileWrite(object&,object) that uses a write barrier.
2945         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2946         barriers in icalls which write to "ref" or "out" arguments.
2948 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2950         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2951         handler in a separate icall, to reduce the size of the wrappers.
2953 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2955         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
2957 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2959         * metadata-verify.c (parse_field): Allow byref field.
2961         * metadata-verify.c (parse_locals_signature): Allow byref locals.
2963         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
2965 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2967         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
2968         Fixes #522784.
2970 2009-07-20  Robert Jordan  <robertj@gmx.net>
2972         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
2973         Fix invalid IL in valuetype handling (STOBJ must push the
2974         corresponding class). Fixes bug #523149.
2976         Code is contributed under MIT/X11 license.
2978 2009-07-20  Geoff Norton  <gnorton@novell.com>
2980         * gc.c: Use proper semaphores where available on posix and darwin.
2982 2009-07-19  Geoff Norton  <gnorton@novell.com>
2984         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
2986 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2988         * refletion.c (is_sre_usertype): Change name to is_usertype and
2989         invert it's result so it returns true if the type is an user type
2990         and not the opposite.
2992         * reflection.c (is_*_type): Change all of those to use new macro
2993         check_corlib_type_cached that cached the type lookup so we don't
2994         need to do string comparisons all the type. Changed the signature
2995         to take a MonoClass instead.
2997         * reflection.c: Change mono_image_create_token and resolve_object
2998         to use is_sre_* functions.
3000 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3002         * sgen-gc.c: Check for writes to the stack in the managed
3003         wbarrier as well.
3005 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3007         * sgen-gc.c: When a thread is unregistered, don't free its remsets
3008         but put them on a list which is processed with the other thread's
3009         remsets.
3011 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3013         * sgen-gc.c: Fix and enable the internal allocator instead of
3014         using malloc/free (which causes deadlocks).
3016 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
3018         * refletion.c: Fix builds with SRE disabled by adding a minimal
3019         implementation of mono_reflection_type_get_handle.
3021 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3023         * refletion.c: Make mono_reflection_type_get_handle non static.
3025         * object-internals.h: Export mono_reflection_type_get_handle.
3027         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
3028         unmanaged handle using mono_reflection_type_get_handle.
3030 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3032         * refletion.c: Replace all reads of MonoReflectionType::type with
3033         calls to mono_reflection_type_get_handle. Only the functions that
3034         deal with constructing TypeBuilder::type have not been changed
3035         because they have to deal with NULL values.
3037         This is a first step into supporting reflection types that don't
3038         map directly into their unmanaged counterpart.
3040 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3042         * metadata-verify.c (parse_locals_signature): Don't complain
3043         on signature with zero locals since MS generates it and doesn't
3044         bother with.
3046 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3048         * reflection.c (mono_image_get_array_token): Resolve return
3049         type using mono_reflection_type_get_handle.
3051         * reflection.c (mono_image_get_array_token): Resolve array method
3052         parent type using mono_reflection_type_get_handle.
3054 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
3056         * reflection.c (mono_image_basic_init): Applied patch from
3057         <Dax@daxxfiles.net>. Set the public key token from the assembly
3058         builder. Fixes #518909.
3060         * appdomain.c: Bump corlib version.
3062 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
3064         * class.c (mono_class_needs_cctor_run): Make this return false if
3065         the class has no cctor.
3067 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3069         * sgen-gc.c: When the minor GC needs to allocate a new section,
3070         invoke the major GC afterwards.
3072 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
3074         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
3075           Applying the window_style field to the SHELLEXECUTEINFO struct.
3077         Code is contributed under MIT/X11 license.
3079 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3081         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
3082         locking earlier.  Fix it in the managed allocator by making sure
3083         that no thread is stopped there before the GC runs.  If we do stop
3084         a thread there, we restart it and let it run a but, until it stops
3085         somewhere else.
3087         * gc-internal.h, gc.c: Function for getting the IP from a signal
3088         context via a function registered by mini.
3090 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
3092         * object-internals.h (MonoIntPtr): New structure describing a boxed
3093         IntPtr.
3095         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
3096         returns. Fixes #519953.
3098         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
3100 2009-07-09  Mark Probst  <mark.probst@gmail.com>
3102         * class-internals.h, generic-sharing.c: New RGCTX info type for
3103         getting a remoting invoke with check wrapper.
3105 2009-07-07  Geoff Norton  <gnorton@novell.com>
3107         * icall-def.h: Fix the enable-minimal build.
3109 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3111         * object-internals.h: Add MonoReflectionDerivedType.
3113         * reflection.c: Implement support for PointerType.
3114         Fixed tons of warnings.
3116 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3118         * object-internals.h: Add MonoReflectionByRefType.
3120         * reflection.c: Implement support for ByRefType.
3122 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3124         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
3126         * object-internals.h: Add MonoReflectionArrayType and
3127         mono_reflection_create_unmanaged_type.
3129         * reflection.c: Implement support for ArrayType.
3131 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3133         * metadata-verify.c (is_valid_method_header): Parse EH block
3134         flags correctly.
3136 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3138         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
3139         processing the disappearing links, and process disappearing links
3140         in a loop until no new objects are copied.
3142 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3144         * object.c (handle_enum): Invoke the write barrier when copying
3145         value type instances.
3147         * sgen-gc.c: Register remsets for unmanaged write barriers only
3148         when the address written to is actually on the heap.  This makes
3149         set_value() in object.c work without requiring that the result be
3150         on the heap.
3152 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3154         The runtime wrappers are all bound to a given type that must
3155         exist in the same image. For regular images we use the <Module>
3156         type, which is required to exist for all images.
3158         The <Module> type can't be used for dynamic images because it
3159         might not exist at the time the wrapper is required, so we create
3160         a synthetic type to use instead.
3162         The current code works because of the 2 stage setup of MonoClass,
3163         but once this is gone it will no longer work.
3165         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
3167         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
3169         * object-internals.h: Export mono_image_set_wrappers_type icall
3170         as part of the internal API.
3172         * marshal.c (get_wrapper_target_class): If the image is dynamic,
3173         use MonoDynamicImage::wrappers_type instead of the <Module> type.
3175         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
3176         image wrappers_type to the provided value.
3178 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
3180         * appdomain.c (deregister_reflection_info_roots): No need
3181         to use the image lock here.
3183 2009-07-02  Mark Probst  <mark.probst@gmail.com>
3185         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
3187 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
3189         * threads.c: Store the thread start argument in a hash table instead of
3190         registering it as a root, as libgc doesn't support unregistering roots
3191         under windows, leading to 'too many root sets' errors when many threads
3192         are created.
3194         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
3195         shutdown, they can still be referenced by the other dying objects.
3196         Fixes #514506.
3198 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3200         * socket-io.c: DontLinger does not allow LingerOptions.
3202 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3204         * metadata-verify.c: The spec doesn't mention that it's possible to add
3205         custom attribute to a generic parameter. Fixed.
3207 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3209         * class.c (inflate_generic_type): Don't crash while trying to output a message
3210         on why we're aborting.
3212 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3214         * socket-io.c: DontLinger can take an int or a boolean too.
3216 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
3218         * gc.c: check for a null argument to SuppressFinalize () and
3219         ReRegisterForFinalize ().
3221 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3223         * loader.c (method_from_methodspec): Call into the verifier to check
3224         the signature.
3226         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
3228         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
3229         part of the internal API.
3231 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3233         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
3234         the signature.
3236         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
3238         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
3239         part of the internal API.
3241 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3243         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
3244         the signature.
3246         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
3247         blob verification.
3249         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3250         part of the internal API.
3252 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3254         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
3255         when doing basic verification. 
3257         This check must be done since the runtime peeks into signatures in much
3258         more places than it does decoding so it makes sense to ensure that all
3259         pointers to blob objects are well formed.
3261 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3263         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
3264         Use proper overflow dectection. Fix usage of it.
3266 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3268         * loader.c (field_from_memberref): Call into the verifier to check
3269         the signature.
3271         * loader.c (mono_method_get_signature_full): Same.
3273         * loader.c (method_from_memberref): Same.
3275         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
3277         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3278         part of the internal API.
3280 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3282         * threadpool.c (mono_thread_pool_add): If the domain is unloading
3283         or unloaded, still return an AsyncResult, but don't add it to the
3284         threadpool.
3286 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3288         * threads.c: fix missing colon when DEBUG is defined.
3290 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3292         * threadpool.c: Don't add new calls to a threadpool if the domain
3293         of the call is unloading or unloaded.  When dequeuing a job, null
3294         the reference in the queue.
3296 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3298         * sgen-gc.c (null_link_in_range): Add the dislink for the old
3299         generation if an object was moved.
3301 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
3303         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
3304           parameters of type SAFEARRAY[VARIANT].
3306         * reflection.c (encode_marshal_blob): Properly generate element type
3307           (SafeArraySubType marshal attribute option).
3309         Code is contributed under MIT/X11 license.
3311 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
3313         * reflection.c: in mono_method_clear_object () really ensure all the
3314         objects are removed.
3316 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3318         * loader.c (mono_method_signature): Call into the verifier to check
3319         the method signature.
3321         * metadata-verify.c (verify_method_table): Move signature verification
3322         to verify_method_table_full.
3324         * metadata-verify.c: Add mono_verifier_verify_method_signature.
3326         * verify-internals.h: Export mono_verifier_verify_method_signature as
3327         part of the internal API.
3329 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3331         * loader.c (mono_method_get_header): Call into the verifier to
3332         check the method header.
3334         * metadata-verify.c: Add mono_verifier_verify_method_header.
3336         * verify-internals.h: Export mono_verifier_verify_method_header as
3337         part of the internal API.
3339 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3341         * class.c (mono_class_find_enum_basetype): Call into the verifier to
3342         check the field signature. Replace an assert with an explicit check.
3344         * class.c (mono_class_setup_fields): Call into the verifier to check
3345         the field signature.
3347         * metadata-verify.c: Add mono_verifier_verify_field_signature.
3349         * verify-internals.h: Export mono_verifier_verify_field_signature as
3350         part of the internal API.
3352 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3354         * class.c (mono_class_find_enum_basetype): Simplify this function
3355         by moving code outside of the loop and not decoding static fields.
3357 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3359         * metadata-verify.c (verify_typedef_table): Check the extends
3360         token here. Move to here a flags check from verify_typedef_table_full.
3362 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3364         * metadata-verify.c (is_valid_method_header): Fix a warning.
3366         * metadata-internals.h (MonoImage): Remove the unused 
3367         static_rgctx_invoke_wrapper_cache.
3369         * image.c marshal.c: Ditto.
3371 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3373         * image.c (do_mono_image_load): Enable table data verification.
3375 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3377         * metadata-verify.c (is_valid_constant): Fix nullref check.
3379 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3381         * metadata-verify.c (is_valid_constant): Fix string bounds check.
3383 2009-06-22  Mark Probst  <mark.probst@gmail.com>
3385         * sgen-gc.c: Managed allocation with pthreads TLS.
3387         * threads.c, threads-types.h: Functions for the JIT to tell the
3388         runtime whether it supports the MONO_TLS opcode.
3390 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3392         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
3393         without methods.
3395 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3397         * metadata-verify.c (is_valid_constant): Fix the string length check.
3398         Use safe overflow checking. Add decent error messages.
3400 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3402         * metadata-verify.c: Move remaininh blob checks to the offline
3403         verification path.
3405 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3407         * metadata-verify.c: Move more blob checks to the offline verification
3408         path.
3410 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
3412         * object-internals.h : Adding interrupt_on_stop field.
3414         * threads.c (mono_thread_request_interruption) : On Windows exit the
3415           thread if interrupt_on_stop is set.
3417         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
3418          Removing old interrupt logic and setting the interrupt_on_stop for the
3419          thread when calling accept.
3421         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
3422          setting the interrupt_on_stop for the thread when calling accept.
3424         Contributed under MIT/X11 license.
3426 2009-06-20  Martin Baulig  <martin@ximian.com>
3428         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
3430 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
3432         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
3433         running in no-exec mode.
3435 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3437         * metadata-verify.c (verify_method_table): Move header
3438         checking to verify_method_table_full.
3440         * metata-verify.c (mono_verifier_verify_full_table_data):
3441         Call verify_method_table_full.
3443 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3445         * metadata-verify.c (verify_field_table): Move signature
3446         checking to verify_field_table_full.
3448         * metata-verify.c (mono_verifier_verify_full_table_data):
3449         Call verify_field_table_full.
3451 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3453         * metadata-verify.c (verify_typedef_table): Move remaining
3454         stuff to verify_typedef_table_full.
3456 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3458         * metadata-verify.c: Kill is_corlib from VerifyContext.
3459         It is only used by the offline mode.
3460         So we better remove it from the runtime path.
3462 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3464         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
3465         function that perform the offline metadata verification steps.
3467         * metadata-verify.c (verify_typedef_table): Move some checks to
3468         verify_typedef_table_full and make it been called by new function
3469         mono_verifier_verify_full_table_data.
3471         * pedump.c: Call mono_verifier_verify_full_table_data.
3473         * verify-internals.h: Export mono_verifier_verify_full_table_data as
3474         part of the internal API.
3476 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3478         * metadata-verify.c (typedef_is_system_object): Fix System.Object
3479         check.
3481         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
3482         flags bits. SupportLastError was confused as bit 7 instead of 6.
3484         * metadata-verify.c (verify_implmap_table): Fix import scope verification
3485         to check against the module ref table instead of module.
3487         * metadata-verify.c (verify_implmap_table): Fix corlib check.
3489         * pedump.c: Call mono_image_load_names.
3491 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3493         * image.c: Extract mono_image_load_names from do_mono_image_load.
3495         * metadata-internals.h: Export mono_image_load_names as part of
3496         the internal API.
3497         
3498 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3500         * metadata.c (mono_metadata_cleanup): Free the generic method cache
3501         first, as it could reference data in the other caches.
3503 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3505         * metadata-verify.c: Finished with method header verification.
3507 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3509         * metadata-verify.c: Added more header verification code.
3510         Now only EH clauses are missing.
3512 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3514         * marshal.c (get_runtime_invoke_type): Don't share primitive types
3515         for return values.
3517 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3519         * metadata-verify.c: Initial method header verification.
3521 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3523         * metadata-verify.c (verify_import_table): The IAT contents
3524         might end been patched by the windows DL when running with
3525         coree enabled.
3527 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3529         * class.c (mono_class_from_typeref): If the enclosing type is not
3530         found return null instead of crashing. Fixes #508487.
3532 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3534         * normalization-tables.h : updated to the latest unicode charcter
3535           data.
3536         * appdomain.c : bump corlib version.
3538 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3540         * class.c (mono_class_from_name): Fix support for assembly references
3541         in the EXPORTEDTYPE table. Fixes #511704.
3543 2009-06-13  Geoff Norton  <gnorton@novell.com>
3545         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3546         assembly in the target domain.
3548 2009-06-12  Robert Jordan  <robertj@gmx.net>
3550         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3551         because "this" of the managed signature has become an
3552         ordinary parameter in the unmanaged signature.
3554 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3556         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3557         field for owner-less generic containers.
3559         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3560         image field of the owner-less generic containers created here.
3562         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3563         contain is ownerless until the caller sets its owner.
3565         * metadata.c (type_in_image): Handle owner-less generic containers
3566         correctly.
3567         
3568 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3570         * image.c (mono_image_close): Support debug_assembly_unload for
3571         dynamic images too.
3573 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3575         * class.c: Fix some typos in comments.
3577 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3579         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3581         * threads.c (mono_thread_execute_interruption): Avoid creating the
3582         abort exception object while holding the synch_cs lock.
3584 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3586         * metadata-verify.c: Verify basic cattr content.
3588 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3590         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3591         nested types.
3592         
3593         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3594         support for nested types. Fixes #511704.
3596 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3598         * metadata-verify.c: Verify methodspec signatures.
3600 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3602         * metadata-verify.c: Verify typespec signatures.
3604 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3606         * metadata.c (free_inflated_method): Call 
3607         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3609 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3611         * mono-config.c: Small change to report the PPC64/ILP32 model.
3613 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3615         * metadata-verify.c (parse_type): Check szarray.
3617 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3619         * metadata-verify.c (parse_type): Check fnptr.
3621 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3623         * metadata-verify.c (parse_type): Check generic instances.
3625 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3627         * metadata-verify.c (parse_type): Check array shape.
3629 2009-06-05  Robert Jordan  <robertj@gmx.net>
3631         * class.c (mono_class_create_from_typedef): Check only for
3632         mscorlib's System.Array.
3634 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3636         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3637         and generic params. 
3639         * metadata-verify.c (parse_field): Check the signature.
3641 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3643         * metadata-verify.c: Implement locals signature check.
3645 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3647         * domain.c: Add .NET 4.0 Beta 1 version.
3649 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3651         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3652           For QueryInterface on CCWs consider the base class
3653           interfaces as well.
3655         Code is contributed under MIT/X11 license.
3657 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3659         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3661         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3662         used.
3664         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3665         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3667         * generic-sharing.c (inflate_other_data): Ditto.
3668         
3669 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3671         * metadata-verify.c: Implement property signature check.
3673 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3675         * sgen-gc.h: Register saving support for PPC.
3677 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3679         * sgen-gc.c: Fixed a pthread TLS screwup.
3681 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3683         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3684         supported.
3686 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3688         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3689         keyword is not supported.
3691 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3693         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3694         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3695         the inflated method is freed. Fixes #508389.
3697         The code is contributed under the MIT/X11 license.
3698         
3699 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3701         * marshal.c (get_wrapper_target_class): New helper function.
3702         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3703         the <Module> class of the image. Fixes #509049.
3705 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3707         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3708         Check if the thread was interrupted and proccess it straight away.
3709         Makes abortion much more responsive.
3711 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3713         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3714         MonoThread::interruption_requested to match it's counterpart.
3716         Fixes a hang in abort-stress-1 on a 2 core x86.
3718         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3719         Fix warning.
3721 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3723         Change MonoImage::name_cache to be protected by the image lock
3724         instead of the loader lock.
3726         * appdomain.c (deregister_reflection_info_roots): Protect access
3727         to name_cache.
3729         * class.c (mono_image_init_name_cache): Change from the loader lock
3730         to the image lock. Check if the cache wasn't already created.
3732         * class.c: Change from the loader to the image lock.
3734         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3735         the code to hold the image lock while iterating over name_cache and
3736         not go into mono_array_new holding it.
3738         * metadata-internals.h: Add a comment about this change.
3740 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3742         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3743         Under the 2.0 profile raise the loader error.
3745         Fixes #508532.
3747 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3749         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3750         of ldind opcode for generic instances so we don't fail for direct wrappers.
3751         This only affect direct calls.
3753 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3755         * reflection.c (create_dynamic_mono_image): Fix warnings.
3757         * generic-sharing.c (other_info_equal): Ditto.
3758         
3759 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3761         * metadata-verify.c: Implement field signature check.
3763 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3765         * metadata-verify.c: Implement standalone signature check.
3767 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3769         * metadata-verify.c: Implement methodref signature check.
3771 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3773         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3774         callbacks supplied by the runtime.
3776         * object.c (mono_install_callbacks): New internal function to install
3777         the callbacks.
3779         * object.c (mono_create_ftnptr): Move the implementation of this to
3780         mini/.
3782         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3784 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3786         * metadata-verify.c (parse_return_type): Proper byref check.
3787         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3788         generic signatures and method params.
3790 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3792         * metadata-verify.c (decode_signature_header): Fix bounds check.
3794         * metadata-verify.c (parse_custom_mods): Check custom mods.
3796         * metadata-verify.c (parse_type): Do initial basic verification
3797         of valid values.
3798         
3799         * metadata-verify.c (is_valid_method_signature): Parse the generic
3800         param count.
3802 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3804         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3805         discarded based on their most specific definition so we set the method_slots
3806         array before checking if the method is acceptable or not.
3808         Fixes #506757.
3810 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3812         * icall.c: Free the old array when resizing a mono_ptr_array.
3814 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3816         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3817         for the hashes whose keys are managed objects.
3819 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3821         * object-internals.h, threads.c: Set the execution context on
3822         thread start here, not in corlib.
3824         * appdomain.c: Bump corlib version.
3826 2009-05-27  Martin Baulig  <martin@ximian.com>
3828         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3829         if `_mono_debug_using_mono_debugger' is set to make things work
3830         properly when embedding Mono.
3832 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3834         * class.c (mono_class_setup_fields): Don't mark simd types as having
3835         16 bytes alignment as the whole runtime doesn't support.
3837 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3839         * metadata-verify.c (safe_read): Use endian safe read macros.
3841 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3843         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3844         it is read-only when using full aot.
3846 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3848         * metadata-verify.c (is_valid_method_signature): Verify parts
3849         of the return type. Provide an error message in case of failure.
3851 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3853         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3855 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3857         * metadata-verify.c: Include the size prefix in the bounds check.
3859 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3861         * icall.c: Remove warnings.
3863         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3864         prevent auto-detection based on GCC defines.
3866         Add PS3
3868         * metadata-verify.c: Do not include signal.h
3870         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3871         messages.  Not sure why the g_assert_not_reached is not enough to
3872         quiet the compiler.
3873         
3875         * appdomain.c: Remove code that is not used when
3876         DISABLE_SHADOW_COPY is set.
3878         * image.c: use g_getenv
3880 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3882         * reflection.c: Remove code that it not used with
3883         DISABLE_REFLECTION_EMIT is defined.
3885 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3887         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3888         invoke wrappers.
3890 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3892         * socket-io.c
3893         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3894         the ifdef here and instead put that on io-layer
3896 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3898         * metadata-verify.c: Verify the generic param constraint table.
3900 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3902         * metadata-verify.c (verify_generic_param_table): Fix
3903         thinko on the valid flags bits for generic params.
3905 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3907         * metadata-verify.c: Verify the methodspec table.
3909 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3911         * metadata-verify.c: Verify the generic param table.
3913 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3915         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3917 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3919         * sgen-gc.c: Use generation enum more consistently and use the
3920         correct generation in mono_gc_register_for_finalization().
3922 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3924         * metadata-verify.c: Verify the nested class table.
3926 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3928         * metadata-verify.c: Verify the manifest resource table.
3930 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3932         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3934 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3936         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3937         wrappers, this is now done in the JIT.
3938         
3939         * class.c (mono_set_generic_sharing_supported): New internal function.
3940         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3942 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3944         * metadata-verify.c: Verify the exported type table.
3946 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3948         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3950 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3952         * metadata-verify.c: Verify the file table.
3954 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3956         * metadata-verify.c (verify_assembly_table): Fix an error message.
3958         * metadata-verify.c: Verify the assemblyref table.
3960 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3962         * metadata-verify.c (verify_assembly_table): Fix the valid
3963         bits mask for flags.
3965 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3967         * debug-helpers.c (mono_method_full_name): Print generic parameters of
3968         generic methods as well.
3970 2009-05-15  Geoff Norton  <gnorton@novell.com>
3972         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
3973         use-case and is significantly more performant than the wapi layer.
3975 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3977         * metadata-verify.c: Verify the assembly table.
3979 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3981         * metadata-verify.c: Fix rows limit check.
3983 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3985         * metadata-verify.c: Verify the fieldrva table.
3987 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3989         * sgen.c: Speed up weak links and finalizers by grouping them by
3990         generation.
3992 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3994         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3995         free the old GCHandle (only applies to SGen).
3997 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3999         * loader.c (mono_get_method_from_token): Avoid the expensive call to
4000         mono_metadata_load_generic_params () for non-generic methods.
4002 2009-05-12  Mark Probst  <mark.probst@gmail.com>
4004         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
4005         New function for returning a monitor's weak link if it has one.
4007         * sgen-gc.c: Remove an object's monitor's weak link (if it has
4008         one) when clearing a domain.  These can still be around because
4009         the object might not have been collected.
4011 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
4013         * gc.c: Fix a warning.
4015 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
4017         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
4018         prevous wait that resulted in a deadlock on Windows when initializing
4019         the runtime form DllMain. Also results in improved startup time.
4020         (finalizer_thread): Get rid of thread_started_event.
4021         * threads.c, threads-types.h (mono_thread_create_internal): Return the
4022         resulting MonoThread.
4024         Contributed under MIT/X11 license.
4026 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
4028         * metadata-verify.c: Verify the implmap table.
4029         Don't require that #US and #Strings be present.
4031 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
4033         * security-core-clr.c: Delegate checks are done at creation time,
4034         not a invocation time. Fix exception for Telerik Silverlight demo
4036 2009-05-11  Mark Probst  <mark.probst@gmail.com>
4038         * sgen-gc.c (need_remove_object_for_domain): Remove the special
4039         case for the Thread class.
4041         * threads.c: Do clean-up of abort exception/state in
4042         thread_cleanup() instead of Thread.free_internal().  Also clean up
4043         current_appcontext.  The reason we have to do that is because
4044         those references might point into another domain and if that
4045         domain is unloaded before the thread is finalized, they point to
4046         invalid data.
4048 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
4050         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
4051         stub signatures.
4052         
4053         Contributed unter MIT/X11 license.
4055 2009-05-09  Miguel de Icaza  <miguel@novell.com>
4057         * verify.c, metadata-verifier.c: Add support for disabling the
4058         verifier in some builds.
4060         [ Sorry, my previous commit accidentally commited some work in
4061         progress ]
4063 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
4065         * class.c (mono_class_setup_fields): Set class->field.first for
4066         generic instances.
4068 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4070         * metadata-verify.c: Verify the typespec table.
4072 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4074         * metadata-verify.c: Verify the module table.
4076 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4078         * metadata-verify.c: Verify the methodimpl table.
4080 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4082         * metadata-verify.c: Verify the property table.
4084 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
4086         * debug-helpers.c (mono_method_desc_match): Add support for generic
4087         glob patterns.
4089 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
4091         * metadata-verify.c: Verify the propertymap table.
4093 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
4095         * metadata-verify.c: Verify the event table.
4097         * metadata-verify.c (search_sorted_table): Fix offset
4098         calculation.
4100 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
4102         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
4104 2009-05-01  Mark Probst  <mark.probst@gmail.com>
4106         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
4107         because mono_delegate_free_ftnptr() needs it.
4109 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4111         * metadata-verify.c: Verify the eventmap table.
4113 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4115         * metadata-verify.c: Verify the standalonesig table.
4117 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4119         * metadata-verify.c: Verify the field layout table.
4121 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4123         * class.c (mono_type_get_name_recurse): Don't crash
4124         for ownerless generic params.
4126         * debug-helpers.c (mono_type_get_desc): Correct the format
4127         for ownerless generic params.
4129 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4131         * metadata-verify.c: Verify the class layout table.
4133 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4135         * metadata-verify.c: Verify the decl security table.
4137 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4139         * domain.c (mono_domain_set_internal_with_options): Don't do
4140         anything if the old domain is the same as the old one.  Fixes
4141         #499326.
4143 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4145         * appdomain.c: Deregister the reflection_info roots when unloading
4146         a domain.
4148         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
4149         memory allocated by a domain and frees its disappearing links.
4151         * boehm-gc.c, null-gc.c: Empty implementation of
4152         mono_gc_clear_domain().
4154 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4156         * appdomain.c (clear_cached_vtable): Free the static fields memory
4157         block.
4159 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4161         * gc.c: Set the correct domain when invoking finalizers.
4163         * appdomain.c: Set the correct domain when creating threads.
4165 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4167         * sgen-gc.c: Fix skip size for vectors.
4169 2009-05-03  Martin Baulig  <martin@ximian.com>
4171         * mono-debug-debugger.c
4172         (mono_debugger_check_breakpoints): Check class init handlers even
4173         if we don't have any method load handers.
4175 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
4177         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
4178         returning refonly assemblies if refonly is FALSE. Fixes #499013.
4180 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4182         * metadata-verify.c: Verify the field marshal table.
4184 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4186         * metadata-verify.c: Verify the custom attribute table.
4188 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4190         * metadata-verify.c: Verify the constant table.
4192 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4194         * metadata-verify.c: Verify the memberef table.
4196 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4198         * metadata-verify.c (get_coded_index_token): Remove
4199         dead argument.
4201 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4203         * metadata-verify.c: Verify the interfaceimpl table.
4205 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4207         * verify.c: Improve error message.
4209         * debug-helpers.c (mono_type_get_desc): Harden the code that
4210         deals with VAR and MVAR.
4212 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
4214         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
4215         part of #498692.
4217 2009-04-23 Tom Hindle <tom_hindle@sil.org>
4219         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
4220         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
4222 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
4224         * security-core-clr.c: Avoid redundant checks for platform code, 
4225         e.g. check for method and for class (very common) and check
4226         for class and outer class (less common)...
4228 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
4230         * reflection.c: Avoid returning random cattrs for synthetic methods.
4231         Fixes #498545.
4233 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4235         * assembly.c: assemblies in the GAC should never be shadow-copied.
4237 2009-04-26  Mark Probst  <mark.probst@gmail.com>
4239         * domain.c, domain-internals.h: Disable
4240         track_resurrection_{objects,handles}_hash in MonoDomain if using
4241         SGen.
4243 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4245         * metadata-verify.c: Verify the param table.
4247 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4249         * metadata-verify.c (verify_typedef_table): Range check FieldList and
4250         MethodList.
4252         * metadata-verify.c (verify_method_table): Proper check the ParamList
4253         field.
4255 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4257         * metadata-verify.c (verify_method_table): Check for runtime
4258         implemented functions such as delegate .ctors. Remove spurious
4259         printf.
4260         
4261 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4263         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
4265 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4267         Don't allocate MonoGenericInfo for ownerless generic params.
4268         * class-internals.h (MonoGenericParam::info): Move field to ...
4269         (MonoGenericParamFull): ... this.  New struct.
4270         (MonoGenericContainer::type_params): Change type to
4271         MonoGenericParamFull.
4272         (MonoGenericParam, MonoGenericContainer): Update accessors.
4273         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
4274         'info' field for ownerless generic param.
4275         (mono_metadata_load_generic_params): Update to changes.
4276         * reflection.c (mono_reflection_create_generic_class): Likewise.
4277         (reflection_methodbuilder_to_mono_method): Likewise.
4278         (mono_reflection_initialize_generic_parameter): Likewise.
4280 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4282         Don't use MonoGenericParamInfo for ownerless generic params.
4283         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
4284         use ParamInfo class at all.
4285         (mono_class_from_generic_parameter): Use them.
4286         (make_generic_param_class): Fix a couple of instances where 'pinfo
4287         == NULL' wasn't handle.
4289 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4291         * class.c (make_generic_param_class): Carve out of ...
4292         (mono_class_from_generic_parameter): ... here.
4294 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4296         Simplify mono_class_from_generic_parameter
4297         * class-internals.h (MonoGenericParamInfo::token): New field.
4298         * metadata.c (mono_metadata_load_generic_params): Initialize it
4299         from metadata.
4300         * class.c (mono_class_from_generic_parameter): Use it instead of
4301         searching through metadata.
4303 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4305         * metadata-verify.c: Add verification of the method table.
4307 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4309         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
4310         Delegate::Invoke optimization.
4312 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4314         * appdomain.c (mono_domain_create_appdomain_internal): Free the
4315         string returned by get_shadow_assembly_location_base.
4317         * appdomain.c (get_shadow_assembly_location_base): Add a comment
4318         about caller's ownership.
4320 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4322         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
4323         reflection memory on domain unload.
4325         * domain.c (mono_domain_free): Don't free refobject_hash, let the
4326         reflection cleanup code do it.
4328         * domain-internals.h: Add mono_reflection_cleanup_domain.
4330         This fixes a memory leak for managed mirrors of reflection objects
4331         on domain unload. 
4333 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4335         * metadata-verify.c: Implement more verification of the field table.
4337 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4339         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
4340         doesn't try to parse the input assembly, which can be broken.
4342 2009-04-23  Mark Probst  <mark.probst@gmail.com>
4344         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
4345         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
4346         by using the lowest bit in the link to store whether the link is
4347         tracked.  Move the track_resurrection hashes into boehm-gc.c.
4349 2009-04-22  Miguel de Icaza  <miguel@novell.com>
4351         * Makefile.am: Split the console support in platform specific code
4352         and put together a framework for making this easy in the future so
4353         that we can start splitting code instead of having a mess of PLATFORM_WIN32
4355 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4357         * pedump.c: Fix a warning.
4359 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4361         * verify.c (mono_delegate_type_equal): Compare valuetypes using
4362         mono_class_from_mono_type to avoid bad interactions with the dual representation
4363         of the generic type definition.
4365 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4367         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
4368         get the MonoClass for the call context type as it might be a generic
4369         instance.
4371         Fixes #491483.
4373 2009-04-21  Mark Probst  <mark.probst@gmail.com>
4375         * object-internals.h: The Thread object has no execution_context
4376         member anymore.
4378         * threads.c, threadpool.c, threads-types.h: Accessor functions for
4379         the execution context.
4381         * appdomain.c: Bump corlib version.
4383 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4385         * verify.c (do_newobj): Improve error message.
4387 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4389         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
4390         is nested in the filter block.
4392         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
4393         block is not fully nested.
4395         Fixes #495656.
4397 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4399         * verify.c (verify_type_compatibility_full): Compare MonoClass and
4400         not MonoType to check for equality of valuetypes as the generic type
4401         definition allows for two different encodings: the generic type definition
4402         class or a generic instance over the GTD arguments.
4404         Fixes #496175.
4406 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4408         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
4410         * verify.c (do_initobj): Improve error message.
4412 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4414         * metadata-verify.c: Enable pe verification as the issue with #496453
4415         is that the authenticode data directory have a different unspecified
4416         format. Ignore it for now.
4418         * pedump.c: Run the metadata verifier together with the IL verifier.
4420         Fixes ##496453.
4422 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4424         * metadata-verify.c: Temporarily disable pe verification due to #496453.
4426 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4428         * class.c (can_access_type): Check visibility against
4429         the element type for pointers and arrays.
4431         Fixes #496150.
4433 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4435         * metadata-verify.c: Fix cli and table verification to use information
4436         from the MonoImage. A lot of duplicated code got killed.
4438 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4441         This patch starts to integrate the metadata verifier with the runtime code.
4443         This patch causes major regression in functionality for the metadata verifier
4444         as cli and table verification are disabled since they require to be ported to
4445         use MonoImage information.
4447         * image.c (do_mono_image_load): Split the code in this function
4448         into mono_image_load_pe_data and mono_image_load_cli_data.
4449         Add     care_about_pecoff parameter to not load pecoff data.
4450         Call into the metadata verifier for pecoff and cli verification.
4452         * image.c (mono_image_open_raw): New function that doesn't perform
4453         any parsing of the image contents.
4454         
4455         The reason for the 3 new functions is to give pedump better control
4456         into the interaction with the verifier.
4458         * metadata-internals.h: Add new functions from image.c as part of the
4459         internal mono API.
4461         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
4462         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
4463         to make those functions work together with the runtime.
4465         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
4466         true if the image needs to be verified.
4468         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
4470         * pedump.c: Use new metadata verifier API.
4472 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
4474         * object.c (mono_install_vtable_trampoline): Make this receive a
4475         trampoline creation function instead of trampoline, allowing the JIT
4476         to use a different trampoline for each vtable.
4478 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4480         * object.c (mono_raise_exception): Don't reset the thread abort
4481         exception state here.
4483 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4485         * icall-def.h: New icall for getting the thread abort exception
4486         state for a thread.
4488         * object.c, thread.c, object-internals.h: A thread's abort
4489         exception state is now a GC handle.  To get the object it stands
4490         for, we must move it into the current app domain, if it's
4491         different than the one where it originated from.
4493         * appdomain.c: Bump corlib version.
4495         * domain.c, domain-internals.h: New function for setting the
4496         domain and migrate the thread abort exception or not.
4498 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4500         * metadata-verify.c: Add initial verification of the
4501         field table.
4503 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4505         * metadata-verify.c: Add a macro to conditionally enable
4506         dumping of verification information. Add  make_coded_token
4507         and search_sorted_table to enable search sorted tables
4508         by a given coded token.
4510 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4512         * metadata-verify.c: Add array mapping from table index
4513         to description offset. Add get_col_offset and get_col_size
4514         functions.
4516 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4518         * metadata-verify.c: Add remaining table descriptions offsets.
4519         Add remaining coded index descriptions.
4521 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4523         * metadata-verify.c: Fixed constant table description.
4524         Fixed calculation of HasCustomAttribute coded index size.
4525         Fixed calculation of size for many table indexes. 
4527 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4529         * pedump.c (dump_metadata): Dump table offset instead
4530         of useless pointer in memory.
4532 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4534         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4536 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4538         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4539         a missing of for interface types.
4541 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4543         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4544         the code is commented.
4546         * metadata-verify.c (verify_resources_table): Remove spurious printf
4547         and don't fail if there are unmanaged resources. Gmcs generates a useless
4548         one     for all assemblies - I bet it's some MS compatibility junk.
4550 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4552         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4554         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4556         * verify-internals.h: Same.
4558         * pedump.c: Fix for mono_image_verify new signature.
4560 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4562         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4563         flags combinations.
4565 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4567         * metadata-verify.c (verify_module_table): Ignore the generation field.
4569 2009-04-15  Martin Baulig  <martin@ximian.com>
4571         * debug-mono-symfile.c
4572         (mono_debug_symfile_lookup_location): Don't print a warning for
4573         unknown extended opcodes if they're within 0x40 and 0x7f.
4575 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4577         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4578         invoke signatures returning an enum. Fixes #494847.
4580 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4582         * metadata-verify.c: Initial code to verify the typedef table.
4584 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4586         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4587         with non empty stack happens before the beginning of a try block.
4589         Fixes #494812.
4591 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4593         * metadata-verify.c: Verify typename and typenamespace fields of
4594         the typeref table.
4596 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4598         * metadata-verify.c: Initial code to verify the typeref table.
4600 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4602         * verify.c (verify_delegate_compatibility): Fix error message.
4604 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4606         * security-core-clr.c: Fix typo
4608 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4610         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4611         a MonoGHashTable to keep its values alive.
4612         (emit_marshal_boolean): Fix a warning.
4614 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4616         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4617         not have any interface configured for IPv4/IPv6.
4619 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4621         * assembly.c: fix typo in error message.
4623 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4625         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4626         allocating the location holding the this argument to prevent
4627         'too many root sets' errors.
4629         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4630         to mark fields as special static.
4631         (mono_field_static_get_value): Handle special static fields.
4632         (mono_field_static_set_value): Ditto.
4634         * class-internals.h (struct _MonoClassField): Document this.
4636 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4638         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4639           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4640           case.  This will handle when managed code returns null to native code.
4642         Code is contributed under MIT/X11 license.
4644 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4646         * object.c (build_imt_slots): Changing a free to a g_free to match
4647           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4649         Code is contributed under MIT/X11 license.
4651 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4653         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4654           the correct TRUE value is passed through the marshaling layer.
4656         Code is contributed under MIT/X11 license.
4658 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4660         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4661         correctly. Fixes #492330.
4662         
4663         * marshal.c: Fix the embedding of object pointers into JITted code in
4664         the native-to-managed wrappers by allocating some GC tracked memory, and
4665         embedding the address of that.
4667 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4669         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4670         pointers into the vtable.
4672 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4674         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4676         * verify.c (verify_ldftn_delegate): Improve error message.
4678 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4680         * reflection.c (my_mono_class_from_mono_type): Remove.
4682 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4684         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4685         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4686         and constraints fields into ...
4687         (MonoGenericParamInfo): ... this.
4688         (mono_generic_param_info, mono_generic_container_get_param_info):
4689         New accessors.
4690         * class.c, debug-helpers.c, icall.c: Update to changes.
4691         * metadata.c, reflection.c, verify.c: Likewise.
4693 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4695         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4697         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4698         
4699         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4700         booleans with sbytes.
4702 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4704         * class.c (can_access_instantiation): Verify accesibility of element types
4705         for arrays and pointers.
4707         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4709         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4711         Fixes #493068.
4713 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4715         * verify.c (do_invoke_method): Improve error messages.
4717 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4719         * verify.c:  Fixing the MSVC build.
4721         Code is contributed under MIT/X11 license.
4723 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4725         * security-core-clr.c: Simplify get_reflection_caller not to call
4726         mono_method_get_last_managed (another stack walk) and adjust the
4727         callers to handle a (should not happen) NULL return value.
4729 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4731         Add accessors to some MonoGenericParam fields
4732         * class-internals.h (mono_generic_param_owner): New accessor.
4733         (mono_generic_param_num): Likewise.
4734         (mono_type_get_generic_param_owner): New helper.
4735         (mono_type_get_generic_param_num): New helper.
4736         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4738 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4740         * class-internals.h (mono_generic_container_get_param): New wrapper.
4741         * class.c, icall.c, metadata.c, verify.c: Use it.
4743 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4745         Fix gtest-252.cs
4746         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4747         the standard case/loop.  In particular, don't complain about
4748         references to generic type definitions.
4750 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4752         * debug-helpers.c (dis_one): Decode string arguments.
4754 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4756         * pedump.c (dump_verify_info): Dump type name correctly.
4758 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4760         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4761         are larger than code size.
4763         This can happen in valid code if the try/catch block is not followed by any instruction
4764         and do a backward branch on the leave instruction.
4766         Fixes #492494.
4768 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4770         * security-core-clr.c: Fix typo while comparing second method names
4771         in can_avoid_corlib_reflection_delegate_optimization
4773 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4775         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4777         Fixes #487738.
4779 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4781         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4782         a MVAR using a class context.
4784         Fixes #490335.
4786 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4788         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4790         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4792         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4793         functions supplied by the JIT for the SGEN GC.
4795         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4796         
4797 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4799         monitor.c (mono_monitor_try_enter_internal):
4800         Added calls to profile monitor contentions.
4801         Also duplicated a small piece of code (the "get the monitor" logic)
4802         from the fast path to the slow path, and changed the relevant goto
4803         statements, so that monitor acquisition events can be emitted from the
4804         slow path (this is by Paolo Molaro).
4806 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4808         * profiler.c, profiler.h, profiler-private.h:
4809         Added support for profiling monitor contentions.
4811 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4813         * metadata-verify.c: Verify the modules table.
4815 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4817         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4818         using the context of the method been verifier and not of the method been called.
4820         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4821         safely inflate generic types. 
4823 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4825         * security-core-clr.c: Change the strategy for checking the 
4826         "reflection using delegates optimization" to avoid unneeded 
4827         attributes in multiple class libraries.
4829 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4831         * sgen-gc.c: Remove object element in the disappearing link struct
4832         by storing the object pointer in the link.
4834 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4836         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4838 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4840         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4842         * verify.c (mono_method_verify): Do proper bounds checking of exception
4843         clause ranges.
4845 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4847         * loader.c (mono_field_from_token): Don't crash if the field parent could
4848         not be decoded.
4850 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4852         * sgen-gc.c: Execute critical finalizers after ordinary
4853         finalizers.
4855         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4856         mono_defaults.
4858 2009-03-31 Jb Evain <jbevain@novell.com>
4860         * verify.c (do_ldstr): don't check if a string is in the user strings
4861         heap if the current image is dynamic.
4863 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4865         * sgen-gc.c: Wait until the last finalizer has executed when
4866         returning from WaitForPendingFinalizers.
4868 2009-03-31  Martin Baulig  <martin@ximian.com>
4870         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4871         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4872         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4873         (mono_debugger_event_create_appdomain): New function.
4874         (mono_debugger_event_unload_appdomain): New function.
4876         * appdomain.c (mono_domain_create_appdomain_internal): Call
4877         mono_debugger_event_create_appdomain().
4879 2009-03-31  Martin Baulig  <martin@ximian.com>
4881         * mono-debug-debugger.c
4882         (mono_debugger_register_class_init_callback): Also register the
4883         class init callback if the class is already initialized to make
4884         things work with shadow copied assemblies.
4886 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4888         * security-core-clr.c
4889         (mono_security_core_clr_ensure_reflection_access_field): Let 
4890         critical code access the field (just like we do for methods). Use
4891         check_field_access helper.
4892         (mono_security_core_clr_ensure_reflection_access_method): Use 
4893         check_field_access helper.
4895 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4897         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4898         call the run-finalize function directly.
4900         * gc.c, gc-internal.h: Make run_finalize() non-static.
4902 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4904         * sgen-gc.c: Use a separate struct for disappearing links.
4906 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4908         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4909         * MaxIOVectorLength enabled, just ignore them.
4910         Fixes bug #349688.
4912 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4914         * metadata-verify.c: Fix eglib build.
4916 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4918         * threads-types.h: Fix the win32 build.
4920 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4922         * class.c: move coreclr inheritance/override checks to 
4923         security-core.clr.c
4924         * security-core.clr.c|h: add code from class.c with additional
4925         documentation. Fix override check when the method is not critical.
4927 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4929         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4930         (match_class): Ditto.
4932 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4934         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4936         * metadata-verify.c: Implement table layout row size calculation. Verify
4937         the total size of the tables.
4939 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4941         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4943 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4945         * appdomain.c:
4946         * console-io.[ch]: added new mono_console_init() to make sure that
4947         file descriptors 0, 1 and 2 are opened.
4948         Bug #489019 fixed.
4950 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4952         * appdomain.h: Export a new callback type and a new function to
4953         set this callback. This allow a mono host to provide it's own
4954         definition for "platform code".
4955         * metadata-internals.h: Add a core_clr_platform_code flag on 
4956         _MonoImage to (cache and) know if it is representing platform 
4957         code.
4958         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
4959         on platform code images.
4960         * security-core-clr.c|h 
4961         (mono_security_set_core_clr_platform_callback): Allow the host
4962         to provide it's own platform check definition.
4963         (mono_security_core_clr_determine_platform_image): Detect if an 
4964         image is platform code (using the specified callback).
4965         (mono_security_core_clr_is_platform_image): Return cached value 
4966         for platform code.
4968 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
4970         * threads.c (mono_create_thread): New helper function to wrap CreateThread
4971         which has different parameter types for the 'tid' argument in windows and
4972         the io-layer.
4974         * appdomain.c attach.c threads.c: Use the new helper.
4976 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4978         * metadata-verify.c: Verify valid table bits.
4980 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4982         * metadata-verify.c (verify_metadata_header): Store size in the size field.
4984         * metadata-verify.c: Add initial table schema verification.
4986 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4988         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
4989         obtain the refclass argument needed by mono_param_get_objects (). Fixes
4990         #488383.
4992         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4994         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4996 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4998         * security-core-clr.c: Add/update documentation
5000 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5002         * marshal.c (emit_marshal_object): Generate code to throw an exception
5003         instead of throwing it. Fixes #488670.
5005 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
5007         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
5008         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
5009         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
5010         and add a call to mono_security_core_clr_ensure_delegate_creation
5011         to do the extra checks required by CoreCLR.
5012         * security-core-clr.c|h: Add function to check delegate creation,
5013         both in the binding and accessibility, under CoreCLR.
5015 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
5017         * reflection.c (mono_reflection_create_dynamic_method): when 
5018         coreclr is enabled make sure that every resolved object are
5019         checked (e.g. field and method access).
5020         * security-core-clr.c|h: Add function to check objects resolved
5021         when a dynamic method is created.
5023 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5025         * metadata-verify.c: Cache directory rva translations.
5027         * metadata-verify.c: Add cli-header and streams verification.
5029 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5031         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
5032         the wrong offset (8 instead of 6).
5034 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
5036         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
5037         methods, return the native function address itself. Fixes
5038         #487758.
5040 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
5042         * console-io.c: some of the values for control characters might not be
5043         present.
5045 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
5047         * exception.c|h: Add helpers to create [Field|Method]AccessException
5048         * icall.c: Add required coreclr check calls for field reflection.
5049         Move the existing (method) check logic into security-core-clr.c
5050         * security-core-clr.c: Add functions to check if the access of a
5051         field or method is allowed when reflecting under coreclr. This is
5052         mostly done using a stack walk to find the "real" caller: i.e. the
5053         code that is calling the reflection
5055 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
5057         * gc-internal.h: Change location of gc_wrapper.h
5059 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
5061         * class.c: Simplification to coreclr checks for overrides that
5062         makes it easier to set breakpoints.
5064 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
5066         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
5067         mono_security_core_clr_method_level): Avoid potential 
5068         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
5069         user/application code) and make it easier to set breakpoints
5071 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5073         * metadata-verify.c: Reject cli header tables that mono don't handle.
5075 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5077         * pedump.c: Fix CLI header dumping.
5079 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5081         * metadata-verify.c: More CLI header verification.
5083 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5085         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
5087 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5089         * metadata-verify.c: Initial verification of the CLI header.
5091 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5093         * metadata-verify.c (verify_resources_table): Fix verification of zero
5094         sized resource section and id entries count.
5096 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
5098         * icall.c: Handle user types in many Type icalls. Fixes #486303.
5100 2009-03-17  Jb Evain  <jbevain@novell.com>
5102         * profiler.c: call mono_gc_base_init from mono_profiler_load.
5104 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
5106         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
5107         (mono_gc_make_descr_for_array): Ditto.
5109 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5111         * verify.c (mono_verifier_is_class_full_trust): Add support for
5112         CoreCLR security mode where trusted assemblies are defined as
5113         "platform code".
5115 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5117         * metadata-verify.c: Add minimal PECOFF resource verification.
5119 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5121         * metadata-verify.c: Be less restrictive with some coff fields.
5123 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5125         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
5126         params as boxed values on stack. Fixes #485706.
5128 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5130         * console-io.c: the termios values may vary in different flavors of unix.
5132 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5134         * console-io.[ch]: return the entire set of control characters when
5135         initializing the terminal.
5136         * appdomain.c: bump corlib version.
5138 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
5140         * mono-perfcounters.c: added support for in-process custom
5141         performance counters.
5143 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5145         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
5147 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5149         * metadata-verify.c: Verify the data pointed by the import table. 
5151 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5153         * metadata-verify.c (load_data_directories): Store data
5154         directory contents.
5156         * metadata-verify.c: Verify the import table. 
5158 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5160         * metadata-verify.c: Verify data directories.
5162 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5164         * metadata-verify.c: Check section header flags.
5166 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5168         * appdomain.c: if the assembly name is a shadow-copied file, return
5169         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
5170         in mono_make_shadow_copy.
5171         * icall.c: if the assembly name is a shadow-copied file, replace it
5172         with the original assembly path.
5174         Bug #484244 fixed. NUnit tests for corlib can be run without
5175         --noshadow now.
5177 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
5179         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
5180         entries when the table is reallocated.
5182         * icall.c: Allocate the memory used by the mono_ptr_array macros using
5183         mono_gc_alloc_fixed () since it contains GC refs.
5185 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
5187         * reflection.c (ensure_complete_type): New helper function to call
5188         type resolve handlers for unfinished dynamic types.
5189         (resolve_object): Call it for MonoClassFields. Fixes #483852.
5191 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
5193         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
5194         #483247.
5196 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
5198         * appdomain.c (get_shadow_assembly_location): Fix memleak.
5200 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
5202         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
5203         between GCHandles of type WeakTrackResurrection and the objects they
5204         point to.
5206         * gc.c: Partly implement the sematics of GCHandles of type 
5207         WeakTrackResurrection: these handles should only be cleared after the
5208         finalizer of the object they are pointing to has ran.
5210 2009-03-06  Mark Probst  <mark.probst@gmail.com>
5212         * icall.c: Partially revert r126631 because using the jump
5213         trampolines for generic shared methods makes it superfluous.
5215 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
5217         * threads.c (handle_store): Create the 'threads' hash table with the proper
5218         MONO_HASH_VALUE_GC type.
5220 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
5222         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
5223         FIRST_GC_TRACKED.
5225         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
5226         and LAST_GC_TRACKED as a GC root.
5228         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
5230         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
5231         the static data even if it consists of 1 reference.
5233         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
5234         if there is a GC descriptor.
5236         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
5237         instead of through the GC since they contain no object references.
5239 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5241         * generic-sharing.c (instantiate_other_info): Always return a jump
5242         trampoline for method code.
5244 2009-03-05  Marek Habersack  <mhabersack@novell.com>
5246         * culture-info-tables.h: generated to include the en-tt culture.
5248 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5250         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
5251         capture the thread context.
5253         * object.c (mono_async_result_new): Cache the invoke wrappers to
5254         ExecutionContext::Capture.
5256 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5258         * marshal.h: Add a prototype for what mono_compile_method returns
5259         for invoke wrappers.
5261         * gc.c: Use the new prototype declaration.
5263 2009-03-04  Geoff Norton  <gnorton@novell.com>
5265         * boehm-gc.c: Add some MONO_LOG tracing for the GC
5266         * gc-internal.h:
5267         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
5269 2009-03-04  Martin Baulig  <martin@ximian.com>
5271         * mono-debug.h
5272         (mono_debugger_runtime_invoke): Removed.
5274         * mono-debug-debugger.c
5275         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
5277 2009-03-02  Martin Baulig  <martin@ximian.com>
5279         * mono-debug.h
5280         (mono_debugger_unhandled_exception): Removed.
5281         (mono_debugger_handle_exception): Removed.
5282         (mono_debugger_throw_exception): Removed.
5284         * mono-debug.c
5285         (mono_debug_debugger_version): Bump to 5.
5287         * mono-debug-debugger.c: Moved the exception handling code to
5288         ../mini/debug-mini.c
5290 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5292         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
5293         finalize_objects_hash.
5295         * gc.c: Use the separate lock to access the finalize_objects_hash field.
5296         
5297         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
5298         field.
5300         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
5301         cache.
5303         * image.c (mono_image_close): Free it.
5304         
5305         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
5306         allowing a creation of a wrapper which invokes its method using a CALLVIRT
5307         on the this argument.
5309         * gc.c (run_finalize): Optimize the calling of the finalizers.
5311 2009-03-03  Martin Baulig  <martin@ximian.com>
5313         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
5314         of the `MonoGenericInst' changes.
5316 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
5318         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
5319         mono_array_class_get_cached to reduce locking contention. Extract
5320         a domain var.
5322         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
5323         intermediary managed arrays. Use caching version of mono_array_new
5324         to allocate the result array.
5326         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
5328         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
5330         * locales.c (create_names_array_idx):  Use mono_array_new_cached
5331         to reduce locking contention.
5333 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5334                 
5335         * object.c (mono_method_add_generic_virtual_invocation): Put back the
5336         thunk builder code for the non-interface case.
5338 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5340         * object.c (get_generic_virtual_entries): New helper function to collect
5341         the virtual generic method instances which need to be added to an IMT
5342         thunk.
5343         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
5344         Instead of creating a new IMT thunk, reset the vtable slot to the
5345         trampoline, the thunk will be created the next time the trampoline is called.
5346         (build_imt_slots): Add support for virtual generic methods in interfaces by
5347         adding to the IMT thunk all the methods registered using 
5348         mono_method_add_generic_virtual_invocation ().
5350         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
5351         (struct _MonoIMTCheckItem): Ditto.
5353         * object.c (mono_method_add_generic_virtual_invocation): Take a
5354         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
5355         the IMT thunk to include all items.
5356         
5357         * object.c (mono_class_create_runtime_vtable): Add a missing
5358         mono_loader_unlock ().
5360 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5362         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5364         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
5366 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5368         * object-internals.h: Rename _MonoReflectionEvent to
5369         MonoReflectionMonoEvent so it reflects the right managed type.
5370         Add a MonoReflectionEvent that correctly represents System.EventInfo.
5372         * icall.c:
5373         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
5374         type.
5376 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5378         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
5379         intermediary managed arrays. Use caching version of mono_array_new
5380         to allocate the result array.
5382 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5384         * reflection.c: Use cached version of mono_array_new alongside
5385         the mono_reflection_get_custom_attrs_by_type call path.
5387 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5389         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
5390         intermediary managed arrays. Use caching version of mono_array_new
5391         to allocate the result array.
5393         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
5395 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5397         * icall.c: Add small implementation of a growable stack bound array.
5399         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
5401         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
5402         intermediary managed arrays. Use caching version of mono_array_new
5403         to allocate the result array.
5405 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
5407         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
5408         helps Enum::CompareTo to be implemented without reboxing all enums
5409         to their underlying type.
5410 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
5412         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
5413         since it acquires a global lock leading to scalability problems.
5415         * profiler.c: Make the stat profiler work with multiple appdomains, this
5416         currently only works when no appdomains are unloaded.
5418 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5420         * appdomain.c: make the check to avoid copying when the assembly is
5421         already shadow copied actually work.
5423 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
5425         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5427         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
5428         changes to the managed side.
5430 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
5432         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
5433         classes + a separate lock for it, as it is used frequently at runtime, not
5434         just during metadata loading/JIT compilation.
5436         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
5437         for szarrays.
5438         
5439         * object-internals.h (mono_class_from_name_cached): New macro to cache
5440         the results of the lookup locally without having to declare a static
5441         variable to hold it.
5442         (mono_class_get_field_from_name_cached): Ditto.
5443         (mono_array_class_get_cached): Ditto.
5445         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
5446         the new macros.
5447         
5448         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
5449         slower search in metadata.
5451         * pedump.c: Fix a warning.
5453 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5455         * reflection.c (encode_locals): Add checks for user types.
5456         (method_encode_clauses): Ditto.
5457         (method_encode_code): Ditto.
5458         (mono_image_create_token): Ditto.
5460         * object-internals.h: Change the type of more fields from MonoReflectionType*
5461         to MonoObject*.
5463 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
5465         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
5466         the a thread does not suspend within 100ms.
5468         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
5469         in addition to StopRequested as well.
5471         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
5473         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
5474         search the method_hash before inserting a new entry, to avoid crashes when
5475         the same method is inserted multiple times, causing the old 
5476         MonoDebugMethodInfo structure to be freed by the value dtor function.
5478 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5480         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
5481         SO_EXLUSIVEADDRUSE where available.
5483 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5485         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
5486         runtime invoke wrappers, this time it is string ctor wrappers, which
5487         pass a dummy string as 'this' instead of their obj argument. Fixes
5488         #478473.
5490 2009-02-21  Jb Evain  <jbevain@novell.com>
5492         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5493         only get create_culture once.
5495 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5497         * reflection.c (mono_reflection_setup_internal_class): Move the user type
5498         check before the locking.
5499         
5500         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
5501         (mono_reflection_create_runtime_class): Ditto.
5502         (mono_reflection_sighelper_get_signature_local): Ditto.
5503         (mono_reflection_sighelper_get_signature_field): Ditto.
5505         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
5506         is a System.MonoType object or similar.
5507         (monotype_cast): New helper function to cast a MonoObject to a 
5508         MonoReflectionType object.
5510         * object-internals.h: Change MonoReflectionType* members in structures to
5511         MonoObject* members to force the usage of the monotype_cast () function.
5513         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
5514         structures/arrays. This causes us to assert instead of crashing when 
5515         instances of user defined subclasses of System.Type are encountered.
5517 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5519         * cil-coff.h:
5520         * icall-def.h:
5521         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
5522         win32 resource loaded from a PE file.
5524         * image.c: fix mono_image_lookup_resource.
5526 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5528         * icall-def.h:
5529         * threads-types.h:
5530         * threads.c: added internal call for WaitHandle.SignalAndWait.
5532 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5534         * cominterop.c : Adding cominterop_type_from_handle and 
5535           registering it as an icall.  Replacing all references
5536           to type_from_handle.
5538         Code is contributed under MIT/X11 license.
5540 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5542         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5544         * appdomain.c: Call the tracer init function.
5546         * domain-internals.h: Enable the tracer for the domain locks.
5548         * image.c: Enable the tracer for image locks.
5550         * loader.c: Enable the trace for the loader lock.
5552         * lock-tracer.h:
5553         * lock-tracer.c: Initial implementation of the lock trace utility.
5554         The tracer requires a compile time define to be enabled and a env var
5555         to be enabled at runtime.
5557 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5559         * domain.c (mono_domain_code_foreach): Improve documentation.
5561 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5563         * appdomain.c:
5564         * generic-sharing.c:
5565         * object.c:
5566         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5567         comes first.
5569 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5571         * domain.c: Add mono_domain_code_* functions that perform locking
5572         around the domain codeman.
5574         * domain-internals.h: Export those functions.
5576         * object.c: Use new functions instead of acquiring the domain lock.
5578 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5580         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5581         delegate. Fixes #477396.
5583 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5585         * reflection.c (create_custom_attr): Get rid of alloca.
5587 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5589         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5590           Adding exception handling for all CCW calls.
5592         Code is contributed under MIT/X11 license.
5594 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5596         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5598         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5599         native->managed marshalling code. Fixes #476247.
5601 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5603         * class.c (mono_class_get_vtable_entry): Move the addition of
5604         static rgctx invoke wrappers for vtable methods here, this simplifies
5605         a lot of code and causes fewer rgctx wrappers to be created.
5607         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5608         name of the statistics to begin with an uppercase.
5610 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5612         * reflection.c: Revert previous change as it breaks the build.
5613         
5614 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5616         * verify.c: Properly handle SZARRAY element type.
5618         Fixes #474271.
5620 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5622         * reflection.c (mono_image_create_method_token): Correctly encode
5623         MethodDef MemberRefParent token.
5625         Fixes #472845.
5627 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5629         * image.c (mono_image_close): Delete the critical section before
5630         freeing the memory holding it.
5632 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5634         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5635         Fixes #476257.
5637 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5639         * pedump.c (main): Call mono_marshal_init so pedump
5640         doesn't crash.
5642 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5644         * loader.c (method_from_memberref): Properly fix #474271 and
5645         don't break the runtime bad.
5647 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5649         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5650         (mono_domain_alloc0): Ditto.
5652 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5654         * loader.c (method_from_memberref): Don't abort if the array
5655         method is not found. A regular loader failure is more informative
5656         and correct.
5658         Fixes #474271.
5660 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5662         *loader.c: Guard MonoImage::method_cache/methodref_cache
5663         using the image lock instead of the loader lock.
5665         * metadata.h: Add comments about which fields are protected by
5666         the image lock.
5668 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5670         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5672         * generic-sharing.c (mono_method_construct_object_context): Remove the
5673         wrapper_type == NONE assert, it is not needed.
5675 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5677         * reflection.c (clear_cached_object): New helper function.
5678         (mono_method_clear_object): New function to clear the cached reflection
5679         objects for a dynamic method.
5681         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5682         Partly fixes # 463323.
5683         
5684 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5686         * class.c:
5687         * loader.c:
5688         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5690 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5692         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5693         take the image lock instead of the loader lock.
5695         * metadata-internals.h: Export new functions.
5697 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5699         * domain.c (app_config_parse): Remove another use of stat that is
5700         not necessary as g_file_get_contents already does the presence
5701         check. 
5703 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5705         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5707         * marshal.c: Move the bstr handling code to cominterop.c.
5709         * marshal.c: Remove some COM interop code missed previously.
5711 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5713         More Paolo patches from the Wii port:
5714         
5715         * security.c: Remove ves_icall_System_Environment_get_UserName
5716         from here.
5718         * icall.c: And put ves_icall_System_Environment_get_UserName
5719         here. 
5721         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5722         redundant call to stat that was only used to test for the file
5723         existence.   Patch from Paolo.
5725         * gc.c (run_finalize): If COM is disabled, do not link in
5726         mono_marshal_free_ccw.
5728         * generic-sharing.c: Use alloca.h here as well.
5730 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5732         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5734 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5736         * cominterop.c cominterop.h: New files.
5738         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5739         function/typedefs which are needed by cominterop.c global.
5741 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5743         * generic-sharing.c: Don't take the loader lock to guard image
5744         mempool allocs.
5746 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5748         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5749         called without the loader lock which is required to guard MonoImage:tokens.
5751 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5753         * class.c:
5754         * metadata.c:
5755         * method-builder.c:
5756         * marshal.c:
5757         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5759 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5761         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5762         Rework the code to use regular mono_image_alloc/0.
5764         * loader.c: Rework the code to use regular mono_image_alloc/0.
5766         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5768 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5770         * object-internals.h : Fixing a typo in the 
5771           MonoReflectionComVisibleAttribute struct.
5773         * marshal.c (cominterop_com_visible): Check the implemented 
5774           interfaces for ComImport.
5776         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5777           assume that bools should be treated as VARIANTBOOLs.
5779         * marshal.c (emit_marshal_boolean): Adding cases for 
5780           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5782         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5783           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5785         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5786           should be treated as VARIANTBOOLs.    
5788         Code is contributed under MIT/X11 license.
5790 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5792         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5793         allocation with the image lock.
5795 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5797         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5798         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5800         * object.c: Add mono_string_to_utf8_image.
5802         * object-internals.h: Export mono_string_to_utf8_image.
5804         * reflection.c: Rework all explicit references to the the image mempool to go thought
5805         the mono_image_alloc set of functions.
5807 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5809         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5810         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5811         and generics-sharing.c.
5813         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5814         as first argument. Note that this function remains broken as it doesn't perform locking around the
5815         mempool allocation.
5817         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5819         * image.c: Add g_slist_append_image.
5821         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5822         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5824         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5825         Fix all related code to do the same.
5827         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5829         * metadata-internals.h: Fix the signatures.
5831 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5833         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5834         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5835         and similar to work using MonoImage.
5837         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5838         MonoMemPool.
5840         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5842         * class.c (mono_metadata_signature_deep_dup): Same.
5844         * class.c (inflate_generic_type): Same.
5846         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5848         * metadata.c (mono_metadata_signature_dup_full): Same.
5850         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5851         mono_metadata_signature_dup_full.
5853         * metadata.c (mono_metadata_type_dup): Same.
5855         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5857         * reflection.c: Same.
5859         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5861         * metadata-internals.h: Fix the signatures.
5863         * class-internals.h: Same.
5865 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5867         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5868         and use mono_image_alloc set of functions instead. 
5870         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5871         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5872         of a MonoMemPool.
5874         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5876         * class.c (g_list_prepend_mempool): Removed.
5878         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5880         * image.c: Add g_list_prepend_image.
5882         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5884         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5887 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5889         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5890         mono_image_unlock.
5892         * image.c (mono_image_init): Init the lock field.
5894         * image.c (mono_image_init): Cleanup the lock field.
5896         * image.c: Add mono_image_(un)lock functions.
5898 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5900         * class.c, class-internals.h: mono_method_get_context_general()
5901         combines the functionality of mono_method_get_context() and
5902         mini_method_get_context().
5904         * generic-sharing.c, domain-internals.h:
5905         mono_method_construct_object_context() and
5906         mono_domain_lookup_shared_generic() moved from mini.
5908         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5909         method doesn't have the correct instantiation because it's shared
5910         generic code.  Fixes #473999.
5912 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5914         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5916         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5917         
5918 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5920         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5922         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5924         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5925         and recheck the cache for dups after it.
5927         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5929         Fixes one of the deadlocks found in #473150.
5931 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5933         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5934           For Win32, add additional break conditions for accept.
5936         Code is contributed under MIT/X11 license.
5938 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5940         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5941         lazily initialize the native wrapper cache.
5942         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5943         cache, since they are different from the normal wrappers.
5945         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5947         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5948         AOT compiled native wrappers.
5950 2009-02-09  Geoff Norton  <gnorton@novell.com>
5952         * appdomain.h:
5953         * security-core-clr.c: Allow enabling core-clr from the embedding
5954         API.
5956 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5958         * socket-io.c: when requesting all the local ips, if there are no
5959         interfaces up and running, MS returns 127.0.0.1.
5961 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5963         * mono-perfcounters-def.h: processor time is an inverse time.
5964         Fixes bug #468625.
5966 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5968         * socket-io.c: an empty host name returns the list of local IPs.
5969         Fixes bug #386637 part 1/2.
5971 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5973         * verify.c (mono_class_interface_implements_interface): Call
5974         mono_class_setup_interfaces ().
5975         (merge_stacks): Ditto.
5977 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5979         * class.c (mono_class_setup_interfaces): New function to lazily initalize
5980         klass->interfaces.
5981         (mono_generic_class_get_class): Don't initalize klass->interfaces.
5982         (mono_generic_class_get_class): Ditto.
5984 2009-02-06  U-QUACK\miguel  <miguel@quack>
5986         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
5987         they live in security.c
5989         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
5990         another bit from Paolo's code.
5992 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5994         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5995         methods which will be discarded by add_imt_builder_entry ().
5997         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5998         need to be boxed.
6000         * loader.c: Add a statistics for the size of the memberref signature cache.
6001         
6002         * loader.c (find_cached_memberref_sig): New helper function.
6003         (cache_memberref_sig): Ditto.
6005         * loader.c: Cache the result of parsing memberref signatures, since otherwise
6006         they will be parsed again for every generic instantiation, leading to unbounded
6007         memory growth.
6009 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6011         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
6012         parameters of generic methods.
6014         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
6015         after the original method is copied to the inflated method.
6016         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
6018         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
6019         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
6021         * class.c metadata.c: Update after the changes above.
6023 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6025         * metadata-verify.c: Simplified error handling and added
6026         section table validation.
6028 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6030         * class-internals.h (MonoClassExt): New structure containing rarely used
6031         fields of MonoClass.
6032         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
6033         through a new 'ext' field.
6035         * class.c (mono_class_alloc_ext): New helper function to allocate 
6036         class->ext.
6038         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
6040 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6042         * object.c (mono_object_get_virtual_method): Properly inflate
6043         generic methods.  Fixes #472692.
6045 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6047         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
6048         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
6049         for the parent type, the created type must be ready to be used on a generic
6050         instantiation.
6051         We fill this_arg/byval_arg if the parent is a generic instance to make sure
6052         we won't have duplicated entries in generic_inst_cache.
6054         Fixes #469553.
6056 2009-02-05  Miguel De Icaza  <miguel@novell.com>
6058         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
6059         replace with plain BSD per the comments on the bug MONO77637.
6061 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6063         * class.c (mono_class_get_generic_class): New accessor function.
6064         (mono_class_get_generic_container): Ditto.
6066         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
6067         fields, similar to the ones in MonoMethod.
6069         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
6070         (mono_class_create_from_typedef): Set klass->is_generic if needed.
6072         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
6073         
6074         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
6075         the same information as element_class->byval_arg.
6077         * class.c reflection.c: Remove references to class->byval_arg.
6079         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
6080         klass->enum_basetype directly.
6082         * verify.c metadata.c object.c icall.c reflection.c: Use 
6083         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
6084         directly.
6086 2009-02-04  Miguel de Icaza  <miguel@novell.com>
6088         * icall-def.h: Remove internal calls for sockets when
6089         DISABLE_SOCKET is defined, file system writing features when the
6090         OS only support reading and not writing data and Policy support if
6091         the Policy is disabled.
6092         
6093         * image.c (do_mono_image_open): Apply Paolo's patches for using
6094         mono_file_map_ APIs here.
6096         * assembly.c: Add support for platforms to avoid prefix
6097         auto-detection. 
6099 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6101         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
6102         warning.
6104         * class.c (mono_class_inflate_generic_class): New helper function.
6106         * class.c: Use mono_class_inflate_generic_class in a few places. Add
6107         statistics for inflated methods/classes.
6109         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
6111         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
6112         the call is made from Delegate.CreateDelegate () for the invoke method of
6113         a delegate.
6115         * loader.c: Add a statistics for the memory occupied by inflated signatures.
6117         * metadata.c (mono_metadata_signature_size): New helper function.
6119         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
6120         generic instances.
6122         * metadata.c (inflated_method_in_image): Avoid calling 
6123         mono_method_signature () if the method does not already have a signature.
6125 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6127         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
6128         valuetype is compatible with target type, check by inheritance as a
6129         VT is not really compatible with System.ValueType, for example.
6131         * verify.c (do_invoke_method): Improve error message.
6133         * verify.c (do_box_value): If boxing a nullable, use the type argument
6134         on stack instead.
6136         * verify.c (do_newobj): Improve error message.  
6138         Fixes #469549.
6140 2009-02-03  Miguel de Icaza  <miguel@novell.com>
6142         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
6144 2009-02-03  Mark Probst  <mark.probst@gmail.com>
6146         * generic-sharing.c: Don't hold domain lock when calling
6147         instantiate_other_info().  Fixes #471958.
6149         * domain-internals.h, loader.c: Describe locking policy of domain
6150         lock vs loader lock.
6152 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6154         * verify.c (mono_delegate_signature_equal): Make it possible to check
6155         first-arg-bound delegates to static method.
6157         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
6158         static methods with the first arg bound.
6160         Fixes #469529.
6162 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6164         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
6165         errors.
6167         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
6168         under strict mode. Any type, when boxed can be seen as a reference type.
6170         Fixes #469528.
6172 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6174         * object.h: The lower bound of an array is a signed integer value.
6175         Introduce mono_array_lower_bound_t typedef. It should be used instead of
6176         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
6178         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
6179         calculate the upper bound.
6180         
6181         Fixes #471252.
6183 2009-02-02  Miguel de Icaza  <miguel@novell.com>
6185         From Paolo's work, refactored, cleared up:
6186         
6187         * threadpool.c, icall.c: ifdef code that requires a working socket
6188         stack.
6190         * metadata.c (mono_metadata_field_info): Do not attempt to return
6191         a value from a function declared as void.
6193         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
6194         from the console stack.
6196         * assembly.c: use strrchr instead of rindex.
6198         * class.c, object.c, marshal.c, icall.c, reflection.c: include
6199         alloca.h on systems that have it.
6201         * environment.c: Avoid code that uses stuff from
6202         HAVE_SYS_UTSNAME_H
6203         
6204         * appdomain.c: Include sys/time.h.
6206         * console-io.c: include sys/ioctl.h if it is available.
6208 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
6210         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
6212         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
6213         the method builder.
6215         * marshal.c: Set mb->skip_visibility instead of setting it on the method
6216         after it was created and cached, as the later is not thread safe.
6217         
6218 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6220         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
6221         called while the debugging module is not initialized. Fixes #471669.
6223 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
6225         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
6227         Fixes #471255.
6229 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6231         * generic-sharing.c (lookup_or_register_other_info): Make sure the
6232         loader lock is not taken while the templates lock is held.  Fixes
6233         #471089.
6235 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6237         * metadata.c (type_in_image): Added a check to fix a monodis
6238         crash.
6240 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6242         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
6243         nullable arguments.
6245         * object.c (mono_runtime_invoke_array): Ditto.
6246         
6247         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
6248         freeing wrappers of dynamic methods.
6250         * loader.c (mono_free_method): Call it. Fixes #463323.
6251         
6252         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
6253         methods taking vtype/byref arguments, to fix yet another bug caused by
6254         the sharing of runtime invoke wrappers. Partly fixes #471259.
6256 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
6258         * debug-mono-symfile.c (check_line): Return NULL instead of returning
6259         <first file in file table>:1 when the IL offset does not have an associated
6260         line number.
6262 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
6264         * mono-debug.c (mono_debug_lookup_locals): New function to return local
6265         variable info for a method.
6267         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
6268         
6269 2009-01-30  Jb Evain  <jbevain@novell.com>
6271         * pedump.c: reuse code from monodis to make sure pedump honors
6272         MONO_PATH, which is needed to verify net_2_1 assemblies.
6274 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6276         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
6277         there is no line number info.
6279 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
6281         Avoid some MonoType allocations
6282         * reflection.c (mono_reflection_initialize_generic_parameter):
6283         Reuse MonoType from param->pklass rather than allocating one.
6284         (mono_dynamic_image_free): Update to changes.
6286 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6288         Rearrange some code to improve consistency
6289         * reflection.c (mono_reflection_setup_generic_class): Move body ...
6290         (mono_reflection_initialize_generic_parameter): ... here.
6292 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
6294         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
6295         with type constraints as an experiment.
6297         * boehm-gc.c (on_gc_notification): Update mono_stats.
6299 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6301         Avoid some allocations
6302         * class-internals.h (_MonoGenericInst::type_argv): Convert from
6303         pointer to tail array to avoid extra allocation.
6304         * metadata.c (free_generic_inst): Update to changes.
6305         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
6306         on-stack struct.
6308 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
6310         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
6311         return TRUE if the two type objects are the same.
6313 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6315         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
6316         (mono_class_native_size): Use klass->marshal_info->min_align instead of
6317         klass->min_align, since klass->min_align contains the managed alignment,
6318         while the native alignment can be different, like for longs on x86.
6319         Fixes #469135.
6321         * class-internals.h (MonoMarshalType): Add a min_align field.
6323 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
6325         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
6326         the 1.0 format.
6328 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6330         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
6331         some comments about the usage of the used_regs field.
6333         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
6334         Fixes #469217.
6336 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
6338         * appdomain.c: return NULL instead of throwing FileNotFoundException
6339         when LoadAssembly() fails.
6341 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6343         * metadata.c (mono_metadata_generic_param_equal): Only compare the
6344         image if the owner is NULL.  Fixes the AOT failures.
6346 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6348         * metadata.c (mono_metadata_load_generic_params): Initialize the 
6349         MonoGenericParam structure using memset so the image field is initialized
6350         as well.
6352 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6354         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
6355         a plain store.
6357 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6359         * class.c (mono_class_setup_vtable_general): In the generic instance
6360         optimization, set method->slot for abstract virtual methods. Fixes part of
6361         #467834.
6363 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6365         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
6366         which signals that the unloading has started but all appdomain services must
6367         remain operational.
6369         * appdomain.c (mono_domain_unload): The initial state for unloading now
6370         is unloading_start and we switch to unloading after the managed call to
6371         AppDomain::DomainUnload has finished.
6373         The new unloading state has to be created because managed code in the
6374         DomainUnload event can depend on things like the threadpool still working.
6375         The domain must remain fully functional while the event executes.
6377         This shown as an issue due to Process::WaitForExit, which waits for
6378         async reads of stdout and stderr to complete. Since those are processed
6379         in the threadpool the code deadlocks because the DomainUnload callback 
6380         waits for the async read finished event, which should have been set by a
6381         threadpool job but has been discarded due to the domain been in unload
6382         state.
6384 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6386         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
6387         image must match.
6389 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6391         * reflection.c (resolve_object): For fields, inflate the class and
6392         then get the field in the inflated class.
6394 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6396         * object-internals.h (struct _MonoException): Added a comment
6397         explaining the new use of trace_ips.
6399 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6401         * generic-sharing.c (inflate_other_data): Inflate array methods
6402         correctly.
6404         * loader.c, class-internals.h: Rename search_in_array_class() to
6405         mono_method_search_in_array_class() and make it non-static.
6407 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6409         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
6410         Hopefully fixes #458168.
6412 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6414         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
6415         as it is performed elsewhere.
6417         Code is contributed under MIT/X11 license
6419 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6421         * mono-perfcounters-def.h: Add counters for asp.net requests total and
6422         requests queued.
6423         * object.c (mono_raise_exception): Increment the exceptions total
6424         counter when an exception is thrown.
6425         * class-internals.h: Add a location for storing the total number of
6426         asp.net requests served.
6427         * mono-perfcounters.c: Implement update support for asp.net counters
6428         from the class libraries. Implement read support for asp.net counters
6429         and exceptions total counter.
6431 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6433         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
6434         accessing klass->methods. Fixes #467385.
6436 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6438         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
6439         for byval arguments without an [Out] attribute. Fixes #467212.
6441         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
6442         Fix compilation under android.
6443         
6444         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
6445         processed, scan them directly after they are copied, to achieve better locality
6446         and cache usage.
6448         * socket-io.c: Applied patch from Koushik Dutta
6449         (koush@koushikdutta.com). Disable IPV6 when running under android.
6451 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6453         * icall.c (ves_icall_InternalExecute): Add write barriers.
6455         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
6456         the GC code.
6458         * sgen-gc.c: Implement write barriers in IL code.
6460 2009-01-17  Geoff Norton  <gnorton@novell.com>
6462         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
6464 2009-01-17  Geoff Norton  <gnorton@novell.com>
6466         * image.c: When unloading the image->references table, there can be gaps
6467         in it.  Ensure that we iterate every entry to avoid leaking assembly references
6468         when unloading an appdomain.
6470 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
6472         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
6473         speed up ptr-in-nursery checks.
6475         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
6476         threads_lock () to prevent deadlocks.
6478         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
6479         does not need to be scanned during minor collections, since writes to it
6480         must use write barriers.
6482 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
6484         * metadata-verify.c: Add pe nt header verification.
6485         
6486 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6488         * gc.c: Fix a few warnings when using SGEN.
6490 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
6492         * metadata-verify.c: Add pe optional header verification.
6494 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6496         * sgen-gc.c: Add support for user defined marker functions, used by
6497         MonoGHashTable to avoid registering a GC root for every hash node.
6499 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6501         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
6502         non-pinned roots into separate hashes to avoid having to traverse them
6503         in functions which are only interested in one kind.
6505 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6507         * metadata-verify.c: Add pe header machine field verification.
6508         
6509 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6511         * metadata-verify.c: Add pe header size verification.
6513 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6515         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
6516         using the GC, they don't contain references.
6518         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
6520 2009-01-13  Geoff Norton  <gnorton@novell.com>
6522         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
6523         AppDomains created on the native side can be cleaned up on the native side.
6525 2009-01-13  Geoff Norton  <gnorton@novell.com>
6527         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6528         as well as the managed api.
6530 2009-01-13  Geoff Norton  <gnorton@novell.com>
6532         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6533         with a MonoAppDomain initialized against it.
6535 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6537         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6538         
6539         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6541         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6542         into the wrapper caches. Fixes #465700.
6544         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6545         method builder.
6546         (mono_mb_create_method): Set the clauses from the method builder.
6548 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6550         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6551         Patch from Makoto Kishimoto.
6553 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6555         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6556         encoding them as ROOT_DESC_COMPLEX.
6557         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6559 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6561         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6562         no longer point to the nursery.
6564         * sgen-gc.c: Add a few comments/FIXMEs.
6565         
6566         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6568         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6569         initialization of the various _method variables thread safe. Fixes
6570         #465377.
6572 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6574         * domain.c, domain-internals.h: Remove the shared_generics_hash
6575         and its lookup functions.
6577 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6579         * socket-io.c:  Fixing the MSVC build. 
6581         Code is contributed under MIT/X11 license.
6583 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6585         * metadata-verify.c: Add pe header watermark verification.
6587 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6589         * metadata-verify.c: Add lfanew verification.
6591 2009-01-12  Jb Evain  <jbevain@novell.com>
6593         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6594         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6596 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6598         * socket-io.c: Fix the build.
6600         * environment.c: Fix an #ifdef.
6602 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6604         * threadpool.c (async_invoke_thread): Handle the wait function returning
6605         WAIT_IO_COMPLETION as well.
6606         (async_invoke_io_thread): Ditto.
6608 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6610         * threads.c: Fixing the Windows build.
6612         Code is contributed under MIT/X11 license.
6614 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6616         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6617         interrupt a wait.
6618         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6619         the thread to wait again.
6621 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6623         * metadata-verify.c: Initial skeleton of the metadata verifier.
6625         * pedump.c: Add support for the metadata verifier.
6627         * verify-internal.h: Export the whole assembly metadata verifier function.
6629 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6631         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6633 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6635         * Makefile.am: Upgrade dtrace-prelink.sh location.
6637 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6639         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6640         well. Otherwise the shutdown deadlock that happens on unix will can happen
6641         as well.
6642         If the main thread code finishes too fast it's possible that the finalizer
6643         thread won't have executed yet, won't record itself as the finalizer thread
6644         and the shutdown sequence will wait on it forever.
6646 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6648         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6649         with MSVC.
6651 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6653         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6654         Robert Jordan for pointing this out.
6656 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6658         * icall.c
6659         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6660         ves_icall_System_IO_DriveInfo_GetDriveType.
6662 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6664         * icall.c: Wrap calls to mono_strtod in CriticalSection
6665         invocations when using eglib, to work around #464316.
6667 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6669         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6670         return value of GetCurrentDirectory to never access unitialized memory.
6672 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6674         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6675         return value of GetCurrentDirectory and expand the buffer if needed.
6677         Fixes #459094.
6679 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6681         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6682           Adding a call to mono_init_com_types.
6684         Code is contributed under MIT/X11 license.
6686 2009-01-07  Geoff Norton  <gnorton@novell.com>
6688         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6689         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6690         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6691         be the value of the ip buffer.
6693 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6695         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6696         interfaces_packed here.
6698         Fixes part of #463294.
6700 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6702         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6704         Fixes part of #463294.
6706 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6708         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6709         is a boxed complex as well.
6711         Fixes part of #463294.
6713 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6715         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6716         control if a methodspec should be created for the generic method definition from external assemblies.
6717         Caching of methodspec is done using the handleref hash table.
6719         Fixes #462592.
6721 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6723         * loader.c (find_method): When searching the interfaces of a class
6724         check the transitive closure of implemented interfaces.
6726         Fixes #463303.
6728 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6730         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6731         
6732 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6734         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6735         interfaces calculation to fill_valuetype_array_derived_types.
6737         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6738         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6739         for example.
6741         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6742         interfaces for valuetypes if needed.    
6744         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6745         for their basetype as well. Types are array expanded if rank is > 0.
6747         Fixes #400716.
6749 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6751         * socket-io.h : Changing the signature of
6752           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6753           the blocking state.
6755         * icall-def.h :  Changing the signature of
6756           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6758         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6759           For Windows only.  Avoid blocking when calling accept by
6760           querying for a connection via select.  The loop also queries
6761           the thread state every 1000 micro seconds for the thread
6762           stop state.  This will avoid the process hanging on shutdown
6763           when using a TcpChannel that is never connected to.
6765         Code is contributed under MIT/X11 license.
6767 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6769         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6771 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6773         * class.c (get_implicit_generic_array_interfaces): Extract common
6774         code to a helper function making it a lot easier on the eyes.
6776 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6778         * class.c (get_implicit_generic_array_interfaces): If the internal
6779         enumerator is an interface inflate System.Object instead of itself.
6781         Fixes #461261.
6783 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6785         * object.c (mono_runtime_invoke_array): Don't assert with
6786         byref nullable types.
6788         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6789         byref nullables we unbox the object and store it on the
6790         stack. 
6791         We can't use the boxed object since it is the T of Nullable<T>
6792         and the boxed representation of a nullable it's underlying type
6793         or null.
6794         We could cheat and create a boxed nullable and use the same
6795         machinery of other byref VTs but this feels like a hack and
6796         using the stack has the bonus of reducing heap pressure.
6798         Fixes #461941.
6800 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6802         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6803         return value.
6805         Fixes #461867.
6807 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6809         * icall-def.h : Adding an internal call definition for 
6810           System.Environment.internalBroadcastSettingChange.
6812         * icall.c : Adding a Windows only implementation to broadcast a 
6813           WM_SETTINGCHANGE when an environment variable has changed.
6815         Code is contributed under MIT/X11 license.
6817 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6819         * class.c, class-internals.h: Made
6820         mono_class_has_parent_and_ignore_generics() non-static.
6822 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6824         * image.c: deal with the mmap failing when loading an image.
6826 2008-12-17  Geoff Norton  <gnorton@novell.com>
6828         * threadpool.c: Ensure that the io_queue_lock is initialized
6829         in all circumstances, as we always attempt to cleanup against it.
6831 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6833         * icall.c (ves_icall_System_Environment_get_Platform): For
6834         compatibility reasons for existing client code we will keep
6835         returning 4 for a while.   
6837         For how long will depend on the documentation being updated, and
6838         for us to give client code a chance to be updated.
6840         This reverts the original decison on #433108 since we did not
6841         catch roughly 33 instances of the broken code in our own source
6842         code base, we did not catch failures on the buildbots, and QA did
6843         not bring this as a problem.
6845         Only today I found some customer's code breaking due to our own
6846         class libraries not being fully updated and tracked it down to
6847         this change.  I am reverting it because if we could not even get
6848         our story straight in our own code base, how can we hope that our
6849         end user code be fixed?
6851         As of this morning, our Wiki page that documents how to detect
6852         Unix had not been fixed.    
6854 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6856         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6858         * class.c (mono_class_get_fields): Handle loading errors.
6860 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6862         * 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.
6863         
6864 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6866         * mono-perfcounters.c: avoid warning.
6868 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6870         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6871         make sure all interfaces have MonoClass::interface_id set.
6873         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6874         method table is property set.
6876 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6878         * class.c: New function mono_class_setup_interface_id that setup
6879         MonoClass::interface_id if needed.
6881         * class-internals.h: Export new function.
6883 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6885         * class.c: Add code to sanity check the vtable after setup_vtable_general
6886         has done it's work.
6888 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6890         * icall.c: make Assembly.GetExecutingAssembly work properly when
6891         reflection is used to invoke the method.
6892         Bug #321781 fixed.
6894 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6896         * metadata/generic-sharing.c: Look for constraints in all type
6897         arguments, not just the first one.
6899 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6901         * appdomain.c: return the correct CodeBase for an Assembly instance
6902         that was loaded from the shadow-copy directories.
6903         Bug #458190 fixed.
6905 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6907         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6909         * sgen-gc.c (check_object): New debugging helper function.
6911         * object.c: Fix calls to mono_value_copy_array ().
6913 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6915         * class.c (mono_class_setup_fields): If working on an inflated class
6916         first check if the generic definition did init with success.
6918         Fixes #445361.
6920 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6922         pedump.c (main): Fix a warning.
6924 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6926         * object-internals.h : Adding a definition for 
6927           MonoReflectionComVisibleAttribute.
6929         * marshal.c (cominterop_com_visible) :  Method added to check the 
6930           ComVisible attribute of a class.
6932         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6933           cominterop_raise_hr_exception added to consolidate common code 
6934           to raise hr exceptions.
6936         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6937           if a managed class should support IDispatch.
6939         * marshal.c 
6940           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6941           Added additional checks for managed object when getting 
6942           an IDispatch interface.
6944         Code is contributed under MIT/X11 license.
6946 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6948         pedump.c (main): Handle mono_get_method () returning NULL. 
6950 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6952         * marshal.h: Fix a warning.
6954 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6956         * marshal.c : Adding cominterop_release_all_rcws to release all
6957           runtime callable wrappers held by the runtime.
6959         * marshal.h : Adding declaration for cominterop_release_all_rcws.
6960           
6961         Code is contributed under MIT/X11 license.
6963 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6965         * metadata.c (mono_image_alloc_lock): New helper function.
6966         (mono_image_alloc0_lock): Ditto.
6968         * metadata.c: Use the alloc_lock () helper functions for allocating
6969         memory from the image mempool.
6971 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
6973         * class.c (mono_class_from_generic_parameter): Document it's
6974         locking behavior. Fix double checked locking here, we stored in
6975         param->pklass a partially initialized MonoClass and no membar was used.
6977 2008-12-05  Marek Habersack  <mhabersack@novell.com>
6979         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
6980         (3) functions are present in the C library use them to do the
6981         job. If they are absent, make sure that the sum of int_part and
6982         dec_part is rounded before returning. This is necessary due to the
6983         division of dec_part by the power of 10 before the final addition
6984         is performed - if the result is not rounded in some cases it will
6985         yield invalid results.
6987 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
6989         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
6990         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6991         instruction instead of a pointer constant.
6993 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6995         * loader.c (mono_method_get_header): Do most of the work outside the
6996         loader lock, to avoid assembly load hook deadlocks.
6998         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6999         (mono_metadata_parse_type_full): Ditto.
7001 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
7003         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
7004         Make the stack depth fixed. Ensure proper argument passing to the backtrace
7005         funtions. Finally, use a lock to produce well ordered output.
7007         The lock looks silly, as all calls to the corlib mempool should be guarded
7008         with the loader lock, but for some reason this fact doesn't help. 
7010         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
7012 2008-12-02  Mark Probst  <mark.probst@gmail.com>
7014         * socket-io.c: 64 bit big-endian fixes.
7016 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
7018         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
7019         targets that require strict compatibility between the types.
7021         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
7022         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
7023         Kill the strict argument and create a new one valuetype_must_be_boxed.
7025         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
7026         state that all valuetypes must be boxed.
7028         Fixes #448560.
7030 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
7032         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
7033         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
7035         Contributed under MIT/X11 license.
7037 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
7039         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
7040         the inflate_generic_type machinery should handle it.
7042         This avoids a crash when the field's flags is zero and it's type is
7043         a primitive.
7044         What happens is that mono_metadata_parse_type_full will see that opt_attrs
7045         is zero and will return one of the cached built-in primitive types. Since
7046         those types live in read-only memory, the code that copies it crashes.  
7048 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7050         * object.c: Don't put function descriptors into generalized IMT
7051         thunks.
7053 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7055         * class.c: Enable generic code sharing on PPC64.
7057 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7059         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
7060         from mini/mini.c.
7062         * generic-sharing.c: Allocate the method template slists from the
7063         image mempool so it doesn't leak.
7065 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
7067         * class.c (generic_array_methods): Release the linked list.
7069 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7071         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
7072         invocation to g_utf16_to_utf8().
7074 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7076         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
7077         arguments on big endian archs.
7079 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7081         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
7082         the type name (test added in corlib).
7084 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7086         * pedump.c: initialize perf. counters. Fixes a segv.
7088 2008-11-25  Martin Baulig  <martin@ximian.com>
7090         * mono-debug-debugger.c
7091         (mono_debugger_runtime_invoke): Return the exception object if an
7092         exception was thrown.  Visual Studio displays the exception object
7093         in the locals window.
7095 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7097         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
7098         ftnptr.
7100 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7102         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
7103         MONO_TYPE_U are sizeof (gpointer), too.
7105 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7107         * marshal.c (mono_type_native_stack_size): Fixed size and
7108         alignment for reference types.
7110 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7112         * class.c (mono_class_generic_sharing_enabled): Disable generic
7113         code sharing for PPC64.
7115 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
7117         * icall.c (mono_method_get_equivalent_method): Make sure
7118         method->klass->methods is inited before looping over it.
7120 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7122         * object.c: when calling ExecuteAssembly in a newly created domain,
7123         the configuration file and application base are already set up.
7124         Bug #446353 take 2 fixed.
7126 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
7128         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
7129         Fixes #444715. Fix a warning.
7131 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
7133         * appdomain.c: write the full path of the assembly to the .ini file
7134         created when "shadow-copying"
7135         Bug #446353 fixed.
7137 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
7139         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
7140         if signature==FALSE.
7142 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7144         * marshal.h : Fix the cygwin build.
7145            marshal.c:12442: undefined reference to `_IID_IMarshal'
7146           
7147         Code is contributed under MIT/X11 license.
7149 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7151         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
7152           free threaded marshaler when QueryInterface is called on a COM callable
7153           wrapper requesting the IMarshal interface.
7154           
7155         Code is contributed under MIT/X11 license.
7157 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
7159         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
7161         * reflection.c (mono_type_get_object): Special case the very common
7162         void type.
7164         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
7165         hold typeof(void).
7167 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
7169         * process.h : Adding method declaration for
7170           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7171           
7172         * process.c : Adding implementation for
7173           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7174           
7175         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
7176           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7178         Code is contributed under MIT/X11 license.
7180 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
7182         * appdomain.c (unload_thread_main): Clean up threadpool by
7183         calling mono_thread_pool_remove_domain_jobs.
7185         * domain-internals.h (struct _MonoDomain): Add new fields to
7186         help coordinate the cleanup of the threadpool.
7188         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
7189         that cleans up the threadpool of all jobs associated with an appdomain.
7190         It does that by cleaning up the queues and making sure all active
7191         threads are accounted.
7193         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
7194         unloaded or in the process of. Take this is such way that there is
7195         no race condition between another thread starting the unload and the
7196         current thread acknowledging it.
7198         * threadpool.c (async_invoke_thread): Same.
7200         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
7201         firing the new thread.
7203         * threadpool.c (start_tpthread): Same.
7205         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
7207         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
7209 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
7211         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7212         Add support for DuplicateHandle.
7213         
7214         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7215         Add support for DuplicateHandle.
7216         
7217         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7218         Add support for DuplicateHandle.
7220         Code is contributed under MIT/X11 license.
7222 2008-11-06  Mark Probst  <mark.probst@gmail.com>
7224         * class-internals.h: Make min_align into a whole byte.
7226         * class.c: Set min_align for SIMD types to 16.
7228 2008-11-05  Geoff Norton  <gnorton@novell.com>
7230         * attach.c: Default the attacher to enabled for all cases including
7231         embedded.
7233 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
7235         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
7236         change r117650.
7238 2008-11-04  Mark Probst  <mark.probst@gmail.com>
7240         * monitor.c, monitor.h: New function for querying offsets of
7241         members of MonoThreadsSync.
7243 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
7245         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
7246         to speed up this function and to avoid the boundless memory growth caused by
7247         the signature_dup () calls.
7249 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
7251         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
7252         wrapper.
7254         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
7255         by 1 bit.
7257         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
7259 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7261         * appdomain.c:
7262         * domain-internals.h: made mono_set_private_bin_path_from_config()
7263         "internal".
7264         * object.c: call the above function after setting the configuration
7265         file path for the root domain.
7266         Fixes bug #314478.
7268 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7270         * assembly.c: when the assembly is loaded from an absolute path, end
7271         basedir with a directory separator.
7272         Bug #440781 fixed.
7274 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7276         * monitor.c (mono_monitor_get_fast_enter_method): If
7277         CompareExchange is not available, don't create the fastpath
7278         instead of asserting.  (The method is missing in the 1.1 profile.)
7280 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7282         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
7284         * monitor.c, monitor.h: Code for generating Monitor.Enter and
7285         Monitor.Exit IL fastpaths.
7287 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7289         * class.c (mono_class_create_from_typedef): Added Vector2ul.
7291 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7293         * class.c (mono_class_create_from_typedef): Added Vector2l.
7295 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7297         * class.c (mono_class_create_from_typedef): Added Vector2d.
7299 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7301         * appdomain.c: translate \ into / for cache_path.
7302         * domain-internals.h: new mono_is_shadow_copy_enabled().
7303         * icall.c: (fill_reflection_assembly_name) do the same path
7304         manipulations that get_code_base does.
7305         (get_code_base) use mono_is_shadow_copy_enabled.
7307 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7309         * appdomain.c: shadow-copied assemblies go to CachePath +
7310         ApplicationName when both are set. DynamicBase has nothing to do with
7311         shadow copies.
7312         Bug #406877 fixed.
7314 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
7316         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
7317         STANDALONESIG table.
7319         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
7320         standalone signatures.
7322         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
7323         comparison code: instead of comparing the signatures using a custom
7324         equals function, transform them to a common signature and compare that. This
7325         works better with AOT.
7327 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
7329         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
7331         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
7332         call for generic instances.
7333         (mono_class_setup_properties): Call setup_properties () before accessing
7334         gklass->properties.
7336         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7337         over the virtual methods of a class using metadata if possible, avoiding the
7338         creation of MonoMethod's for non-virtual methods.
7339         
7340         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7341         get_virtual_methods () to iterate over the virtual methods of classes.
7343 2008-10-25  Martin Baulig  <martin@ximian.com>
7345         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
7347 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7349         * class.c (mono_class_create_from_typedef): Added Vector4i.
7351 2008-10-24  Mark Probst  <mark.probst@gmail.com>
7353         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
7354         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
7355         special-casing applies to eliminate the call completely.
7357 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7359         * class.c (mono_class_create_from_typedef): Added Vector8s.
7361 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7363         * class.c (mono_class_create_from_typedef): Added Vector16sb.
7365 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7367         * icall.c: get rid of annoying warning.
7369 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7371         * threadpool.c: in 1.x, if you change the background status of the
7372         threadpool thread, it's not reset.
7373         Remove unnecessary calls to SetState.
7375 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7377         * threadpool.c: asynchronously create a set of idle threads upon first
7378         use of the threadpool. SetMinThreads will now start the appropriate
7379         number of idle threads if they are not already running. The default is
7380         1 threadpool thread per CPU. Increased the maximum number of threads
7381         per CPU to 10.
7383 2008-10-22  Martin Baulig  <martin@ximian.com>
7385         Revert r116521 from Zoltan, it breaks the debugger:
7387         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7388         over the virtual methods of a class using metadata if possible, avoiding the
7389         creation of MonoMethod's for non-virtual methods.
7390         
7391         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7392         get_virtual_methods () to iterate over the virtual methods of classes.
7394 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7396         * threads.c: when creating a threadpool thread, set its state to
7397         'background'.
7398         * threadpool.c: reset the background state of a threadpool thread
7399         after finishing each work item
7400         Bug #437888 fixed.
7402 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7404         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
7405         
7406         * class.c (mono_class_setup_vtable_general): Add an optimized version for
7407         generic instances which works by inflating the methods in the container
7408         class's vtable.
7410         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
7411         variant which doesn't make a copy if no inflation was done.
7412         (mono_class_setup_fields): Use it.
7414         * metadata.c (mono_metadata_get_shared_type): New helper function to
7415         return a shared instance of a given MonoType.
7417         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
7418         a copy of most non-generic types.
7420 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
7422         * threadpool.c: remove one more GetSystemInfo () call.
7424 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7426         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
7427         use the code in mono-proclib.h to get processor information.
7429 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7431         * appdomain.c: fixed the logic that determines whether assemblies in a
7432         directory are "shadow-copied" or not. Bug #433483 fixed.
7434 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7436         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
7437         warning.
7439 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7441         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
7442         returning a vtype.
7444         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
7445         reflection.c: Use mono_field_get_name () for accessing a field's name.
7447         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
7448         class.c
7450         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
7451         field.
7453         * loader.c (find_method_in_class): Reenable the metadata optimization by
7454         not using it for generic instances.
7456         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
7457         data/def_type fields from MonoClassField into a separate structure.
7458         (struct MonoClassField): Remove data/def_type fields.
7459         (struct _MonoClass): Add a 'field_def_values' array to store the default
7460         values/RVA for fields.
7462         * class.c reflection.c: Update after the changes.
7463         
7464         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
7465         for accessing field->data.
7467         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
7469         * loader.c (find_method_in_class): Revert the last change for now as
7470         it breaks Mono.C5 unit tests.
7472         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
7473         'field_generic_types' and 'field_objects' which contain the information
7474         previously stored in MonoInflatedField.
7475         (MonoInflatedField): Delete.
7476         (struct _MonoClassField): Delete 'generic_info' field.
7478         * reflection.c: Store the information which was previously in 
7479         field->generic_info in MonoDynamicGenericClass instead.
7481         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
7482         MonoClassField changes.
7484 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
7486         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
7487         store the value inside the data array of the MonoMethodWrapper.
7488         This saves memory, is faster and fixes the lifetime issues (methods
7489         were never removed from the hash previously). May also fix bug#436996.
7491 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7493         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
7494         generic instances, compute the type from the generic definition instead of
7495         looking in field->generic_info.
7497         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
7498         for inflated fields, the only user was get_fieldref_token () which no
7499         longer needs it.
7501         * class.c (mono_class_init): Revert the last change as it seems to cause
7502         crashes.
7504         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
7505         bytes on 64 bit platforms.
7507         * object.c (mono_class_create_runtime_vtable): Fix a warning.
7508         
7509         * object.c (mono_class_create_runtime_vtable): Don't initalize
7510         field->data/field->def_type here, it is done lazily by 
7511         mono_class_get_field_default_value ().
7513         * icall.c (ves_icall_get_enum_info): Call 
7514         mono_class_get_field_default_value () instead of directly accessing
7515         field->data and field->def_type.
7517         * object.c (get_default_field_value): Ditto.
7519         * class.c (mono_field_get_data): Ditto.
7520         
7521         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
7522         call for generic instances.
7524         * loader.c (find_method_in_class): If klass != from_class, then inflate
7525         the method with the context of from_class, since the caller assumes this.
7527 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7529         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7530         for accessing method->slot.
7532 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7534         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7536 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7538         * class.c (mono_method_get_vtable_index): Use
7539         mono_method_get_vtable_slot () for accessing method->slot.
7541         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7542         accessing klass->methods.
7544         * class.c (mono_method_get_vtable_slot): New helper function.
7545         (mono_class_get_vtable_entry): Ditto.
7546         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7547         accessing method->slot.
7549         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7550         method to get_inflated_method ().
7552         * class.c (mono_class_get_inflated_method): New helper method to obtain
7553         a method of an inflated class without calling setup_methods ().
7554         (mono_class_get_cctor): Use get_inflated_method.
7556         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7557         
7558         * marshal.c image.c: Lazily create all the marshal caches.
7560         * image.c (mono_image_init): Move initialization of runtime_invoke
7561         caches to marshal.c.
7563         * marshal.c (get_cache): New helper function to lazily initialize a 
7564         wrapper cache.
7565         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7567         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7569 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7571         * loader.c: fixed check for interface type.
7573 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7575         * appdomain.c: check for NULL setup before it's referenced.
7578 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7580         * class.c: remove the unused old vtable setup code.
7582 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7584         * class.c: don't depend on interface order in
7585         setup_interface_offsets (bug #435777).
7586         * reflection.c: sort the InterfaceImpl table (patch from
7587         Jb Evain  <jbevain@novell.com>).
7589 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7591         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7592         the low level assemblies lock.
7594 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7596         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7597         object.c, reflection.c, socket-io.c, threads.c: introduced
7598         mono_framework_version () to return the major framewrok version,
7599         changed the code that was using more complex patterns to use it.
7600         Return the correct value for PlatformID for OSX.
7602 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7604         * icall-def.h, process.h, process.c: added an icall to get info about
7605         processes using mono-proclib.
7607 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7609         * mono-perfcounters.c: use the mono-proclib functions to
7610         access process information.
7612 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7614         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7615         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7616         reflection.c: remove rawbuffer usage: mmap support is more sanely
7617         provided by utils/mono-mmap.
7619 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7621         * gc.c: use posix semaphores when possible so that
7622         mono_gc_finalize_notify() is signal safe.
7624 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7626         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7627         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7628         be #ifdef-ed out, the linker will remove the rest.
7630         * marshal.c: Implement DISABLE_COM.
7632         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7634 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7636         * locales.c (string_invariant_compare_char): Optimization: do not
7637         call g_unichar_type unless we actually need the information.
7639 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7641         * object.c, class-internals.h: Also create remoting trampolines
7642         for generic methods.  Pass the domain to the remoting trampoline
7643         creation function, too.
7645 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7647         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7649 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7651         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7652         Vector4ui.
7654 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7656         * assembly.c:
7657         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7659 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7661         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7662         for the least possible amount of time (extending the fix in r113458).
7664 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7666         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7668 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7670         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7671         as possible simd intrinsic types.
7672         Optimized the test to check for the common prefix first.
7674 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7676         * class.c: back out part of a broken optimization committed on
7677         May 23th (bug #433908).
7679 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7681         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7682         Win32.  Should fix #432388 for most cases until we have the new
7683         profiler on Win32.
7685 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7687         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7688         instead of using inst->id so the hash is stable for AOT.
7690 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7692         * appdomain.c:
7693         * icall.c: create a .ini file for shadow-copied assemblies that
7694         contains the location of the original assembly. Use this to return the
7695         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7696         Also fix the number of '/' for windows when returning the CodeBase.
7697         Fixes bug #430920.
7699 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7701         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7703         Code is contributed under MIT/X11 license.
7705 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7707         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7708           if if the class vtable needs initialized.
7710         Code is contributed under MIT/X11 license.
7712 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7714         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7715           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7716           STRING->BSTR, and CLASS->INTERFACE.
7718         Code is contributed under MIT/X11 license.
7720 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7722         * sysmath.h: changed the declaration of the
7723         ves_icall_System_Math_Round2 icall by adding an extra
7724         away_from_zero parameter.
7726         * sysmath.c (ves_icall_System_Math_Round2): added support for
7727         away from zero rounding. The icall now takes an extra boolean
7728         parameter to signal that away from zero operation is requested.
7730 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7732         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7733         the delegate klass so it can work with full-aot.
7734         (mono_marshal_get_delegate_end_invoke): Ditto.
7735         (mono_marshal_get_delegate_invoke): Ditto.
7737 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7739         * gc.c, attach.h, attach.c: remove a bad pattern:
7740         add_finalizer_callback () is not implemented correctly, it can't
7741         without adding more overhead to the finalizer loop and it's not
7742         even needed, since we know exactly what we need to call, so there is
7743         no need to do so through an expensive function pointer.
7745 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7747         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7748         for the no-gc case.
7749         * attach.c (mono_attach_init): Remove the #ifdef.
7751 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7753         * attach.c (mono_attach_init): Don't use
7754         mono_gc_add_finalizer_thread_callback when compiling without GC.
7755         Fixes #432306.
7756         
7757         Code is contributed under MIT/X11 license.
7759 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7761         * class.c (mono_class_create_from_typedef): Remove the 
7762         #ifndef DISABLE_SIMD stuff.
7764 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7766         * class-internals.h (MonoClass): Added simd_type bit field.
7768         * class.c (mono_class_create_from_typedef): Check if type is a simd
7769         intrinsic.
7771 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7773         * object.c (mono_method_add_generic_virtual_invocation): Only add
7774         instantiations to the thunk whose count is at least as large as
7775         the threshold.
7777 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7779         * icall.c: changed the Type of the exception thrown when trying to
7780         invoke a constructor on an abstract class. Part of the fix for bug
7781         #324185.
7783 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7785         * class.c, class-internals.h (mono_method_get_vtable_index): New
7786         function which returns the index into the vtable and properly
7787         handles inflated virtual generic methods.
7789 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7791         * object.c, domain.c, object-internals.h, domain-internals.h:
7792         Generalize IMT thunk machinery to also handle thunks for virtual
7793         generic method invokes.  When a virtual generic method is invoked
7794         more than a number of times we insert it into the thunk so that it
7795         can be called without lookup in unmanaged code.
7797         * generic-sharing.c, class-internals.h: Fetching a
7798         MonoGenericInst* for a method from an (M)RGCTX.
7800 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7802         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7803         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7804         marshalling. Fixes #431304.
7806 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7808         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7809           handle when ref is specified without In or Out.
7811         Code is contributed under MIT/X11 license.
7813 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7815         * loader.c (mono_get_method_constrained): Don't expand method with
7816         the class's context, because it's already a method of that class.
7818 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7820         * attach.c : should be correct build fix.
7822 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7824         * attach.c: Fix the previous change.
7826 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7828         * attach.c : quick w32 build fix.
7830 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7832         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7833         crashes MonoDevelop: #430455.
7835 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7837         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7838         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7840         * domain.c: Remove initialization/cleanup of the removed fields.
7842 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7844         * class.c (mono_class_generic_sharing_enabled): Enable generic
7845         code sharing for PPC.
7847 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7849         * attach.c : Fixing the Windows builds.
7851         Code is contributed under MIT/X11 license.
7853 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7855         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7856         the default generic sharing mode to 'all'.
7858 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7860         * generic-sharing.c, class-internals.h: New function for checking
7861         whether a method needs a static RGCTX invoke wrapper.  A few
7862         funtions moved from mini/generic-sharing.c.
7864         * icall.c: New function used.
7866 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7868         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7869         Static RGCTX invoke wrapping applies to value type methods, too.
7871         * class.c (mono_class_setup_vtable_general): In generic-shared
7872         value types, wrap methods with a static RGCTX invoke wrapper.
7874 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7876         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7877         osx build.
7879 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7881         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7882         register a callback which is called when the finalizer thread is woken
7883         up.
7884         (finalizer_thread): Call the callback if it exists.
7886         * attach.h attach.c: New files, implementing the attach mechanism.
7888         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7889         
7890         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7891         by the previous change.
7893 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7895         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7896         loader.c, marshal.c, metadata-internals.h, metadata.c,
7897         method-builder.c, object.c, reflection.c: introduced specific functions
7898         to allocate from the domain and image mempools and cleaned up most of
7899         the code to use them (still missing a few in reflection.c).
7900         Keep the loader bytes counter updated.
7902 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7904         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7905         loader-related counters.
7907 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7909         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7910         added more MS-compatible counters.
7912 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7914         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7915         class->blittable. Fixes #428217.
7917 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7919         * reflection.c (mono_image_get_field_on_inst_token): Call 
7920         field_encode_signature () since that handles custom modifiers too.
7921         Fixes #424663.
7923 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7925         * reflection.c (add_custom_modifiers): New helper function to merge custom
7926         modifiers stored in objects to a MonoType.
7927         (fieldref_encode_signature): Encode custom modifiers.
7928         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7929         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7931 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7933         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7934         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7935         64-bit IL only images because imports are not resolved for IL only images.
7936         Special thanks to Bill Holmes for finding this bug and testing the patch.
7937         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7939         Contributed under MIT/X11 license.
7941 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7943         * mono-config.c (dllmap_start): Add support for the bits keyword
7944         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7946 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7948         * reflection.c (inflate_mono_method): When the class the method is
7949         to be inflated for is itself not inflated, just return the method.
7951 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7953         * mono-perfcounters.c: use more user friendly process instance names.
7955 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
7957         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7958           handle "[in] ref" and "[in][out] ref" cases.
7960         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
7961           to mono_mb_create_method.  This was causing problems calling native to
7962           managed passing Variants by value.
7964         Code is contributed under MIT/X11 license.
7966 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
7968         * class.c (can_access_internals): Call mono_assembly_load_friends ()
7969         before accessing the friend_assembly_names field.
7971         * assembly.c (mono_assembly_load_friends): Make this callable multiple
7972         times.
7973         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
7974         called lazily when it is needed.
7976         * metadata-internals.h (struct _MonoAssembly): Add 
7977         'friend_assembly_names_inited' flag.
7979 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
7981         * mono-perfcounters-def.h: fix the types of a few counters.
7982         * mono-perfcounters.c: implemented the instance names getter
7983         and a few bugfixes.
7985 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
7987         * culture-info-table.h : regenerated.
7989 2008-09-17  Robert Jordan  <robertj@gmx.net>
7991         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7992         context bound objects. Fixes #415577.
7994         Code is contributed under MIT/X11 license.
7996 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7998         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7999         implementation (bug #423582).
8001 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
8003         * object.c (mono_object_get_virtual_method): Handle the case method->slot
8004         is not set. Fixes #426309.
8006 2008-09-16  Jb Evain  <jbevain@novell.com>
8008         * class.c (mono_class_from_name): fix the exported type look up
8009         when the type is defined in a referenced assembly.
8011 2008-09-16  Jb Evain  <jbevain@novell.com>
8013         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
8014         increment the next index counter on each iteration to make that work
8015         for more than one type forwarder. Unmanaged part to fix #422929.
8017 2008-09-15  Mark Probst  <mark.probst@gmail.com>
8019         * object-internals.h: enum ComInterfaceType in
8020         MonoInterfaceTypeAttribute is guint32, not guint16.
8022 2008-09-12  Mark Probst  <mark.probst@gmail.com>
8024         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
8025         writing code.
8027 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8029         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
8030         not gboolean.
8032 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8034         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
8035         Endianness fixes for MonoSymbolFileOffsetTable.
8037 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8039         * process.c (complete_path) : Removing quotes from the 
8040           input path.  The glib file routines do not handle file paths
8041           that have quotes around them.
8043         Code is contributed under MIT/X11 license.
8045 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8047         * socket-io.h : Adding a comment to provide locations where 
8048           changes to MonoSocketAsyncResult need to be synced.
8050         Code is contributed under MIT/X11 license.
8052 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
8054         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
8055         parameters as well. Fixes #425001.
8057 2008-09-08  Miguel de Icaza  <miguel@novell.com>
8059         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
8060         windows build.
8062 2008-09-07  Miguel de Icaza  <miguel@novell.com>
8064         * console-io.c: Add support for tracking the window size if it
8065         changes.
8067         The setup is very simple: the TtySetup function will now return a
8068         pointer to a location in memory that tracks the current console
8069         size.  The managed code checks its current value every time its
8070         queried against the last value set, and updates accordingly.
8072         With this setup we can work with multiple consoles, and we do not
8073         require to poke into managed code from a signal handler.
8075         Additionally, the environment for COLUMNS and LINES is now handled
8076         in unmanaged code.
8078         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
8080 2008-09-07  Mark Probst  <mark.probst@gmail.com>
8082         * marshal.c (mono_type_native_stack_size): Treat
8083         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
8085 2008-09-04  Jb Evain  <jbevain@novell.com>
8087         * class.c (mono_class_is_assignable_from): fix assignability of nullables
8088         to nullables.
8090 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
8092         * verify.c (verify_type_compatibility_full): Revert change
8093         to allow converting a native int to unmanaged pointer be verifiable
8094         under non-strict mode.
8095         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
8097         * verify.c: Added some TODOs.
8099 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
8101         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
8102           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
8103           Changed to use GlobalAlloc for the memory returned on Windows platforms.
8105         Code is contributed under MIT/X11 license.
8107 2008-09-02  Jb Evain  <jbevain@novell.com>
8109         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
8111 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
8113         reflection.c (typebuilder_setup_fields): Handle classes with
8114         explicit size.
8116 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
8118         class.c (mono_class_setup_events): Add memory barrier due to
8119         double checked locking.
8120         
8121         class.c (mono_class_setup_properties): Same.
8123 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
8125         * class.c (mono_class_is_assignable_from): Fix the build.
8126         
8127         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
8128         before accessing klass->interface_bitmap. Fixes #421744.
8130 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
8132         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
8133         the runtime into no-exec mode, useful when running the AOT compiler.
8135         * appdomain.c gc.c object.c: Avoid executing managed code when running
8136         in no-exec mode.
8137         
8138         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
8140         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
8141         special case when the mono_assembly_loaded () returns NULL because the 
8142         search hook is not installed.
8144 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
8146         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
8147         crashes in bstr marshalling on linux.
8149 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8151         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
8152         with more than one parameter.
8154 2008-08-24  Miguel de Icaza  <miguel@novell.com>
8156         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
8157         start/stop flow control as well when turning off ICANON (allows
8158         C-s and C-q to be read by Console.ReadKey).
8160 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8162         * class.c (mono_class_init): Move the initialization of nested classes
8163         into mono_class_get_nested_types (). Fixes #418433.
8165         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
8166         flag.
8168         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
8169         iterating tough the nested classes of a class.
8171 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
8173         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
8174         on arm.
8176 2008-08-22  Miguel de Icaza  <miguel@novell.com>
8178         * console-io.c (sigcont_handler): Support signal chaining for
8179         SIGCONT.
8181         (console_set_signal_handlers): Use best practices with sigaction,
8182         clear the structure before using it. 
8184 2008-08-22  Robert Jordan  <robertj@gmx.net>
8186         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
8187         Fix the Windows build.
8189 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
8191         * class.c (mono_class_generic_sharing_enabled): Make the default
8192         sharing mode 'corlib'.
8194 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
8196         * console-io.c (console_set_signal_handlers): Fix a warning.
8198         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
8199         method normally, the JIT will take care of avoiding recursion.
8201 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8203         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
8205         Code is contributed under MIT/X11 license.
8207 2008-08-20  Miguel de Icaza  <miguel@novell.com>
8209         * console-io.c (sigcont_handler): We need to restore the entire
8210         termios state, not only the original settings, as things like echo
8211         can be controlled after this (Booish exposes this issue with its
8212         own ReadLine implementation).
8214         Additionally, we need to set the terminal back into keypad_xmit
8215         mode.
8216         
8217         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
8218         string as a paramter as well.   Otherwise we get different
8219         keyboard sequences.
8221 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
8223         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
8224         delegates with byref out parameter passing. Fixes #351520.
8226         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
8227         a generic context.
8228         (mono_type_get_desc): Add the type arguments for GENERICINST.
8229         (mono_method_full_name): Stringify the class name using mono_type_full_name
8230         so it picks up generic arguments.
8232 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
8234         * console-io.c: Removed debug output.
8236 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
8238         reflection.c (mono_reflection_create_runtime_class): Alloc
8239         the nested classes linked list using the dynamic image mempool.
8240         Fixes leak in corlib compilation.
8242 2008-08-19  Miguel de Icaza  <miguel@novell.com>
8244         * console-io.c: Fix incredibly annoying behavior on the console
8245         after resuming execution after control-z.   This affected every
8246         console application.
8248 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
8250         * mempool-internals.h: Header for mono private mempool functions. The first
8251         two function are for allocating glib linked lists using pools.
8253         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
8255         * Makefile.am: Added mempool-internals.h.
8257 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
8259         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
8260         (mono_domain_free): Ditto.
8262         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
8263         be used by the JIT to store its domain-specific information, instead of putting
8264         it directly into MonoDomain.
8266         * domain.c (mono_install_create_domain_hook): New helper function to install
8267         a hook which initializes domain->runtime_info.
8269         * domain.c (mono_install_free_domain_hook): Ditto.
8270         
8271 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
8273         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
8274         asserting if the ares parameter is null.
8276         * mono-perfcounters.c: Fix warnings.
8278         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
8279         is not needed, don't check for interruptions either.
8280         (mono_marshal_get_delegate_end_invoke): Ditto.
8282 2008-08-15  Marek Habersack  <mhabersack@novell.com>
8284         * mono-perfcounters.c (predef_readonly_counter): added support for
8285         reading the ASP.NET Requests Queued counter from another process.
8287 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8289         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
8290         MonoImage to simplify the AOT code.
8292 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
8294         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
8295         marshalling. Fixes #416078.
8297 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8298         
8299         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
8300         it is set, looking up the icall address is deferred to the JIT, since 
8301         in embedded scenarios, the icall might not be registered in the runtime
8302         doing the AOT compilation. Backported from the 2.0 branch.
8304 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8306         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
8307         Fixes #415621.
8309 2008-08-05  Marek Habersack  <mhabersack@novell.com>
8311         * Makefile.am: added support for cross-compilation.
8313 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
8315         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
8317 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8319         * mono-perfcounters.c: jitted methods and jitted bytes counters.
8321 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
8323         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
8324         mono-perfcounters.c: performance counters implementation.
8326 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
8328         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
8329         to gpointer, letting the AOT code decide what to store in it.
8331 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
8333         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
8334           mono_class_setup_methods if the methods are not initialized.
8336         Code is contributed under MIT/X11 license.
8338 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8340         * verify.c: Remove some debug code I commited by accident.
8342         * verify.c (mono_method_is_valid_in_context): Change the return value
8343         to make possible to distinguish between invalid and unverifiable.
8345         * verify.c (verifier_load_method): Don't return NULL for unverifiable
8346         methods.
8348 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8350         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
8351         constraints. Fixes regression in gtest-253.
8353 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8355         * verify.c (mono_verifier_verify_class): Don't allow generic types
8356         with explicit layout.
8358         * verify.c (mono_method_verify): Check locals and argument types.
8360 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
8362         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
8363         wait if the thread is in StopRequested state.
8365         * class.c (mono_class_from_name): Refactor the module searching code into
8366         a separate function so it can be reused in the AOT case too.
8368 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
8370         * verify.c (mono_type_is_valid_in_context): Improve the error message.
8371         Check both the type and it's generic type definition for loader errors.
8372         
8373         * verify.c (mono_method_is_valid_in_context): Don't generate another
8374         error when a type errors occur, this leads to the wrong exception been
8375         thrown.
8377 2008-07-28  Dick Porter  <dick@ximian.com>
8379         * icall-def.h
8380         * process.c
8381         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
8382         New internal calls to duplicate and close a process handle.
8384 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
8386         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
8388 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
8390         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
8392 2008-07-27  Robert Jordan  <robertj@gmx.net>
8394         * class.c (mono_class_init): Don't compute class.has_finalize for
8395         valuetypes. Fixes #412477.
8397 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
8399         * verify.c: Implement constraint equivalence checking.
8400         This is required when a generic parameter is used as
8401         argument to a constrained one.
8403         Fixes #410637.
8405 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
8407         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8409         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
8411         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
8412         synch with managed object layout.
8414 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8416         * verify.c (do_branch_op): Handle valuetypes and generic
8417         arguments properly.
8419         * verify.c (do_cmp_op): Same.
8421         Fixes #410383.
8423 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8425         * generic-sharing.c: Fix memory leaks.
8427         * class.c, class-internals.h: Make
8428         mono_class_inflate_generic_type_with_mempool() non-static.
8430 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8432         * pedump.c (dump_verify_info): Dump full class name.
8434 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8436         * generic-sharing.c: Removed some old code that didn't do anything.
8438 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
8439         * profiler.c: Added runtime_initialized_event,
8440         mono_profiler_install_runtime_initialized and
8441         mono_profiler_runtime_initialized. This new hook tells the profiler
8442         when the runtime is sufficiently initialized to be able to call
8443         mono_thread_attach on the root appdomain.
8444         * profiler.h, profiler-private.h: Likewise.
8446 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8448         * verify.c (do_cast): Do boxing for generic arguments as well.
8450         * class.c (is_nesting_type): Drop generic instantiations before
8451         checking for nesting.
8453         * class.c (can_access_instantiation): Allow access to generic
8454         arguments.
8456 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8458         * verify.c (verify_class_for_overlapping_reference_fields):
8459         On some cases, the field size might be zero, guard against that.
8460         Fix the explicit layout check to work as expected.
8462 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
8464         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
8465         mono_thread_resume () during shutdown, since the thread we want to abort
8466         might be suspended.
8468 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
8470         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
8471         warning.
8473         * debug-mono-symfile.c: Fix a warning.
8475         * mono-perfcounters.c (get_cpu_times): Fix a warning.
8477         * object.c (mono_class_vtable): Check if exception_type is set, and return
8478         NULL as defined by the function comments.
8480 2008-07-22  Mark Probst  <mark.probst@gmail.com>
8482         * mempool.c: Use malloc for every single mempool allocation if the
8483         configure option is set.  This makes it easier to track mempool
8484         allocations with tools like Valgrind.
8486 2008-07-22  Jb Evain  <jbevain@novell.com>
8488         * reflection.c (create_dynamic_mono_image): emit the same
8489         metadata version that SL2 does when creating a SL2 image.
8491 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
8493         * icall-def.h:
8494         * icall.c: New icall System.Enum:get_hashcode. This function
8495         avoids the overhead of boxing the enum to the underlying type.
8497 2008-07-21  Mark Probst  <mark.probst@gmail.com>
8499         * reflection.c (mono_method_get_object): Don't let static RGCTX
8500         invoke wrappers get into MonoReflectionMethods.
8502 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
8504         * object-internals.h:
8505         * object.c: New mono_runtime_class_init_full function
8506         that makes throwing the exception optinal.
8508         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
8509         for the case where the exception object is supplied.
8511 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
8513         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
8514         old ld versions.
8516         Contributed under MIT/X11 license.
8518 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8520         * string-icalls.c (ves_icall_System_String_InternalSplit):
8521         Optimize array allocation by caching the MonoClass of the
8522         array type.
8524         * icall.c (ves_icall_Type_GetMethodsByName): Same.
8526         * reflection.c (mono_param_get_objects): Same.
8528 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8530         * icall-def.h:
8531         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8532         It inflates the given type using the class context.
8534 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8536         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8537         the vtable if it already exists.
8539         * object-internals.h: Add mono_class_try_get_vtable as part of the
8540         internal API.
8542         * reflection.c (mono_type_get_object): Use the MonoObject from the
8543         vtable when possible. Reduces locking contention on reflection heavy
8544         code.
8546 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8548         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8549         g_bit_nth_msf () since that macro is not implemented in eglib.
8551 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8553         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8554         on platforms which do not support it.
8556 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8558         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8560 2008-07-11  Martin Baulig  <martin@ximian.com>
8562         * mono-debug-debugger.h
8563         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8565         * mono-debug-debugger.c
8566         (_mono_debugger_interruption_request): New global volatile variable.
8567         (mono_debugger_check_interruption): New public function.
8569         * threads.c
8570         (mono_thread_current_check_pending_interrupt): Call
8571         mono_debugger_check_interruption().
8572         (mono_thread_interruption_checkpoint_request): Likewise.
8574 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8576         * verify.c: Add more type checks for loaded types. Verify the result
8577         handle from ldtoken.
8579 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8581         * loader.c (field_from_memberref): Don't crash if the field
8582         wasn't found.
8584 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8586         * verify.c: Verify if type and method instantiations
8587         don't have invalid VAR or MVAR arguments.
8589 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8591         * verify.c: Fix double free of function pointer list.
8593 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8595         * object.c (mono_string_to_utf8): Comment the new code as it
8596         breaks under eglib.
8598 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8600         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8602 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8604         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8605           is not throw too many times.
8607         Code is contributed under MIT/X11 license.
8609 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8611         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8612         debugging is turned off.
8614 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8616         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8618 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8620         * class-internals.h, class.c: Added new generic sharing option:
8621         Share only stuff in System.Collections.Generic, which is now the
8622         default.
8624 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8626         * generic-sharing.c, class-internals.h: New function for getting a
8627         generic method in a generic class given the corresponding method
8628         for a different instantiation of the class.  Partly refactored
8629         from mini-trampolines.c.
8631         * class.c: Make sure generic methods have a class_inst if they are
8632         part of a generic class.
8634         * metadata.c (mono_type_stack_size_internal): Handle type
8635         variables.
8637 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8639         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8640         Signifies whether information on the this/vtable/mrgctx variable
8641         is available.
8643 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8645         * object.c, object-internals.h, icall.c: New function
8646         mono_delegate_ctor_with_method(), which does the same as
8647         mono_delegate_ctor(), but takes an explicit method argument
8648         instead of taking the method from the jit info.
8650         * marshal.c: When creating a delegate with an inflated method take
8651         the "this" argument as the target class for the castclass.
8653 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8655         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8656         mono_jit_info_table_find() to perform very badly in some cases.
8658 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8660         * icall.c (type_from_typename): Handle 'string'.
8662         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8663         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8665 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8667         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8669         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8670         number of available managed allocator types.
8672         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8673         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8675 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8677         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8678         which is a low level lock protecting just the 'jit_code_hash' hash table.
8680         * domain.c: Initialize+cleanup jit_code_hash_lock.
8681         
8682 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8684         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8685         after initialization.
8687         * coree.h: Make MonoFixupExe internal.
8689         Contributed under MIT/X11 license.
8691 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8693         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8694         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8695         as well.
8696         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8697         image being loaded is a CLI image and _CorValidateImage gets called.
8699         * coree.h: Add MonoLoadImage.
8701         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8702         instead of LoadLibrary.
8704         Contributed under MIT/X11 license.
8706 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8708         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8709         for any primitive type.
8711 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8713         * object.c (mono_array_new_specific): Optimize this and the other allocation
8714         functions a bit.
8715         
8716         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8717         domains too if mono_dont_free_domains is set.
8719         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8720         whenever to free appdomain data after it has been unloaded.
8722         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8723         
8724 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8726         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8727         (mono_method_get_equivalent_method): Fix a warning.
8729         * object.c (mono_message_init): Avoid looking up array types for each call.
8731 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8733         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8734         call.
8736         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8737         even more.
8739         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8740         each iteration.
8742         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8743         fields of an enum.
8745 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8747         * object.c (mono_value_box): Fix boxing of nullables.
8749 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8751         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8752         mono_module_handle that is defined by the linker; no initialization required.
8753         * coree.h: Remove mono_module_handle, add __ImageBase, update
8754         mono_image_open_from_module_handle.
8755         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8756         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8757         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8758         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8759         to 4 GB away from image base address. IA64 version is not tested but was very
8760         easy to implement and should work if we ever need it.
8761         * domain.c (mono_init_internal): Avoid system error message boxes.
8762         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8763         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8764         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8765         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8766         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8768         Contributed under MIT/X11 license.
8770 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8772         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8773         as part of the private mono API.
8774         
8775         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8776         Do proper argument checking for methods that belong to generic classes.
8777         Do proper type resolution for GMFH/2.
8778         Fixes #377324.
8779         
8780 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8782         * verify.c (do_switch): Fix a memory corruption bug with
8783         the jump index is out of bound.
8785 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8787         * verify.c: Disable debug code.
8789 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8791         * reflection.c (mono_image_get_methodbuilder_token): Use
8792         mono_image_get_methodspec_token_for_generic_method_definition
8793         instead of mono_image_get_memberref_token. We cache more memberef
8794         entries now.
8796 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8798         * verify.c: Inflate exception clause types.
8799         Fixes #402606.
8800         
8801 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8803         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8804         name.
8806         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8808         * reflection.c (mono_image_create_method_token): Same.
8810 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8812         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8813         It does the same as mono_image_get_methodref_token but works on
8814         MethodBuilder.
8816         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8817         and always generate a methodspec. This follows the old behavior and fixes
8818         the regressions in System.Core. 
8820 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8822         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8823         don't event mono_class_get () succeeds. Fixes #402182.
8825 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8827         * metadata-internals.h: Added MonoDynamicImage::methodspec
8828         hashtable to store methodspec tokens created for MethodBuilders.
8830         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8831         MethodBuilders as open instantiations if a methodspec was requested.
8833         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8835         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8837         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8839         Fixes bug #349190.
8841 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8843         * loader.c (method_from_methodspec): Avoid crashing if the
8844         method lookup fails.
8846 2008-06-20  Dick Porter  <dick@ximian.com>
8848         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8849         classes being in a different assembly.  Fixes bug 399184.
8851 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8853         * loader.c (mono_loader_init): Make this callable multiple times.
8854         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8855         the runtime is initialized. Fixes #401755.
8857 2008-06-19  Dick Porter  <dick@ximian.com>
8859         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8860         Fixes bug 349688.
8862 2008-06-19  Dick Porter  <dick@ximian.com>
8864         * socket-io.c:
8865         * icall-def.h: Implement Socket generic Send() and Receive()
8866         methods.  Fixes bug 395168.
8868 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8870         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8872         Contributed under MIT/X11 license.
8874 2008-06-18  Martin Baulig  <martin@ximian.com>
8876         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8877         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8878         set to 80.0.  The debugger <-> runtime interface is now frozen as
8879         well.   
8881         * mono-debug.c
8882         (mono_debug_debugger_version): Bump to 4.
8884 2008-06-18  Martin Baulig  <martin@ximian.com>
8886         * debug-mono-symfile.c
8887         (load_symfile): Don't check the minor version.
8889         * debug-mono-symfile.h: Bump the version number to 50.0.
8891 2008-06-18  Martin Baulig  <martin@ximian.com>
8893         * debug-mono-symfile.c
8894         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8895         minimum required version.
8897 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8899         * reflection.c (mono_custom_attrs_from_property): Fix support for
8900         retriveving cattrs of dynamic inflated generic types.
8902         * reflection.c (mono_custom_attrs_from_event): Same.
8904         * reflection.c (mono_custom_attrs_from_field): Same;
8906         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8908         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8909         Moved to metadata.c.
8911         * metadata.c: New functions to retrive the equivalent field, event
8912         of property from the generic type definition.
8914         * metadata-internals.h: Added new functions from metadata.c.
8916 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8918         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8919         to cached in a mempool is used.
8921         * metadata.c (free_generic_class): In some situations field generic_info type
8922         is not properly dup'ed and leads to double free'ing.
8924         Fixes #400643.
8926 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8928         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8929         this arguments (will be needed later for generic methods).
8930         Collect stats.
8932 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8934         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8935         Create a static RGCTX invoke wrapper for methods which require it.
8937 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8939         * object.c, class-internals.h: New function for checking whether
8940         an individual field is special static.
8942 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8944         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8945         linear search since the table is sorted.
8947         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8948         Fixes #324180.
8950 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8952         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8953         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8955         * gc.c (mono_domain_finalize): Allow an infinite timeout.
8957         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
8958         
8959         * threads.c (mono_thread_request_interruption): Get rid of locking, use
8960         InterlockedCompareExchange to query and modify 
8961         thread->interruption_requested.
8963         * object-internals.h (struct _MonoThread): Change interruption_requested
8964         to a gint32 so it can be modified by atomic operations. Add 
8965         'critical_region_level' from the managed side, change small_id to a guint32,
8966         add new set of 'unused' fields.
8968         * appdomain.c: Bump corlib version.
8970 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
8972         * class.c (mono_class_from_name): Search modules as well. Fixes
8973         #322332.
8975 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8977         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
8978         templates.  Templates are generalized with an additional type_argc
8979         argument.  RGCTX templates have type_argc==0, MRGCTX templates
8980         have type_argc>0.
8982         * domain-internals.h, domain.c: New hash table for looking up
8983         MRGCTXs.
8985         * metadata.c, metadata-internals.h: Rename hash and equal
8986         functions for MonoGenericInst's and make them public.
8988         * class-internals.h: New data structures for the MRGCTX.  Macros
8989         for distinguishing slots in the RGCTX and the MRGCTX.
8991 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8993         * object.c (mono_method_get_imt_slot): Put the same methods of
8994         different instantiations of the same generic interface in the same
8995         IMT slots, to make generic sharing simpler.
8997 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8999         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
9001         * metadata.c (mono_metadata_field_info_with_mempool): Added.
9002         This function works just like mono_metadata_field_info, but
9003         accept a mempool as argument to be used allocating memory.
9005         * marshal.c (mono_marshal_load_type_info): Use new function
9006         to load marshal data into image mempool.
9008 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9010         * class.c (mono_class_inflate_generic_type_with_mempool):
9011         This function allows to inflate a generic type using
9012         a mempool.
9014         * class.c (inflate_generic_type): Take a mempool as argument
9015         and use it to do type dup'ing.
9017         * class.c (mono_class_setup_fields): Field type for generic
9018         generic classes are allocated from the image mempool.
9020         * metadata.c (free_generic_class): Inflated field type is
9021         now allocated in the image mempool.
9023 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9025         * threads.c (thread_cleanup): Free MonoThread::name.
9027 2008-06-12  Marek Habersack  <mhabersack@novell.com>
9029         * appdomain.c (ensure_directory_exists): avoid unnecessary
9030         mkdir(2) calls when the shadow directory already exists.
9031         (mono_make_shadow_copy): copy also satellite assemblies from the
9032         private bin directories.
9034 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9036         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
9037         
9038         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
9039         a page boundary. Fixes #396219.
9041 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9043         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
9044         due to double-checked locking.
9046 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9048         * assembly.c (build_assembly_name): Release memory on failure.
9050         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
9052 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9054         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
9055         memory on failure.
9057 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9059         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
9060         memory on failure.
9062 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9064         * loader.c (field_from_memberref): Check if field signature type is equal
9065         to the non-inflated type of the field. Fixes #398980.
9067 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9069         * assembly.c (mono_assembly_load_from_full): Call 
9070         mono_assembly_load_friends () outside the assemblies lock, since it can
9071         acquire the loader lock. Fixes #323696.
9073         * reflection.c (resolve_object): Inflate the inst with the context for
9074         FieldOnTypeBuilderInst. Fixes #399010.
9076 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9078         * reflection.c (mono_image_get_field_on_inst_token): Don't
9079         inflate the field to encode it's signature. If it's a
9080         VAR or MVAR it should stay that way in the signature.
9081         Fixes #399047.
9083 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9085         * reflection.c (resolve_object): Release memory of inflated types.
9087 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9089         * loader.c (mono_method_get_signature_full): Remove assert about
9090         loading a methodspec to a generic method. We have such methods, such as
9091         System.Threading.Interlocked::CompareExchange<T>.
9092         This assert was removed since it crashes the verifier when it checks
9093         methods calling CompareExchange<T>.
9095 2008-06-10  Marek Safar  <marek.safar@gmail.com>
9097         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
9098         of Type array and not MonoType.
9100 2008-06-10  Marek Habersack  <mhabersack@novell.com>
9102         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
9103         <lupus@ximian.com>
9105 2008-06-10  Martin Baulig  <martin@ximian.com>
9107         * debug-mono-symfile.h
9108         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
9109         changes to the file format, but we were generating incorrect
9110         source file indices in the line number table due to a bug, which
9111         made backtraces report an incorrect source file.
9113 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9115         * mono-debug.c: Moved mono_debug_free_method_jit_info from
9116         mini/debug-mini.c to here.
9118         * mono-debug.c (il_offset_from_address): Free memory from find_method.
9120         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
9121         use it to release structs returned by mono_debug_find_method.
9123 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
9125         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
9126         since it needs to set method->slot for all interface methods.
9128 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9130         * class-internals.h: Forgot to add.
9132 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9134         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
9136         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
9137         Lookup the custom attributes from property_hash.
9139         * reflection.c (mono_save_custom_attrs): Save the custom attributes
9140         in property_hash. Allocate all data using the image mempool.
9142         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
9143         for dynamic_custom_attrs to checks if the image is dynamic.
9145 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9147         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
9148         assemblies array.
9149         
9150         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
9151         runtime functions while holding the domain assemblies lock.
9153 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9155         * verify.c: Reapplied the last bit of the reverted changes.
9157 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9159         * verify.c: Reapplied more of the reverted changes.
9161 2008-06-09  Martin Baulig  <martin@ximian.com>
9163         * debug-mono-symfile.c (load_symfile): Check the major version
9164         first; if it's wrong, don't print the minor version in the error message.
9166 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9168         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
9169         lock instead of the domain lock to avoid deadlocks, since the thread might
9170         already hold the loader lock.
9172         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
9173         (mono_thread_attach): Ditto.
9175         * monitor.c: Use a TLS variable for holding the current thread id instead
9176         of calling pthread_self ().
9177         (mono_monitor_init_tls): New internal function to initialize the TLS
9178         variable.
9179         (mono_monitor_try_enter_internal): Put the owner == id check after the
9180         owner == 0 check.
9182         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
9183         missed optimizations when using gcc-4.3.
9185 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
9187         * reflection.c (mono_dynamic_image_free): Free the memory
9188         used by MonoGenericParam in MonoDynamicImage::gen_param.
9190         * reflection.c (mono_reflection_setup_generic_class): Allocate
9191         container from mempool.
9193         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
9194         container from mempool.
9196 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9198         * threads.c (mono_set_pending_exception): New internal function to set the
9199         pending exception of the current thread.
9200         (mono_thread_get_and_clear_pending_exception): Check for 
9201         thread->pending_exception as well.
9203         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
9205         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
9206         it can trigger a collection.
9208 2008-06-06  Martin Baulig  <martin@ximian.com>
9210         Merged the `debugger-kahalo' branch.
9212         * mono-debug.h
9213         (MONO_DEBUGGER_VERSION): Bumped to 72.
9215         * debug-mono-symfile.h
9216         (MonoSymbolFileMethodIndexEntry): Removed.
9217         (MonoSymbolFileMethodEntry): New public typedef.
9218         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
9219         (MonoSymbolFileSourceEntry): Remove everything except `index' and
9220         `data_offset'.
9221         (MonoSymbolFileMethodEntry): Removed.
9222         (MonoSymbolFileLexicalBlockEntry): Removed.
9223         (MonoSymbolFileLineNumberEntry): Removed.
9224         (MonoDebugLexicalBlockEntry): Removed.
9225         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
9226         removed `num_il_offsets' and `il_offsets'.
9227         (MonoSymbolFile): Replace `version' with `major_version' and
9228         `minor_version'.
9229         (MONO_SYMBOL_FILE_VERSION): Replace with
9230         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
9231         `MONO_SYMBOL_FILE_MINOR_VERSION'.
9233         * debug-mono-symfile.c
9234         (mono_debug_symfile_lookup_location): Add support for the new line
9235         number table format.
9237 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9239         * metadata.c (free_generic_class): Release the inflated
9240         MonoClass of dynamic generic classes if it's not a generic
9241         type definition.
9243 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9245         * verify.c: Reapplied more of the reverted changes.
9247 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9249         * reflection.c (lookup_custom_attr): Clean the cached flag or
9250         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
9251         for SRE types.
9253 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9255         * verify.c: Reapplied a small part of the reverted changes.
9257 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9259         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9261         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
9262         previously in managed code.
9263         (mono_monitor_exit): Ditto.
9264         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
9266         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
9267         the managed definition.
9269 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9271         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
9273 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9275         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
9276         
9277         * monitor.c: Add some micro optimizations.
9279         * icall.c (type_from_typename): Handle 'bool'.
9281 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9283         * verify.c: Implement constructor verification per P III 1.8.1.4.
9284         Fixes #396716.
9286 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9288         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
9289         holding the assemblies lock here too.
9291 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9293         * verify.c: Kill stack_top function.
9295 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9297         * verify.c: Kill stack_get function.
9299 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9301         * verify.c (mono_method_verify): Last change broke the build. Fixed.
9303 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9305         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
9306         more reliable.
9308         * verify.c (mono_method_verify): Inflate params and locals to avoid
9309         mismatch when checking for compatibility.
9311 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
9313         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
9314         Length prefix should be size in bytes. Fix bug #339530.
9315         
9316         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
9317         Length prefix should be size in bytes. Fix bug #339530.
9319         Code is contributed under MIT/X11 license.
9321 2008-06-05  Bill Holmes <billholmes54@gmail.com>
9323         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
9325         Contributed under MIT/X11 license.
9327 2008-06-05  Martin Baulig  <martin@ximian.com>
9329         * mono-debug-debugger.c
9330         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
9332 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
9334         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
9335         while holding the assemblies lock to prevent deadlocks. Handle the case
9336         where the search hook returns NULL but the assembly was still loaded.
9337         Fixes #323696.
9339         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
9340         modify domain state.
9342 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
9344         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
9345         * Makefile.am (pedump_LDADD): Post-process object files and
9346         add dtrace-generated object file, if necessary.
9348         Code is contributed under MIT/X11 license.
9350 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9352         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
9354 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9356         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
9358 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9360         * threads.c: Try to free everything from the delayed free table
9361         when shutting down threads, and set the variable to NULL after the
9362         table is freed so that calling
9363         mono_thread_hazardous_try_free_all() when shutting down the root
9364         domain doesn't crash.
9366 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9368         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
9369         the caller if resulting type was inflated.
9371         * class.c (mono_class_create_from_typespec): Free the MonoType if it
9372         was inflated.
9374         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
9377 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
9379         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
9380         class library tests.
9382         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
9383         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
9384         #396989.
9386 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9388         * domain.c, domain-internals.h: The JIT infos are now freed by the
9389         JIT info table code.  They are freed immediately if there only a
9390         single JIT info table in circulation.  If there is more, the free
9391         is delayed via a queue.
9393         * threads.c, threads-types.h: New hazard pointer function for
9394         freeing all freeable delayed items in one sitting.
9396 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9398         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
9400         * reflection.c (typebuilder_setup_properties): Same.
9402         * reflection.c (typebuilder_setup_events): Same.
9404 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9406         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
9407         and use it for allocating memory.
9409         * reflection.c (mono_marshal_spec_from_builder): Same.
9411         * reflection.c: Change code to use new signatures.
9413         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
9415 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9417         * decimal.c (rescale128): Put back one line which was accidently commented
9418         out.
9419         
9420         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
9421         to cause crashes.
9423 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9425         * reflection.c (mono_reflection_generic_class_initialize): Name must
9426         be always malloc'ed so we can free it later on. Do this for field, property
9427         and event.
9429         * metadata.c (free_generic_class): Free field, property and event names.
9431 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9433         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
9434         instead of g_memdup.
9436         * reflection.c (typebuilder_setup_fields): Same.
9438 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9440         * decimal.c (rescale128): Optimize this function a bit more.
9442 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9444         * metadata.c (free_generic_class): Release some memory from
9445         SRE generic classes.
9447 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9449         * reflection.c (mono_image_get_generic_field_token): No reference
9450         to name is kept, free it.
9452         * reflection.c (mono_reflection_generic_class_initialize): Free
9453         more memory of the inflated field.
9455 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9457         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
9458         code.
9460 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9462         * reflection.c (mono_dynamic_image_free): Release memory used by
9463         MonoDynamicImage::array_methods elements.
9465         * reflection.c (assembly_add_win32_resources): Release memory after
9466         encoding.
9468 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9470         * decimal.c (log2_32): Use an optimized version for this function too.
9471         
9472         * decimal.c (log2_64): Fix this on 32 bit machines.
9474 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9476         * class.c (mono_dup_array_type): Implement allocation using a mempool.
9478         * class.c (mono_metadata_signature_deep_dup): Same.
9480         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
9481         a mempool.
9483         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
9485         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
9487         * metadata-internals.h: Added mono_metadata_signature_dup_full.
9489         * class-internals.h: Update signatures to take a MonoMemPool.
9491 2008-06-02  Dick Porter  <dick@ximian.com>
9493         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
9494         * icall-def.h: Add
9495         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
9496         FormatMessage API to get the error text.  Fixes bug 321827.
9498 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9500         * decimal.c: Add some micro optimizations to make decimal operations faster.
9502 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
9504         * reflection.c (method_encode_clauses): Take a mempool
9505         as parameter and use it to allocate the clause array.
9507         * reflection.c (mono_image_get_field_on_inst_token): Free
9508         the inflated type after encoding it.
9510         * reflection.c (mono_dynamic_image_free): Free each element
9511         of MonoDynamicImage::gen_params.
9513         * reflection.c (reflection_methodbuilder_to_mono_method):
9514         Allocate the generic param array from the mempool.
9515         Allocate signature params from the mempool.
9517         * reflection.c (mono_reflection_generic_class_initialize):
9518         Free inflated fields after been used.
9520 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9522         * icall.c: Reapply the memory leak fixes as they no
9523         longer make mono crash.
9525 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9527         * reflection.c (mono_type_get_object): Don't store the suplied
9528         MonoType with type_hash. A caller which pass a type that
9529         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9530         might end with a pointer to freed memory.
9531         The solution is to use byval_arg or this_arg from the associated
9532         MonoClass of the supplied type.
9534 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9536         * icall.c: Revert the rest of the last change as it breaks the build too.
9538 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9540         * icall.c: Revert a leak fix as it's breaking the build.
9542 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9544         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9546 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9548         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9550 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9552         * icall.c: Fix some memory leaks.
9554 2008-05-29  Dick Porter  <dick@ximian.com>
9556         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9557         async socket operations from the pending list when a socket
9558         closes.  Leaving it until the threadpool services the event
9559         exposes a race condition when a socket descriptor is reused.
9560         Fixes bug 377589.
9562 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9564         * object.c: Fix negative index check for array alocation.
9566 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9568         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9569         This check is performed by the verifier for IL created delegates
9570         and by Delegate::CreateDelegate for programatically created ones.
9571         Fixes #372406.
9573 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9575         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9576         Fix code to use mono_array_size_t instead of int.
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-28 Rodrigo Kumpera  <rkumpera@novell.com>
9584         * icall.c: Added ves_icall_System_Array_GetLongLength and
9585         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9586         arrays.
9588         * icall.h: Export both new functions.
9590         Based on patch by Luis F. Ortiz.
9591         Contributed under X11 license.
9592         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9594 2008-05-28  Martin Baulig  <martin@ximian.com>
9596         The debugger now requires exactly r103463.
9598         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9599         This version is not supported by the debugger, wait for 72.
9601 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9603         * object.h: Changed array related functions to use
9604         mono_array_size_t instead of guint32. Forgot to commit this file.
9606         Patch by Luis F. Ortiz.
9607         Contributed under X11 license.
9608         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9611 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9613         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9614         don't define it. Use the number literal instead.
9616 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9618         * icall.c: Changed array related functions to use
9619         mono_array_size_t instead of guint32.
9621         * icall.c (ves_icall_System_Array_GetLength): Check for length
9622         overflow under MONO_BIG_ARRAYS.
9624         Based on patch by Luis F. Ortiz.
9625         Contributed under X11 license.
9626         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9628 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9630         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9632         Based on patch by Luis F. Ortiz.
9633         Contributed under X11 license.
9634         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9636 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9638         * object.c, object.h: Changed array related functions to use
9639         mono_array_size_t instead of guint32.
9641         Patch by Luis F. Ortiz.
9642         Contributed under X11 license.
9643         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9645 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9647         * object.h: Introduced mono_array_size_t typedef. This must be used
9648         in all places an array length is expected. This is 64bits wide if
9649         MONO_BIG_ARRAYS is enabled.
9651         Patch by Luis F. Ortiz.
9652         Contributed under X11 license.
9653         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9655 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9657         * security-manager.c class.c: Set the class exception info by calling
9658         mono_class_set_failure ().
9660         * class.c (mono_class_get_exception_data): New accessor function.
9661         (mono_class_set_failure): Store exception_data in the property hash.
9663         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9664         the struct as a property.
9666         * loader.c (mono_get_method_full): Store the lookup result for method
9667         tokens in method_cache, the others in methodref_cache to decrease the memory
9668         usage of hash tables.
9670         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9671         (mono_image_init): method_cache is lazy inited now.
9673         * metadata-internals.h (struct _MonoImage): Change method_cache to
9674         a MonoValueHashTable, add a separate methodref_cache.
9676 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9678         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9679           Double.ToString as exposed by Bug #383531.
9681 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9683         * number-formatter.h: Make some tables static.
9685         * class.c (mono_method_set_generic_container): New accessor function.
9686         (mono_method_get_generic_container): Ditto.
9688         * class-internals.h (struct _MonoMethod): Remove rarely used 
9689         'generic_container' field, store it in the property hash instead. Add 
9690         'is_generic' boolean field instead.
9692         * image.c (mono_image_init): Initialize property_hash.
9693         (mono_image_close): Destroy property_hash.
9695         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9696         hold rarely used fields of runtime structures belonging to this image.
9698         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9699         to get/set method->generic_container.
9701         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9702         generic methods.
9704 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9706         * class.c (mono_class_inflate_generic_method_full): Don't increase
9707         mono_stats.inflated_method_count for methods found in the cache.
9709         * threads.c (mono_thread_request_interruption): Add a comment about 
9710         QueueUserAPC ().
9712 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9714         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9715         interface_offsets_packed table.
9716         
9717         * class.c (mono_class_init): Remove some dead code.
9719         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9720         mono_class_setup_vtable () when CAS is active to detect security problems.
9722 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9724         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9726         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9727         parameters as it's irrelevant for delegate checking.
9729 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9731         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9733         * class.c (mono_class_init): Control the creation of a generic vtable using
9734         a global which is true by default, but set to false by the runtime startup code.
9735         
9736         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9737         Disabled for now since it breaks the embedding API.
9738         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9739         (mono_class_setup_methods): Add a memory barrier.
9741         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9742         when mono_class_init () doesn't compute the generic vtable.
9743         
9744 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9745         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9746         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9747         to support call chains (backtrace) in the stat profiler.
9748         * profiler.c, profiler-private.h: Likewise.
9750 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9752         * generic-sharing.c: Init generic class when a method of it is
9753         requested via a runtime generic context.
9755 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9757         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9759         * reflection.c (mono_type_get_object): Add a FIXME.
9761         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9763         * class.c (mono_class_get_method_by_index): New helper function, returning an
9764         entry in the class->methods array.
9766 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9768         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9769         Avoid creating a generic vtable for generic instances as well.
9770         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9771         generic instances.
9773 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9775         * loader.c (mono_get_method_constrained): Inflate the signature
9776         with class context. Fix #325283.
9778 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9780         * object.c (mono_class_create_runtime_vtable): Add a comment.
9782         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9783         where needed.
9784         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9785         (mono_class_setup_vtable_general): Add an assert.
9786         (mono_class_init): Avoid creating a generic vtable for arrays.
9788         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9789         here, let mono_class_init () do that.
9791         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9792         interfaces in mscorlib.
9794         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9795         interfaces. Add some comments.
9796         (mono_class_init): Call mono_class_setup_methods () here since it is no
9797         longer called by mono_class_setup_vtable ().
9799         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9800         not set in class->vtable.
9801         (mono_class_create_runtime_vtable): Reenable the disabled code.
9803         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9804         now as it causes some test failures.
9806         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9807         if using the vtable trampoline. Also remove some strange code which put the
9808         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9809         stuff as it is no longer needed.
9811 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9813         * pedump.c: Give make --verify all option check code as well.
9814         Using --verify code won't check for metadata now.
9816 2008-05-19  Martin Baulig  <martin@ximian.com>
9818         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9820         * mono-debug.c
9821         (_mono_debug_using_mono_debugger): New global variable; it's set
9822         directly by the debugger, so mono_debug_using_mono_debugger() also
9823         works after attaching.
9825 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9827         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9828         as we do double checked locking on MonoClass::runtime_info and
9829         MonoClassRuntimeInfo::domain_vtables.
9831 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9833         * debug-helpers.c (print_field_value): Fix a warning.
9835 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9837         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9838         set in the AOT case.
9840 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9842         * class.c (mono_class_setup_vtable_general): Use memory barriers
9843         as we do double checked locking on MonoClass::vtable.
9845 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9847         * reflection.c (resolve_object): Inflate only if the generic context
9848         is not null. Fixes #389886.
9850 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9852         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9853         instead of g_free.
9855         Code is contributed under MIT/X11 license.
9857 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9859         * class.c: Revert unrelated change.
9861 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9863         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9864         a generic instantiation, use mono_class_from_mono_type instead of playing
9865         with MonoType directly.
9867 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9869         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9870         checks must ignore generic instantiations, so mono_class_has_parent is not
9871         suitable. Fixes #390128.
9873 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9875         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9876         it to avoid registering tokens during metadata generation. Fixes #390023.
9878 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9880         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9881         consistent.
9883         Contributed under MIT/X11 license.
9885 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9887         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9888         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9889         to fixup the EXE image.
9890         (mono_cleanup): Use mono_close_exe_image.
9891         (mono_close_exe_image): New function.
9892         * image.c: Include "marshal.h".
9893         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9894         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9895         counting when the image is loaded outside of mono_image_open_full. Set status
9896         based on GetLastError.
9897         * coree.c: Include required headers. Add init_from_coree.
9898         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9899         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9900         (_CorExeMain): Set init_from_coree.
9901         (CorExitProcess): Only call ExitProcess for now.
9902         (CorBindToRuntimeEx): New stub implementation.
9903         (CorBindToRuntime): New function.
9904         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9905         (MonoFixupExe): ILONLY executables require no fixups.
9906         (mono_set_act_ctx): New function to set activation context.
9907         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9908         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9909         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9910         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9911         as MONO_INTERNAL.
9912         * domain-internals.h: Add mono_close_exe_image.
9914         Contributed under MIT/X11 license.
9916 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9918         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9919         size for generic param and event tables. Fixes #388977.
9921 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9923         * loader.c (mono_method_signature): Use memory barriers because of the double
9924         checked locking pattern.
9926         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9927         aborting or aborted as well. Fixes #376391.
9928         
9929         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9930         existing runtime state in the Suspend handler during shutdown.
9932 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9934         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9936         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9937         which are starting up or shutting down.
9939         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9940         this function never returns if the runtime is already shutting down.
9942         * icall.c (ves_icall_System_Environment_Exit): Update after 
9943         mono_threads_set_shutting_down () signature change.
9944         
9945 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9947         * class.c: Added can_access_instantiation to verify if the instantiation
9948         is visible. Fix access check for nested types as they returned TRUE
9949         before doing type and generic instantiation visibility checks.
9951 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9953         * reflection.c (mono_reflection_create_generic_class): The created type
9954         must have a different container from its TypeBuilder. Otherwise they
9955         will end sharing generic arguments, which is wrong.
9957         Due to the sharing, making a generic instance of the created type using
9958         the TypeBuider generic arguments resulted in the generic type definition
9959         been returned, which is wrong as well.
9961         As a bonus the code was leaking the type_params array. This memory should
9962         be allocated from the image mempool.
9964         This fixes bug #354047.
9966 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9968         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
9969         to here         as they are now used in assembly.c new code.
9970         Added a skipverification flag to MonoAssembly.
9971         New internal function mono_assembly_has_skip_verification.
9973         * assembly.c: New function mono_assembly_has_skip_verification. It checks
9974         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
9975         part of #387274.
9977 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9979         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
9980         needed. Fixes #387034.
9982         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
9984 2008-05-06  Miguel de Icaza  <miguel@novell.com>
9986         * assembly.c (mono_assembly_load_reference): Prevent crash while
9987         disassembling Silverlight 2.0 executables while we still do not
9988         have GACed libraries.
9990 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9992         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9994 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9996         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9997         of the dynamic case. Fixes #387404.
9999 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10001         *verify.c (mono_verifier_is_class_full_trust): If under
10002         verify_all and the verifier mode was not set, only
10003         gac and corlib types are fulltrust. This makes --verify-all
10004         usable to detect unverifiable code, which is the expected
10005         use case.
10007 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10009         * verify.h: Ops, commited the header with debug
10010         enabled.
10012 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10014         * verify.c (merge_stack): Use the new value on unverifiable
10015         stack merges.
10017         * verify.c (verify_type_compatibility_full): Comparison
10018         of nullable types can't use mono_class_is_assignable_from.
10020         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
10021         that makes all verification errors be reported.
10023         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
10024         mono_method_verify.
10026 2008-05-05  Robert Jordan  <robertj@gmx.net>
10028         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
10029         support for value types. See #386415.
10031         * object.c: comments.
10033         Code is contributed under MIT/X11 license.
10035 2008-05-05  Martin Baulig  <martin@ximian.com>
10037         * debug-mono-symfile.h
10038         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
10039         for old pre-terrania symbol files.
10041 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10043         * mono-config.c: Add ppc64 architecture.
10045         Code is contributed under MIT/X11 license.
10047 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10049         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
10050           PPC64 uses function descriptors as well.
10052         Code is contributed under MIT/X11 license.
10054 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
10056         * object.c (compute_class_bitmap): Ignore literal static fields.
10058         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
10059         var has an invalid format.
10060         (describe_ptr): Add some sanity checks for the vtable.
10061         (add_nursery_frag): Clear unused nursery fragments.
10062         (major_collection): Clear all remaining nursery fragments.
10064 2008-05-03  Robert Jordan  <robertj@gmx.net>
10066         * image.c, metadata-internals.h: add thunk_invoke_cache.
10068         * marshal.c, marshal.h: implement
10069         mono_marshal_get_thunk_invoke_wrapper ().
10071         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
10073         Code is contributed under MIT/X11 license.
10075 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10077         * verify.c (do_leave): Empty the stack.
10079 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10081         * class.c (mono_class_is_assignable_from): Variance
10082         doesn't work between reference and value types. For example,
10083         given type C<T+>, C<int32> is not assignable to C<object>.
10084         Break the argument checking loop on first error. 
10086 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
10088         * icall.c : base64_to_byte_array() needs some more strict
10089           check for sequence of '=' characters. Patch by Santa
10090           Marta (http://deee.g.hatena.ne.jp/santamarta).
10092           Contributed under MIT/X11 license.
10093           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
10095 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
10097         * domain.c: Disable LoadLibrary support to fix Win32 build.
10099         Code is contributed under MIT/X11 license.
10101 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
10103         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
10104         to help with cache behaviour.
10106 2008-05-01  Miguel de Icaza  <miguel@novell.com>
10108         * appdomain.c (mono_domain_from_appdomain): Add new accessor
10109         method. 
10111 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
10113         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
10115 2008-05-01  Dick Porter  <dick@ximian.com>
10117         * process.c (process_get_fileversion): Only pass 16 bits of
10118         language ID to VerLanguageName.  Fixes bug 381204.
10120 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10122         * verify.c (mono_method_verify): Fix the comparison
10123         operator for code bounds check.
10125 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10127         * verify.c (mono_method_verify): Check the bounds of
10128         all access of the code array.
10130 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
10132         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
10134 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
10136         * image.c (mono_image_strong_name_position): Fix return value when the rva is
10137         not valid.
10139 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
10141         * loader.c (mono_get_method_from_token, mono_method_signature): Add
10142         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
10143         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
10144         fixup main EXE images when using mono.exe for mixed-mode assembly support.
10145         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
10146         mono_runtime_load.
10147         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
10148         runtime initialization from metadata.
10149         * assembly.c: Remove obsolete ceGetModuleFileNameA.
10150         (mono_set_rootdir): Use mono_get_module_file_name.
10151         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
10152         handles.
10153         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
10154         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
10155         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
10156         MonoCLIImageInfo. Add support for module handles.
10157         (load_cli_header): Update mono_cli_rva_image_map signature.
10158         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
10159         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
10160         (mono_image_rva_map): Add support for module handles.
10161         (mono_image_ensure_section_idx): Add support for module handles.
10162         (mono_image_close): Add support for module handles.
10163         (do_load_header): Add support for module handles.
10164         (mono_image_open_from_module_handle): New function for internal use.
10165         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
10166         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
10167         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
10168         handles.
10169         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
10170         * image.h: Add mono_image_fixup_vtable.
10171         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
10172         support.
10173         * coree.h: New file.
10174         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
10175         unsupported native code.
10176         (mono_marshal_set_callconv_from_modopt): New function splitted from
10177         mono_marshal_get_managed_wrapper.
10178         (mono_marshal_get_managed_wrapper): Use
10179         mono_marshal_set_callconv_from_modopt.
10180         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
10181         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
10182         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
10183         that results in a deadlock when the runtime is loaded in _CorDllMain.
10184         * Makefile.am: Add coree.c and coree.h.
10186         Contributed under MIT/X11 license.
10188 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10190         * generic-sharing.c: Search for type arguments in array element
10191         types as well.
10193 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10195         * class-internals.h, generic-sharing.c: New, small runtime generic context.
10197         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
10199         * object.c: Don't setup the RGCTX when the vtable is created,
10200         because we're setting it up lazily now.
10202 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
10204         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
10205         64 bit support.
10207 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10209         * verify.c (verify_class_for_overlapping_reference_fields): 
10210         If class is under fulltrust allow reference types to overllap
10211         if they have the same RVA.
10213 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10215         * pedump.c: Added new flag valid-only, that makes the verifier
10216         behaves just like --security=validil. It won't fail type load
10217         due to unverifiable restrictions.
10219 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10221         * class-internals.h (struct MonoMethod): Added a verification_success
10222         field to cache verifier executions. Reduced MonoMethod:slot size by
10223         one bit.
10225 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
10227         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
10228         instead of a 'vt' argument to save an indirection and to allow these to be used
10229         for valuetypes.
10230         (scan_vtype): New helper function to scan an area using a gc descriptor.
10231         (mono_gc_wbarrier_value_copy): Implement this.
10232         (handle_remset): Add support for REMSET_VTYPE.
10233         (find_in_remset_loc): Ditto.
10234         (mono_gc_base_init): Allow some debugging options to be controlled through the
10235         use of the MONO_GC_DEBUG env variable.
10236         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
10237         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
10239 2008-04-23  Martin Baulig  <martin@ximian.com>
10241         * domain.c (mono_domain_create): Move the call to
10242         mono_debug_domain_create() down, after allocating the domain id.
10244 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10246         verify.c (verify_class_for_overlapping_reference_fields): Skip
10247         static fields while verifying for overlapping fields as they
10248         don't matter at all.
10250 2008-04-23  Marek Habersack  <mhabersack@novell.com>
10252         * domain-internals.h: added a declaration of
10253         mono_make_shadow_copy.
10255         * assembly.c (mono_assembly_open_full): shadow copying of
10256         assemblies moved to here, so that all the assemblies within the
10257         application domain's private binary directories can be
10258         processed. Fixes bug #380546
10260         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
10261         mono_make_shadow_copy and made non-static. The decision whether
10262         to shadow-copy an assembly is made based on its location - it's
10263         copied if it's in one of the private application domain binary
10264         directories and its different to the target file in the shadow
10265         directory. Fixes bug #380546
10267 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
10269         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
10271         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
10272         types.
10274         * reflection.c (mono_image_create_token): Handle 
10275         Method/ConstructorOnTypeBuilderInst.
10276         (resolve_object): Ditto.
10277         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
10278         so it can be called from resolve_object. Also handle the case when the inflated
10279         class already has its methods setup.
10281 2008-04-21  Martin Baulig  <martin@ximian.com>
10283         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
10285 2008-04-20  Geoff Norton  <gnorton@novell.com>
10287         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
10288         pointer dereference.
10290 2008-04-15  Marek Habersack  <mhabersack@novell.com>
10292         * appdomain.c (try_load_from): if IOMAP is in effect, call the
10293         portability API to look up the assembly file. Fixes behavior in
10294         situations when the application has a bin/ directory, but the
10295         assembly search patch refers to Bin/ (and thus the requested file
10296         name is Bin/SomeLibrary.dll). Fixes bug #379888
10298 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
10300         verify.c (mono_type_is_generic_argument): Extracted this check
10301         from a dozen places to here.
10303         verify.c: Fixed all issues related to boxing generic arguments
10304         and their constraints.
10306 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
10308         verify.c (mono_class_interface_implements_interface): Fix win32 build.
10310 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
10312         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
10313         isn't finished yet. Fixes #363447.
10315 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
10317         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
10318         Fixes #346419.
10320 2008-04-13  Jb Evain  <jbevain@novell.com>
10322         * domain.c: update the 2.1 profile versions.
10323         Merged from the Moonlight 2 branch.
10325 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
10327         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
10328         mscorlibs for the non-refonly case as well.
10330         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
10331         in mono_assembly_load_from_full (). Fixes #378924.
10333 2008-04-11  Geoff Norton  <gnorton@novell.com>
10335         * icall.c: The global extern environ doesn't exist on Mac.  We
10336         need to call NSGetEnviron instead.
10338 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10340         verify.c: Add generic method constraint verification.
10342 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10344         class.c (mono_class_inflate_generic_method_full): Add a long
10345         explanation to the is_mb_open hack. Remove the FIXME.
10347 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10349         * verify.c (mono_method_verify): Mark all unknown opcodes
10350         as invalid. Mark jmp as unverifiable.
10352 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10354         * verify.c: Add code to do type constraint verification on class instances.
10356         * verify.c (mono_verifier_verify_class): Use the type constraint 
10357         verification code.
10359 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10361         * class.c (mono_class_get_field_default_value): Don't pass cindex
10362         as hint to mono_metadata_get_constant_index. The local is not initialized
10363         and should contain garbage most of the time. This could only work
10364         with a lot of luck.
10366 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10368         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
10370 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10372         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
10374         * class.c (mono_class_from_generic_parameter): Save the token of the
10375         generic param in MonoClass::sizes.generic_param_token.
10377         * reflection.c (mono_custom_attrs_from_class): If the class type is
10378         VAR or MVAR retrieve the attributes of the generic param.
10380 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10382         * class.c (mono_class_init): Do class verification if the verifier
10383         is enabled.
10385 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10387         * verify-internal.h: Added mono_verifier_verify_class.
10389         * verify.c: Added mono_verifier_verify_class. It checks for
10390         classes with explicit layout that have overlapping reference fields.
10392         * pedump.c: Init the verifier state prior to verification. Fixed
10393         command line arguments.
10395 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10397         * Makefile.am: Added verify-internals.h, hopefully fix the build.
10399 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10401         * verify-internals.h: Fix a warning.
10403 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10405         * verify-internals.h: New header with the verifier configuration
10406         extracted from mini.c.
10408         * verify.c: Implemented the new functions exported by verify-internals.h.
10410 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10412         * verify.c: Add proper verification of ckfinite.
10414 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10416         * verify.c (do_conversion): Improved error message to something
10417         more meanfull.
10419         * verify.c (check_is_valid_type_for_field_ops): Fix to work
10420         with primitive types.
10422 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10424         * verify.c: Added tail prefix checking. Marked icall
10425         as unverifible.
10427 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10429         * verify.c: Fix the detection of branches to the middle
10430         of an instruction.
10432 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
10434         * verify.c: Implemented verification of volatile. and
10435         unaligned. prefix. Check if a type is valid after retrieving it.
10437 2008-04-01  Dick Porter  <dick@ximian.com>
10439         * process.c (process_get_fileversion): If there's no string block,
10440         set the file language to en_US.  Fixes the other new part of bug
10441         374600.
10443 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
10445         * class.c: New functions mono_method_can_access_field_full and
10446         mono_method_can_access_method_full. They perform type visibility
10447         and type site check.
10449         * class-internal.h: Added exported functions.
10451         * verify.c: Use new functions to implement proper visibility checks.
10453 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
10455         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
10457 2008-03-28  Dick Porter  <dick@ximian.com>
10459         * process.c (process_get_fileversion): Use the first language ID
10460         we see, rather than insisting on an invariant language.  Fixes bug
10461         374600.
10463 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
10465         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
10466         the streams to fix reading of invalid memory later.
10468         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
10469         to ease debugging.
10471 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10473         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
10474         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
10476 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
10477         * threads.h: Added MonoThreadManageCallback type and
10478         mono_thread_set_manage_callback prototype
10479         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
10480         (used to store the mono_thread_manage callback).
10481         * threads.c: Added mono_thread_set_manage_callback, and handle
10482         "MonoThread->manage_callback" in build_wait_tids.
10484 2008-03-26  Dick Porter  <dick@ximian.com>
10486         * process.c (process_get_fileversion): Set FileVersionInfo strings
10487         to Empty when the resource doesn't have the particular info.
10488         Fixes bug 355717.
10490 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
10492         * verify.c (mono_method_verify): Proper prefix validation.
10494 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10496         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
10497         itself in a separate argument instead of throwing them. Fixes #373448.
10499         * appdomain.c: Bump corlib version.
10501 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
10503         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
10505 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
10507         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
10508         version macros.
10510 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10512         * generic-sharing.c, class-internals.h: Code for putting
10513         reflection types into the runtime generic context.
10515 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
10517         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
10518         Fixes #340662. 
10521 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
10523         * verify.c (VerifyContext): Added instruction prefix data to the struct.
10525         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10527         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10529         * verify.c (do_cast): Let the result value keep the boxed status.
10531         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10533 2008-03-17  Jb Evain  <jbevain@novell.com>
10535         * reflection.c: when running on a 2.0 runtime, emit
10536         unconditionally the #~ header version as 2.0, and the
10537         CLI header version as 2.5, for symmetry's sake with csc.
10539 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10541         * class.c: Remove the unused cache_interface_offsets stuff.
10543         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10544         profiler.c: Fix warnings.
10546 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10548         * generic-sharing.c, class-internals.h: Support for putting
10549         methods into the runtime generic context.
10551 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10553         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10554         classes which are generic instances of not-yet finished typebuilders. Fixes
10555         #351172.
10557         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10559 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10561         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10563         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10564         field, replace it with a hash table in MonoDynamicImage.
10566         * reflection.c (inflate_mono_method): Access the generic definition object from
10567         image->generic_def_objects instead of imethod->reflection_info.
10569         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10571         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10572         
10573         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10574         function in reflection.c so it is easier to keep in sync with the dynamic image
10575         creation code.
10577         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10578         mono_image_close ().
10580 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10582         * class.c (mono_class_generic_sharing_enabled): Disable generic
10583         sharing for all architectures except AMD64 and x86 to fix build.
10585 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10587         * verify.c: Use the generic definition MonoGenericContext when available.
10588         Remove code for checking generics instance compatibility in favor of
10589         mono_class_is_assignable_from.
10591 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10593         * marshal.c, marshal.h, metadata-internals.h, image.c,
10594         wrapper-types.h: New wrapper for invoking a shared static method
10595         without having to pass the runtime generic context argument.
10597 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10599         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10601 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10603         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10604         
10605         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10606         create a token from a FieldOnTypeBuilderInst.
10607         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10608         (resolve_object): Ditto.
10610         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10611         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10613 2008-03-14  Martin Baulig  <martin@ximian.com>
10615         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10617         * debug-mono-symfile.h
10618         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10619         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10621 2008-03-10  Martin Baulig  <martin@ximian.com>
10623         * debug-mono-symfile.h
10624         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10625         `lexical_block_table_offset'.
10626         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10627         `lexical_blocks'.
10628         (MonoSymbolFile): Added `version'.
10630         * mono-debug.h
10631         (MonoDebugLexicalBlockEntry): Removed.
10632         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10633         `lexical_blocks'.
10635         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10636         blocks here; the debugger now does this internally.
10638 2008-02-27  Martin Baulig  <martin@ximian.com>
10640         * object.c (mono_runtime_exec_main): Call
10641         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10642         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10644 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10646         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10647         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10649 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10651         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10652         ldftn with a virtual method.
10654 2008-03-13  Geoff Norton  <gnorton@novell.com>
10656         * decimal.c:  Only include memory.h if the platform has it.
10658 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10660         * assembly.c, class.c, metadata-internals.h: make sure public key
10661         tokesns are compared in a case-insensitive way. Also, all
10662         the lookups in the GAC use a lowercase public key token
10663         (gaacutil already does the lowercasing on install). Fixes
10664         bug #369541.
10666 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10668         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10669         and return value.
10671 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10673         * image.c: when someone loads a mscorlib from a file, return the
10674         currently loaded mscorlib (fixes bug #369253).
10676 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10678         * class.c: handle types with no parents by forcing them to have
10679         System.Object as a parent and marking them as broken (this currently
10680         allows the first part of bug #369173 to work as well, likely because
10681         we don't check for typeload exceptions everywhere yet).
10683 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10685         * class.c: more complete check that types belong to corlib
10686         (fixes second part of bug #369173).
10688 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10690         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10691           "inline" to "__inline" before including mono-membar.h.
10692           
10693         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10694           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10695           MSVC builds.
10697         Contributed under MIT/X11 license.
10699 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10701         * verify.c (do_invoke_method): Remove return type validation.
10703         * verify.c (do_ret): Do return type validation at return site instead of
10704         call site.
10706 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10708         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10710         * verify.c: Some todos cleaned and improved a few error messages.
10712 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10714         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10716 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10718         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10719         system types correctly.
10721         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10722         function.
10724 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10726         * assembly.c (build_assembly_name): Fix a warning.
10728 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10730         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10731         the called function takes an object type argument. Fixes storing or
10732         valuetypes across remoting as well as reducing memory usage.
10733         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10734         stfld_remote wrapper caches.
10736 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10738         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10739         is not found.
10741         * reflection.c (mono_image_register_token): New helper function to save
10742         a token->object mapping.        
10744         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10745         managed code.
10747         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10748         one dimension arrays. Fixes #367670.
10749         (mono_reflection_get_type_internal): Ditto.
10751 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10753         * marshal.c: mono_load_remote_field_new() always returns object.
10754         so use the proper signature (fixes bug #366445).
10756 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10757         
10758         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10759         add an 'inline_failure' flag instead.
10761 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10763         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10764         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10765         contains the location of "this", used for exception handling.
10767 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10769         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10770         their size on all platforms for perf reasons.
10772 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10774         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10775         object-internal.h
10777         * object-internal.h: Same.
10779 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10781         * reflection.h: Fix the build I just broke.
10783 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10785         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10786         Test if a token is valid, this remove explicit usage of 
10787         MonoDynamicImage::tokens from the verifier code.
10789         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10791         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10792         instead of direct access to MonoDynamicImage::tokens.
10794 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10796         * verify.c (token_bounds_check): Fix the build I just broke.
10798 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10800         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10802         * verify.c (verifier_load_method): Fixed the errors message.
10804         * verify.c (mono_method_verify): Fixed a debug message.
10806 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10808         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10809         mono-perfcounters.h, class-internals.h: support for predefined
10810         writable counters, query of categories and counters, bugfixes.
10812 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10814         * verify.c (do_refanytype): Verify the refanytype opcode.
10816         * verify.c (mono_method_verify): Use do_refanytype.
10818 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10820         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10822         * verify.c (mono_method_verify): Use do_mkrefany.
10824 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10826         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10827         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10828         implementation.
10830 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10832         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10833         the type load exception.
10835 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10837         * verify.c: Added a few FIXME for method signatures
10839         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10840         of mono_method_get_signature and get vararg call working. Removed unused
10841         checks for return value.
10843         * verify.c (do_refanyval): Verify the refanyval opcode.
10845         * verify.c (mono_method_verify): Implemented verification of arglist and
10846         use do_refanyval.
10848 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10850         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10851         vtypes to marshal.c.
10853         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10854         it works for AOT as well.
10856 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10858         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10859         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10860         the system time is adjusted.
10862 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10864         * icall.c, icall-def.h: use the new time functions (fixes the
10865         non-monotonic behaviour of TickCount).
10867 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10869         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10870         it breaks the build.
10871         
10872         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10873         cattr is not finished yet.
10875 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10877         * verify.c: Proper token validation for field, method and type.
10879 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10881         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10883         * loader.c (method_from_memberref): Generate type load error instead of method missing
10884         if the type is not found.
10886 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10888         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10889         some of the conversions caused the generation of a marshal directive exception.
10891 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10893         verify.c: Report which exception should be thrown by the JIT.
10894         Added a lot of FIXME notes.
10896 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10898         * generic-sharing.c: Runtime generic context slots are not
10899         instantiated on init anymore.  Instead, provide function to do the
10900         instantiating on demand.
10902         * class-internals.h: Added vtable to runtime generic context.
10903         Macros for encoding direct and indirect slot offsets in one
10904         guint32.
10906 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10908         * object.c, generic-sharing.c: Moved some generic sharing code
10909         from object.c to generic-sharing.c.
10911         * generic-sharing.c: Added support for extensible runtime generic
10912         context.
10914         * metadata-internals.h: Two new hash tables in MonoImage for
10915         extensible runtime generic context support.
10917         * domain.c: Unregister generic vtables upon domain unloading.
10919         * image.c: Destroy new hash tables upon image unloading.
10921         * metadata.c: Unregister generic subclasses upon image unloading.
10923         * class-internals.h: New data structure for runtime generic
10924         context template.  New fields in the runtime generic context for
10925         extensible part.
10927         * Makefile.am: Added generic-sharing.c.
10929 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10931         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10932         there is a pending loader exception, raise it.
10934         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10935         same.
10937         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10938         same.
10940         Fixes #363450.
10942 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10944         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10946         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10947         
10948         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10949         ref-only requests for compatibility with MS.
10951 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10953         * reflection.c (mono_custom_attrs_from_method): Don't silently
10954         return an empty list for generic method instances.
10955         (mono_custom_attrs_from_param): Likewise.
10957 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
10958             Raja R Harinath  <harinath@hurrynot.org>
10960         Fix #354757
10961         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
10962         * class.c (mono_class_inflate_generic_method_full): Initialize it
10963         when a fully-open method is instantiated.
10964         * metadata.c (inflated_method_equal, inflated_method_hash): Update
10965         to new field.
10966         * reflection.c (inflate_mono_method): Don't create a temporary context.
10968 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10970         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10971         Compute correct value, to prepare for imethod->reflection_info going away.
10973 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10975         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
10977 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10979         * verify.c: Implement skip visibility flag.
10981 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10983         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
10984         which contains an extra field to tell the kind of exception that should be thrown.
10986         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
10988 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
10990         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10991         'method' is updated.
10993 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10995         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10996         explicit layout as well. Fixes #360375.
10998 2008-02-11  Geoff Norton  <gnorton@novell.com>
11000         * loader.c: Guard and dereference against inflated generic methods
11002 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
11004         * class.c: Include Retargetable spec in assembly name.
11005         * assembly.c: Always include PublicKeyToken spec in assembly name
11006         (with value "null" if assembly is not signed), and include
11007         Retargetable spec.
11008         * icall-def.h: Added icall for Assembly.get_fullname.
11009         * icall.c: Added icall returning the fullname of an assembly.
11011 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
11013         * class.c (mono_class_setup_vtable_general): Add a missing call to
11014         mono_class_setup_methods () which is needed in the AOT case.
11016 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
11018         * verify.c (mono_type_get_stack_name): Added. Return the name for the
11019         stack type of the given MonoType.
11021         * verify.c (verify_type_compatibility_full): Handle the void type.
11023         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
11024         way stack merging works.
11026         * verify.c (store_local): Improved verification message.
11028         * verify.c (do_branch_op): If the merging is invalid, the method
11029         is unverifiable and not invalid. Improved error message.
11031         * verify.c (merge_stacks): Properly merge a boxed valuetype and
11032         a reference type diferent than System.Object. Improved error
11033         message.
11035 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
11037         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
11039         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
11040         type of an enum even if the argument is byref.
11042         * verify.c: Replace all explicit uses of enumtype and enum_basetype
11043         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
11045         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
11047         *verify.c (verify_type_compatibility_full): Make enum types
11048         compatible with their base types.
11050         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
11051         types are compatible for the special case of a boxed valuetype and
11052         System.Object.
11054         * verify.c (verify_stack_type_compatibility): The function
11055         is_compatible_boxed_valuetype was extracted from here.
11057         * verify.c (push_arg): Only set ctx->has_this_store if the method
11058         is not static.
11060         * verify.c (do_ldelem): Fixed a typo in an error message and added
11061         strict check for mixing int32 and native int as the array type
11062         and ldelem type.
11064         * verify.c (merge_stacks): Consider boxed valuetypes in the
11065         compatibility checks.
11067 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
11068         * profiler.h: (MonoGCEvent): Added start-stop the world events.
11070 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11071         *class.c: use_new_interface_vtable_code: renamed the env var to have
11072         a "MONO_" prefix, and fix the logic to enable it by default.
11074 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11075         *class.c:
11076         mono_class_setup_vtable_general: rewrote the way in which interface
11077         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
11078         makes the code more maintainable.
11079         For now the old code is still there, and can be activated setting
11080         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
11082 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
11084         * verify.c: guarded some debug functions around and #ifdef.
11086         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
11088 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11090         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
11091         changes for now since they seem to break too many things.
11093 2008-02-05  Mark Probst  <mark.probst@gmail.com>
11095         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
11096         mono_marshal_find_nonzero_bit_offset): Added macro and function
11097         for finding the byte- and bit-offset of a bitfield within a
11098         struct.
11100 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
11102         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
11103         (mono_marshal_get_struct_to_ptr): Ditto.
11105         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
11106         cctor_signature.
11108 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
11110         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
11111         between methods for non-corlib types.
11113 2008-02-02  Geoff Norton  <gnorton@novell.com>
11115         * loader.c (mono_method_get_param_names): Populate the parameter name for 
11116         generic parameters as well. (Fixes #342536)
11118 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
11120         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
11122         * verify.c (do_invoke_method): Fix for calling with byref structs.
11124         * verify.c (do_cast): push a boxed value type based on the type token and not
11125         the type of stack.
11127 2008-01-31  William Holmes  <billholmes54@gmail.com>
11129         * process.c (process_module_string_read): Check the size returned form 
11130           VerQueryValue to avoid out of memory exception. 
11132 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
11134         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11135         Handle properly modules which are not in the moduleref table. Fixes
11136         #356938.
11138 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
11140         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
11141         the dynamic case which is now in managed code.
11142         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
11144         * marshal.c (mono_string_to_bstr): Fix a warning.
11145         (init_com_provider_ms): Ditto.
11147         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
11149         * exception.c (mono_get_exception_out_of_memory): New helper function.
11151 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
11153         * marshal.c: Add support for BSTR marshalling
11154         using other COM systems.
11156         Code is contributed under MIT/X11 license.
11158 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11160         * object.c (mono_runtime_invoke_array): reverted previous
11161         commit as it breaks the build.
11163 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11165         * object.c (mono_runtime_invoke_array): Verify arguments for
11166         invalid types. Fixes #348522.
11168 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11170         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
11171         non-final virtual calls using call. 
11173         * verify.c (do_invoke): fixed some TODOs.
11175         * verify.c (push_arg): set has_this_store for "ldarga 0".
11177 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
11179         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
11180         which belong to an inflated class. Fixes #356531.
11182 2008-01-26  Robert Jordan  <robertj@gmx.net>
11184         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
11185         which resort to FindFirstFile when a certain error condition
11186         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
11187         Code is contributed under MIT/X11 license.
11189 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
11191         * marshal.c (emit_marshal_string): Fix out string marshalling
11192         to use specified encoding. Fixes #323900.
11194         Code is contributed under MIT/X11 license.
11196 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
11198         * class.c (mono_class_inflate_generic_method_full): Don't modify
11199         iresult->context after cache check.
11201 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
11203         * class.c (mono_class_inflate_generic_method_full): Change the
11204         struct assignments to memcpy for better visibility and add some comments.
11206 2008-01-23  Dick Porter  <dick@ximian.com>
11208         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
11209         procedure, and make it work on windows.
11211 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
11213         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
11214         a MonoReflectionTypeBuilder since it is always of that type.
11216         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
11218         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
11220         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
11221         
11222         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
11224         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
11226         * reflection.c (mono_reflection_create_runtime_class): Remove already created
11227         instantiations from the type cache.
11229 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11231         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
11233         * verify.c (do_unbox_value): push a controled mutability managed pointer.
11235 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11237         * verify.c (do_ldstr): added, verifies if the #US token is valid.
11239         * verify.c (mono_method_verify): removed old TODO
11241 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11243         * verify.c (do_newobj): add visibility check.
11245 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11247         * verify.c (do_load_function_ptr): add visibility check.
11249 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
11250         *class.c:
11251         mono_generic_class_get_class: hook profiler events.
11252         mono_field_get_offset: added to support heap-shot in the new profiler.
11253         *class.h: exported mono_field_get_offset.
11254         * reflection.c:
11255         mono_reflection_setup_internal_class: hook profiler events.
11257 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
11259         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
11260         argument here too and use it to avoid checking for pending exceptions if 
11261         possible.
11263 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
11265         * assembly.c (build_assembly_name): add arg for passing the assembly
11266         flags. Do not consider a PublicKey with value "null" valid.
11267         (mono_assembly_name_parse_full): added boolean argument that will be
11268         set if the assembly name contains a PublicKeyToken spec. Added support
11269         for the Retargetable spec for which only Yes or No are allowed as valid
11270         value. Consider assembly name invalid if Retargetable spec is set, but
11271         either version, culture or public key (token) are not specified.
11272         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
11273         with implementation in assembly.c.
11274         * icall.c (fill_reflection_assembly_name): also copy assembly flags
11275         from MonoAssemblyName.
11276         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
11277         introduced argument for mono_assembly_name_parse_full to know if the
11278         assembly name has a PublicKeyToken spec, and if it has instruct
11279         fill_reflection_assembly_name to use default value for keyToken (if
11280         PublicKeyToken is null).
11282 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11284         * verify.c (mono_method_verify): fixed ovf ops with
11285         float values. They are unverifiable now.
11287 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11289         * class.c (set_failure_from_loader_error): add BadImageException to the
11290         list of exceptions that can cause a type to fail to load.
11292         * class.c (mono_class_get_exception_for_failure): same.
11294 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
11296         * verify.c (in_any_exception_block): added, check if offset
11297         is part of any exception handling clause.
11299         * verify.c (get_stack_type): added VAR and MVAR types.
11301         * verify.c (do_stobj): better error messages.
11303         * verify.c (do_cpobj): added, check cpobj.
11305         * verify.c (do_initobj): added, check initobj.
11307         * verify.c (do_sizeof): added, check sizeof.
11309         * verify.c (do_localloc): added, check localloc.
11311         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
11313 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
11315         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
11316         save_lmf/restore_lmf opcodes.
11318         * threads.c (mono_threads_install_notify_pending_exc): New function to
11319         install a callback notifying the JIT there is a pending exception on a thread.
11320         (mono_thread_request_interruption): Call the new callback.
11321         (mono_thread_get_and_clear_pending_exception): New function to return the
11322         exception pending on a thread.
11324         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
11325         to turn off checking for pending exceptions.
11326         (mono_marshal_get_native_wrapper): Ditto.
11328 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11330         * threads-types.h: Get rid of the unnecessary extern declarations.
11332 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
11334         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
11335         return field from parent class if not private.
11336         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
11337         returns fields from parent class if they are not private.
11338         (method_nonpublic): added function to determine if a given method
11339         should be considered non-public. Returns false for private methods
11340         on parent class, and internal methods from parent on the 1.0 profile.
11341         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
11342         use method_nonpublic function to determine whether method should be
11343         returned.
11344         (property_accessor_public): use newly introduced method_nonpublic
11345         function to determine whether accessor is non-public. 
11346         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
11347         event from parent class if not private. Only return static event if
11348         Static flag is set, and only return static event from parent class if
11349         FlattenHierarchy flag is set.
11350         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
11351         include non-private events from parent class.
11353 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11355         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
11356         warning.
11358 2008-01-16  Wade Berrier <wberrier@novell.com>
11360         * security.c: Add assembly.h header to appease some warnings
11362 2008-01-16  Dick Porter  <dick@ximian.com>
11364         * process.c (process_module_string_read): Remove trailing null
11365         when saving string.
11367 2008-01-16  Mark Probst  <mark.probst@gmail.com>
11369         * class-internals.h: A new data structure describing the layout of
11370         a runtime generic context (MonoRuntimeGenericContextTemplate).
11372         * metadata-internals.h: Added a hash table to MonoDomain that maps
11373         from open generic classes to their runtime generic context
11374         templates.
11376         * object.c: Building of the runtime generic context, including
11377         proper handling of generic type arguments of superclasses.
11378         Building of the runtime generic context according to the template.
11380 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
11382         * class.c (mono_class_setup_fields): Set field.count for generic instances.
11383         Fixes #350856.
11385         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
11386         mono_portability_find_file (). Fixes #325466.
11387         (mono_image_get_public_key): Fix a warning.
11389 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
11391         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
11392         Fixes #353550.
11393         (mono_class_from_name_case): Ditto.
11395 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
11397         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
11398           common storage for the tables used in the System/NumberFormatter class.
11400 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
11402         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
11404 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
11406         * verify.c (get_boxable_mono_type): check if the token is valid.
11408         * verify.c (set_stack_value): changed to add an error if an
11409         invalid type is set on stack. Changed all callers due to signature change.
11411         * verify.c (do_stobj): implement stobj validation.
11413 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11415         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
11416         set container->is_method, it was set earlier.
11418         * metadata.c (type_in_image): Handle MVARs which belong to not finished
11419         generic methods.
11421         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11422         is_method of the generic container to TRUE for methods.
11424 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11426         * metadata.c (type_in_image): Handle type parameters properly.
11428         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
11429         memory ownership of this structure.
11431 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
11433         * verify.c (get_boxable_mono_type): make typedref types been just
11434         unverifiable. check for void type.
11436         * verify.c (do_unbox_any): added, verify opcode unbox.any.
11438         * verify.c (do_load_function_ptr): accept method spec tokens.
11440 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11442         * marshal.c (mono_class_native_size): Always set *align even if this is called
11443         recursively.
11445 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
11447         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
11448         out-of-date.
11450 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
11452         * verify.c: removed some old unused tables. A huge bunch of small fixes
11453         to things found while testing the verifier with mono basic.
11455         * verify.c (dump_stack_value): dump null literal flag to.
11457         * verify.c (verify_type_compatibility_full): fix comparison
11458         for types that have a generic super type.
11460         * verify.c (verify_stack_type_compatibility): fix compatibility
11461         between null literals and reference types. fix compatibility between
11462         boxed valuetypes and object. fix corner case test for enums.
11464         * verify.c (do_cmp_op): proper verification of cgt.un in case
11465         of reference types.
11467         * verify.c (do_invoke_method): fix error message.
11469         * verify.c (do_store_indirect
11471         * verify.c (check_is_valid_type_for_field_ops): proper verification
11472         of managed pointers to valuetypes and boxed valuetypes. proper verification
11473         of null literals.
11475         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
11476         allow token to be a reference type.
11478         * verify.c (do_cast): proper handling of boxes valuetypes.
11480         * verify.c (do_stelem): proper handling of storing a boxed valuetype
11481         in object[].
11483         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
11484         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
11485         fixed the decoding of unbox_any
11487 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11489         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
11491 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
11493         * verify.c (do_newobj): do delegate verification.
11495         * verify.c (verify_delegate_compatibility): perform delegate
11496         verification.
11498         * verify.c (verify_ldftn_delegate): perform tests related to
11499         ldftn delegates.
11501         * verify.c (mono_delegate_signature_equal): perform the
11502         slightly diferent signature comparison required by delegates.
11504         * metadata.c (mono_metadata_type_equal_full): added and exported
11505         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
11506         allows signature only comparison.
11508         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
11509         as MONO_INTERNAL.
11511 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
11513         * verify.c: added a bunch of stack_slot_* functions to
11514         make access to stack slot type easier. This is required to
11515         allow optional flags, like null literal, boxed value and
11516         this pointer.
11517         All access paths to IlStackDesc::stype have been changed 
11518         to use these new funcions.
11519         Removed a bunch of unused functions and cleared all warnings.
11520         This patch introduces the usage of the this pointer and 
11521         boxed value flags.
11523 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
11525         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11527 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11529         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11530         match managed version.
11532         * appdomain.c: Bump corlib version.
11533         
11534         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11535         argument.
11537 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11539         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11540         Set public key token to zero-length byte array if assembly is not
11541         strongnamed.
11543 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11545         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11546         writing a vtype array elem.
11548 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11550         * assembly.c (build_assembly_name): return FALSE if length of token is
11551         not 16 (if not "null").
11552         (mono_assembly_name_parse_full): return FALSE if value of version,
11553         culture, token or key is 0.
11554         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11555         specify whether public key and public key token must be set to default
11556         value (zero-length byte array) if not available. Set versioncompat to
11557         SameMachine. If public key is available or the default is set, then
11558         set PublicKey flag.
11559         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11560         is available, use empty byte array as default value. On the 2.0
11561         profile, use default value for public key token if not set.
11562         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11563         profile, use default value for public key if not set. On the 2.0
11564         profile, use default value for public key token if not set.
11565         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11566         default values for public key and public key token.
11568 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11570         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11571         field to keep it in synch with the managed object.
11573         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11574         delegates. Fixes #351520.
11576         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11577         contains defined memory.
11578         
11579         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11581         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11582         
11583         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11584         of the GC data structures.
11586         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11588         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11589         
11590         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11591         barrier.
11592         (mono_array_clone_in_domain): Ditto.
11593         (mono_array_clone_in_domain): Ditto.
11595         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11596         (cache_culture): Use a write barrier.
11598         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11599         (ves_icall_get_property_info): Ditto.
11601         * object.h (MONO_STRUCT_SETREF): New macro.
11603         * class-internals.h (MonoStats): Add some GC statistics.
11605         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11607 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11609         * exception.c (mono_exception_from_name_two_strings):
11610         Break from loop after method is found.
11612 2008-01-04  Dick Porter  <dick@ximian.com>
11614         * process.c (process_module_string_read): Rename variable to
11615         reflect correct usage, after fixing bug 345972.
11617 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11619         * verify.c (mono_type_create_fnptr_from_mono_method): 
11620         created a MonoType function pointer instance to be used during
11621         verification. The verifier releases this memory at end.
11623         * verify.c (mono_method_is_constructor): extracted repeated
11624         checks for constructor into a single class.
11626         * verify.c (do_push_field): use new extracted method
11627         for constructor check.
11629         * verify.c (do_newobj): same.
11631         * verify.c (do_ldftn): renamed to do_load_function_ptr
11632         and make it verify ldvirtftn too.
11634         * verify.c (mono_method_verify: proper verification
11635         of ldvirtftn. release created MonoMethod instances.
11637 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11639         * verify.c (token_bounds_check): added.
11641         * verify.c (do_ldftn): added.
11643         * verify.c (mono_method_verify): proper verificartion of ldftn.
11645 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11647         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11648         than the table row count. It's the resposibility of the caller to
11649         make the bounds check and raise the correct error.
11651         * metadata.c (mono_metadata_decode_row_col): Same.
11653         * loader.c (mono_get_method_from_token): perform bounds check
11654         on token for methoddef table.
11656 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11658         * icall.c
11659         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11660         assert into a negative result, the managed code already coped with
11661         that.
11663         Some folks on Windows reported this error. 
11665 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11667         * appdomain.c: Bump corlib version.
11668         * icall.c:
11669         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11670         CultureInfo.CreateCulture to create CultureInfo for name.
11671         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11672         create CultureInfo for name. Fixes bug #347174.
11674 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11676         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11677         flags.
11679         * verify.c (is_valid_branch_instruction): allow branching to the
11680         first instruction of the protected block.
11682         * verify.c (is_valid_cmp_branch_instruction): same.
11684         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11685         avoid double initialization.
11687         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11688         detect which cases the eval stack should just be copied.
11690         * verify.c (mono_method_verify): check if the eval stack
11691         is empty when entering a protected block.
11693 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11695         * verify.c: added is_clause_in_range, is_clause_inside_range,
11696         is_clause_nested and verify_clause_relationship. They perform
11697         the verifications stated in P1 12.4.2.7.
11699         * verify.c (mono_method_verify): remove some unused variables,
11700         add the new exception clause checks, add instruction border
11701         checks for protected block start/end, improved some error 
11702         messages and fixed a bug in the way invalid instruction access
11703         is detected.
11705 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11707         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11708         from GC 7.0 if available.
11710         * object.c: Remove an unused define.
11711         
11712         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11714         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11716         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11718         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11720         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11721         to take the same arguments as the other make_descr functions.
11723         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11725         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11726         directly.
11728         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11729         mini.c.
11731         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11732         call to boehm-gc.c.
11734         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11736         * null-gc.c (mono_gc_register_root): Fix a warning.
11738         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11740         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11741         (mono_gc_base_init): Call GC_init ().
11743         * null-gc.c: Define mono_gc_register_root () as a no-op.
11745         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11747 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11749         * verify.c: add prototype for merge_stacks at top
11751         * verify.c (do_switch): added.
11753         * verify.c (merge_stacks): on some cases the stack merging
11754         was not happening properly. Unequal stack sizes at merge
11755         points should be invalid.
11757         * verify.c (mono_method_verify): added more debug info on stack state.
11758         verify switch properly.
11760 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11762         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11763         marshal.h.
11765         * boehm-gc.c marshal.c: Include method-builder.h.
11767         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11769         * marshal.c: Remove some code which is now in method-builder.c.
11771 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11773         * method-builder.c: New file, extraction of the method builder functionality 
11774         from marshal.c.
11776         * marshal.c: Move the mb functions into method-builder.c.
11778         * marshal.h marshal.c: Export some mono_mb_... functions.
11780         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11782         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11783         the caller.
11785         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11787         * loader.c (mono_field_from_token): Ditto.      
11789         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11790         type as well.
11791         
11792         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11793         Fixes #342565.
11795         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11796         a helper function for setting it.
11798         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11800         
11801         * assembly.c: Significally simplify code now that referenced assemblies are 
11802         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11804         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11805         #349952.
11807 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11809         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11810         instructions that were target of branches or are at protected block boundaries.
11812         * verify.c (in_same_block): handle filter clauses.
11814         * verify.c (is_valid_branch_instruction): added. checks the target of
11815         instructions br or brtrue/false.
11817         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11818         binary branch instructions such as beq and bge.
11820         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11821         and made it pin the instruction as been part of the exception block.
11823         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11824         of in_same_block.
11826         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11827         of in_same_block.
11829         * verify.c (do_ret): ret from a protected block is unverifiable and
11830         not invalid.
11832         * verify.c (do_static_branch): verify br and br.s instructions.
11834         * verify.c (merge_stacks): add extra param to support detection
11835         of branches in the middle of instructions.
11836         
11837         * verify.c (mono_method_verify): verify branches and exception blocks
11838         that target the middle of instructions. Proper verification of br and br.s.
11840 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11842         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11843         skip_visibility field.
11844         (reflection_methodbuilder_from_dynamic_method): Ditto.
11846         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11847         registrations. Fixes #348193.
11849         * threads.h: Move the internal mono_thread_get_pending_exception () to
11850         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11852 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11854         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11855         icall registration. Fixes #348193.
11857         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11858         for corlib classes into object. Fixes #349621.
11860 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11862         * icall.c (property_accessor_nonpublic): new function to determine
11863         whether an accessor allows a property to be considered non-public.
11864         Returns false for private accessor(s) from parent class, and internal
11865         accessor(s) from parent on 2.0 profile (and higher).
11866         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11867         to determine whether property should be included if NonPublic flag
11868         is set. Fixes bug #349078.
11870 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11872         * verify.c (init_stack_with_value): added.
11874         * verify.c (mono_method_verify): extracted common
11875         code for exception initialization into init_stack_with_value.
11877         * verify.c (mono_method_verify): initialize the exception
11878         for handler clauses as well.
11880         * verify.c (mono_method_verify): fix the exception clause
11881         ordering rules, it should use handler end offset and not
11882         start offset.
11884 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11886         * rawbuffer.c: remove useless warning.
11888 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11890         * threads.h, threads-types.h: move functions to the correct header
11891         (fixes bug#349952).
11893 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11895         * verify.c (mono_method_verify): proper verification
11896         of exception handling clauses ranges and fallthru in
11897         and out of protected blocks.
11899 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11901         * verify.c (mono_method_verify): fixed compilation issue.
11903 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11905         * verify.c (mono_method_verify): a printf slipped in, changed
11906         to use verifier debug macro.
11908 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11910         * verify.c (is_correct_leave): check for filter clauses.
11912         * verify.c (do_filter): added.
11914         * verify.c (mono_method_verify): property verification of leave.
11917 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11919         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11920         Win32 build, until we figure out how to do the proper thing on
11921         Win32.
11923 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11925         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11926         by the previous patch.
11927         
11928         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11929         the assembly resolve handler for refonly assemblies.
11931 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11933         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11934         Make sure only one thread is allowed to commence shutdown, and
11935         don't allow new threads to be started once shutdown is in
11936         progress.
11938 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11940         * verify.c (is_correct_endfilter): added.
11942         * verify.c (is_unverifiable_endfilter): added.
11944         * verify.c (do_endfilter): added.
11946         * verify.c (mono_method_verify): property verification of endfilter
11947         and fixed a corner case or endfinally.
11949 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11951         * verify.h: new flags to support fail fast of unverifiable code and
11952         do non-strict verification. Non-strict verification is required to
11953         have MS runtime compatibility. There are a huge amount of unverifiable
11954         code that it accepts as verifiable. The strict mode verifies the code
11955         as the specs says.
11956         Non-strict mode will be required in cases where code needs to be
11957         accepted as verifiable but fails under strict mode.
11959         * pedump.c: added support to fail fast and non-strict verification.
11961         * verify.c: added support for both fail fast and non-strict verification.
11963 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
11965         * verify.c (is_correct_endfinally): added.
11967         * verify.c (mono_method_verify): property verification of endfinally.
11969 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11971         * verify.c (in_any_block): check for filter clauses.
11973         * verify.c (is_correct_rethrow): added.
11975         * verify.c (mono_method_verify): property verification of rethrow.
11977         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
11979 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11981         * verify.c (do_throw): added.
11983         * verify.c (mono_method_verify): property verification of throw
11985 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
11987         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
11988         assemblies. Fixes #346425.
11990 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11992         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11993         FieldBuilders.
11995         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11997         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11998         prevent asserts when this is called with a token which might not be valid.
12000         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
12001         lookup_dynamic_token_class with valid_token == FALSE.
12003         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
12005         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
12007         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12008         
12009 2007-12-10  Mark Probst  <mark.probst@gmail.com>
12011         * gc.c: Don't delay threadpool thread finalization unless Mono is
12012         shutting down.
12014 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
12016         * threads.c: turn an assert into a non-fatal warning.
12018 2007-12-09  Robert Jordan  <robertj@gmx.net>
12020         * icall.c (GetVirtualMethod): Add missing argument validation.
12022 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12024         * verify.c (do_cast): added.
12026         * verify.c (mono_method_verify): property verification of castclass and isinst.
12029 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12031         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
12033         * verify.c (do_stelem): added.
12035         * verify.c (mono_method_verify): property verification of stelem.X.
12037 2007-12-07  Mark Probst  <mark.probst@gmail.com>
12039         * class.c, class-internals.h: Introduce an environment variable
12040         (MONO_GENERIC_SHARING) through which the extent of generic code
12041         sharing can be controlled (share all classes, share only corlib
12042         classes, or share nothing).
12044         * object.c: Only create runtime generic context for classes for
12045         which sharing is enabled.
12047 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12049         * verify.c (do_ldelem): refactor it to work with ldelem.any.
12051         * verify.c (mono_method_verify): property verification of ldelem.any.
12053 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12055         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
12056         added ldelem.X opcodes.
12058         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
12060         * verify.c: proper verification of ldelem.X 
12062 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
12064         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
12066 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12068         * verify.c (mono_method_verify): null literal requires special handling,
12069         the value pushed on stack need to be flagged as so.
12071         * verify.c (do_ldelema): Verify ldelema properly.
12073 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12075         * verify.c: Verify ldlen properly.
12077 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
12079         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
12080         to the target object's type. Fixes #346160.
12082 2007-12-05  Dick Porter  <dick@ximian.com>
12084         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
12085         Solaris needs the same workaround as BSD-derived systems.  Fixes
12086         bug 323524, patch by Burkhard Linke
12087         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
12089 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
12091         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
12092         handle to use when error dialog is shown; otherwise, update mask
12093         to show no error dialog when an error occurs.
12095 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
12097         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
12099         * class.c (mono_class_get_field_default_value): New helper function to initialize
12100         field->def_type and field->data.
12102 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
12104         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
12105         the general one.
12107         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
12109         * marshal.c: Avoid depending on delegate->method_info being set.
12111         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
12112         
12113         * object.c (mono_delegate_ctor): Set delegate->method.
12115         * object-internals.h (struct _MonoDelegate): Add 'method' field.
12117         * appdomain.c: Bump corlib version.
12119 2007-11-27  Raja R Harinath  <harinath@gmail.com>
12121         * metadata.c (mono_generic_inst_equal_full): Short-circuit
12122         equality check if we're comparing canonicalized MonoGenericInsts.
12124 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
12126         * class.c (generic_array_methods): Call mono_class_setup_methods () before
12127         accessing class->methods.
12129 2007-11-22  Dick Porter  <dick@ximian.com>
12131         * threads.c: Ensure that the synch_cs is set before trying to use
12132         it.
12134 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
12136         * profiler.c: r89126 broke the statistial profiler, unbreak.
12138 2007-11-22  Martin Baulig  <martin@ximian.com>
12140         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
12142         * mono-debug.c
12143         (mono_debug_debugger_version): Bump to 3.
12144         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
12145         -> mono_debugger_class_initialized().
12147         * mono-debug-debugger.c
12148         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
12150         * class.c
12151         (mono_debugger_start_class_init_func): Removed.
12152         (mono_debugger_class_loaded_methods_func): Added.
12153         (mono_class_setup_methods): Call it here.
12155 2007-11-22  Martin Baulig  <martin@ximian.com>
12157         * mono-debug.c
12158         (mono_debug_add_delegate_trampoline): New public method.
12159         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
12161         * mono-debug.h
12162         (MonoSymbolTable): Added `global_data_table'.
12163         (MonoDebuggerTypeKind): Removed.
12165 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
12167         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
12168         these methods.
12170         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12171         
12172 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
12174         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
12176 2007-11-20  Martin Baulig  <martin@ximian.com>
12178         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
12180         * mono-debug-debugger.c
12181         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
12182         (mono_debugger_remove_breakpoint): Likewise.
12183         (mono_debugger_check_breakpoints): Likewise.
12184         (mono_debugger_register_class_init_callback): New public method.
12185         (mono_debugger_remove_class_init_callback): Likewise.
12186         (mono_debugger_add_type): Likewise.
12188         * mono-debug-debugger.h
12189         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
12191 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
12193         * class.c: more interface implementations needed for the
12194         array enumerator (fixes bug #341112).
12196 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
12198         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
12199         fix ParamName of ArgumentNullExceptions.
12201 2007-11-17  Miguel de Icaza  <miguel@novell.com>
12203         * reflection.c (mono_reflection_encode_sighelper): Generate the
12204         modopts and modreqs.   I have a useless test that crashes monodis,
12205         but that shows the code working.
12207 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
12209         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
12210         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
12212 2007-11-15  Dick Porter  <dick@ximian.com>
12214         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
12215         When joining a thread, it's the thread that's calling Join that
12216         gets WaitSleepJoin state not the target.  Fixes the standalone
12217         test case in bug 334740, and hopefully the whole bug too.
12219 2007-11-15  Dick Porter  <dick@ximian.com>
12221         * process.c: Read file version info from the files pointed at by
12222         process modules, not the current process.  Fixes bug 315969.
12224         Use windows typedef names in some places to fix warnings on the
12225         windows build.
12227 2007-11-15  Mark Probst  <mark.probst@gmail.com>
12229         * image.c, metadata-internals.h: Added a generic_class_cache hash
12230         to MonoImage for looking up generic classes when sharing generics.
12232 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
12234         * sgen-gc.c: warning cleanups.
12236 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
12238         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
12239         inherited properties.
12241 2007-11-14  Mark Probst  <mark.probst@gmail.com>
12243         * object.c, class-internals.h: Added more information to the
12244         runtime generic context.
12246 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
12248         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
12249         instead of just the target method. Generalize the abstract method handling to
12250         handle any non-static method.
12252         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12253         mono_marshal_get_delegate_invoke () signature change.
12255 2007-11-13  Mark Probst  <mark.probst@gmail.com>
12257         * class.c, class-internals.h: Made
12258         mono_type_get_basic_type_from_generic () public.  Fixed member
12259         access check for shared generics.
12261         * loader.c: Don't insert field into field cache if it's part of a
12262         non-inflated generic class.
12264         * domain.c, domain-internals.h: The generic sharing context is now
12265         part of the jit info data structure.  Added two accessor
12266         functions.
12268 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
12270         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
12271         the array Get/Set/Address methods, since the JIT inlines them.
12273         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
12275         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
12276         (mono_image_init): Initialize runtime_invoke_direct_cache.      
12278         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12279         mono_marshal_get_delegate_invoke signature change.
12281         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
12282         an additional argument. Add support for invoking abstract methods.
12284         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
12286         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
12288 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12290         * class.c: Do field layout for open generic classes as well.
12292 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12294         * gc.c, gc-internal.h: Don't finalize threadpool threads with
12295         other objects, because the threadpool is still around.  Put them
12296         in a list instead and after finalizing all other objects in the
12297         root domain shut down the thread pool and then finalize the
12298         threads.  Fixes bug #337383.
12300         * threads.c, thread-types.h: New mono_thread_create_internal()
12301         function for marking a thread with the threadpool flag before it
12302         started.  Set synch_cs to NULL after freeing it.
12304         * threadpool.c: Mark threadpool threads before they start.
12306 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
12308         * reflection.h, reflection.c: don't export random functions
12309         and lazy load dbnull and missing objects.
12311 2007-11-07  Jonathan Chambers <joncham@gmail.com>
12313         * class.c: Initialize COM types if COM interfaces
12314         are present (not just COM classes).
12315         
12316         Code is contributed under MIT/X11 license.
12318 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12319         * reflection.c:
12320         create_dynamic_mono_image: hook module profiler events (dynamic case).
12321         mono_image_basic_init: hook assembly profiler events (dynamic case).
12323 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12324         * profiler.c:
12325         simple_appdomain_unload: completely terminate the profiler
12326         instead of only processing the statistical samples.
12327         simple_shutdown: make sure this is really called exactly once,
12328         even in multithreaded applications, and always listen to
12329         appdomain events.
12330         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
12331         here, the "[un]load" functions will do it.
12332         Fixes bugs #333791 and #325261.
12334 2007-11-07  Geoff Norton  <gnorton@novell.com>
12336         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
12337         rather than depend on __APPLE__.
12339 2007-11-07  Mark Probst  <mark.probst@gmail.com>
12341         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
12343 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
12345         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
12346         UTF16 MonoString. Fix the crash from bug #335488
12348 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
12350         * marshal.c: Correct (for non-Win32 OS) length != size in 
12351         mono_string_from_bstr. Fix #339530.
12353 2007-11-06  Geoff Norton  <gnorton@novell.com>
12355         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
12356         to succeed
12358 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
12360         * process.c: Added run-time GetProcessId API detection for Windows.
12362 2007-11-04  Miguel de Icaza  <miguel@novell.com>
12364         * reflection.c  (mono_param_get_objects): If a parameter has the
12365         attribute [System.Runtime.InteropServices.Optional] we should
12366         set the DefaultValue of the ParameterInfo to be
12367         System.Reflection.Missing instead of DBNull.
12369         See bug #339013.
12371         (mono_get_reflection_missing_object): New method,
12372         returns the System.Reflection.Missing.Value singleton instance.
12374 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12376         * culture-info-table.h : regenerated.
12378 2007-11-02  Jonathan Chambers <joncham@gmail.com>
12380         * icall.c: Use GetEnvironmentStrings on windows
12381         so we are using the same environment block as 
12382         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
12383         #333740.
12384         
12385         Code is contributed under MIT/X11 license.
12387 2007-10-31  Martin Baulig  <martin@ximian.com>
12389         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
12391         * mono-debug-debugger.h
12392         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
12394 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
12396         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
12397         classes.
12399 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
12401         * culture-info-table.h : regenerated.
12403 2007-10-30  Robert Jordan  <robertj@gmx.net>
12405         * icall-def.h, icall.c:
12406         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
12408         Code is contributed under MIT/X11 license.
12410 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12412         * class.c (mono_class_setup_vtable): Find the inflated methods in the
12413         inflated class instead of inflating them again.
12414         
12415         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
12416         dynamic case.
12418         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
12419         Call setup_supertypes () after klass->parent is set.
12420         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
12422         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
12423         for inflated instances of not yet created dynamic generic classes.
12424         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
12425         times from inflated_method.
12426         (methodbuilder_to_mono_method): Ditto.
12428 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
12430         * gc.c: code cleanup and removed old untested option of not creating the
12431         finalizer thread.
12433 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12435         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
12436         creating a jump trampoline for dynamic methods.
12438 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
12440         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
12441         generic TypeBuilders when called from another method of the same type (bug #335131).
12444 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
12446         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
12447         doesn't seem to work perfectly.
12448         
12449         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
12450         called multiple times.
12451         (methodbuilder_to_mono_method): Ditto.
12452         (resolve_object): Inflate FieldBuilder's.
12454 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12456         * string-icalls.c, string-icalls.h, appdomain.c: patch from
12457         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
12458         RemoveEmptyEntries in the string.Split implementation (bug #322375).
12460 2007-10-26  Dick Porter  <dick@ximian.com>
12462         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
12463         Thread initialisation changes
12465 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
12467         * verify.c: fix compatibility check between arrays and System.Array
12469 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
12471         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
12472         too. Fixes #336999.
12474 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12476         * object.c (mono_value_box): Use typed allocation here.
12478 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12480         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
12481         trampoline instead of compiling the method right away.
12483         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
12485 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
12487         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
12488         related fields for dynamic classes. Fixes #334493.
12490 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
12492         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
12493         
12494         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
12496         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
12497         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
12499         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
12501         * reflection.c (create_generic_typespec): Initialize klass->generic_container
12502         if needed.
12503         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
12505 2007-10-18  Jonathan Chambers <joncham@gmail.com>
12507         * marshal.c: Use correct key when removing item
12508         from ccw_hash.
12509         
12510         Code is contributed under MIT/X11 license.
12512 2007-10-17  William Holmes  <billholmes54@gmail.com>
12514         *marshal.c: Adding a case to marshal booleans to U1
12516         Code is contributed under MIT/X11 license.
12518 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
12520         * class.c (mono_class_from_name): Search the modules compromising dynamic
12521         assemblies. Fixes #331601.
12523 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
12525         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12526         exception if the type name contains an assembly component. Fixes #334203.
12528         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12529         modules inside dynamic assemblies. Fixes #334200.
12530         
12531         * reflection.c: Set image->public_key and image->public_key_length;
12533         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12534         fields.
12536         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12537         
12538 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12540         * metadata.c: Implemented correct comparing of generic classes.
12541         An inflated generic class can be equal to a non-inflated one if it
12542         is inflated with generic type variables as type arguments.  Fixes
12543         bug #333798.
12545 2007-10-15  Dick Porter  <dick@ximian.com>
12547         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12548         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12549         81646.
12551         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12552         instead of a monitor lock.  This means that monitor_try_enter and
12553         co can set the thread state safely.
12554         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12555         thread_interrupt_requested, so interrupt actually works.
12557         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12558         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12559         state accessor function
12561 2007-10-15  Martin Baulig  <martin@ximian.com>
12563         * mono-debug.h
12564         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12565         the debugger with the current runtime.
12567 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12569         * object.c, object-internals.h: added the ability to set a single
12570         trampoline for all the slots in a vtable.
12572 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12574         * marshal.c: deal with a possible race condition during multicast
12575         delegate invocation.
12577 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12579         * class.c: ensure value type methods don't have the synchronized
12580         flag set.
12582 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12584         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12585         breaks the build.
12587 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12589         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12590         to take an options parameter so that empty entries can be removed during
12591         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12593 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12595         * marshal.c: make sure we don't store the signature from a dynamic
12596         method into the runtime invoke cache (bug #327189).
12598 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12600         * marshal.c: make sure the wrapper methods are properly initialized.
12602 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12604         * metadata.c, metadata-internals.h: Generalized
12605         mono_type_stack_size() to mono_type_stack_size_internal() which
12606         takes an additional argument specifying whether it allows open
12607         types.
12609 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12611         * verify.c (do_invoke_method): handle typedbyref params
12612         correctly and check for unverifiable return values.
12614         * verify.c (do_newobj): fix a warning.
12616 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12618         * verify.c: don't tread typedbyref as allways unverifable,
12619         so uses, like (ld/st)loc.0 are valid. verify for the cases
12620         that it matters, like boxing related operations.
12622 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12624         * verify.c: add verification of the newobj opcode. verification
12625         of delegate instantation still missing due ldftn and virldftn not
12626         pushing the function type on stack
12628 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12630         * class-internals.h: Runtime generic context data structure
12631         definition.
12633         * object.c: Initialization of runtime generic context at runtime
12634         vtable creation time.
12636 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12637         * class.c (mono_class_create_from_typedef,
12638         mono_class_from_generic_parameter, mono_ptr_class_get,
12639         mono_fnptr_class_get, mono_bounded_array_class_get)
12640         * domain.c (mono_domain_create, mono_domain_free)
12641         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12642         * image.c (do_mono_image_load, mono_image_close):
12643         Hooked up load-unload profiler events.
12645 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12647         * domain.c: track statistics about the actual amount of native code
12648         allocated.
12650 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12652         * class.c: the valuetype enumerators don't have the additional
12653         supertypes interfaces.
12655 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12657         * class.c: need more interfaces setup for the IEnumerator<T>
12658         object created for arrays (tests/ienumerator-interfaces.2.cs).
12660 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12662         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12664 2007-10-05  Alp Toker  <alp@atoker.com>
12666         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12667         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12668         #315863.
12670 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12672         * verify.c (verify_type_compatibility_full): verification of
12673         compatibility improved, validates correctly non-strict checks between
12674         native int and I4 types different than (unsigned)int32.
12676         * verify.c (do_store_indirect): added, do all verification of
12677         ldind.X opcodes. 
12679         * verify.c (get_load_indirect_mono_type): renamed to
12680         get_indirect_op_mono_type, as it now returns the MonoType for 
12681         ldind.X and stind.X opcodes.
12683 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12685         * reflection.c: Fix the encoding of generic type definition for
12686         TypeBuilders.
12688         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12689         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12690         be made. Typespec check is done prior to typeref cache lookup.
12692         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12693         mono_image_typedef_or_ref_full.
12695         * reflection.c (encode_generic_class): encode the generic class
12696         directly instead of calling encode_type.
12698         * reflection.c (encode_type): encode the generic type definition
12699         MonoClass as a generic instantiation.
12701         * reflection.c (create_typespec): cache typespec tokens in
12702         the assembly->typespec cache. Don't create typespec for a generic
12703         instance MonoClass. Create typespec for the generic type defintion.
12705         * reflection.c (create_generic_typespec): encode the generic
12706         class directly instead of calling encode_type.
12708         * reflection.c (mono_image_create_token): encode the generic
12709         type definition not using a typespec for MonoType instances.
12712 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12714         Fix #328812
12715         * class.c (mono_image_init_name_cache): Don't return nested
12716         'protected internal' classes.
12717         (mono_class_from_name_case): Likewise.
12719 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12721         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12722           common function used by both DefaultConfig in System.dll and
12723           InternalConfigurationHost in System.Configuration.dll.
12725 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12727         * class.c: automatically add to vectors only a few essential explicit
12728         generic interfaces. The rest of the interfaces that arrays should
12729         provide are currently implicitly added (but still not lazily, see the
12730         design in the discussion of bug#325495 for the details of what is
12731         needed for that). Additionally, implicit interfaces are assigned the
12732         same vtable slot as the explicit interfaces (as they are compatible):
12733         this enables huge memory savings since we don't need to instantiate
12734         as many memthods and as large vtables anymore. Also, Since
12735         GetEnumerator<T> returns an instance of a type that is required to
12736         support a similarly large set of interfaces as arrays, we add
12737         implicit interfaces and interface offset sharing support to those
12738         types, too. This change adds all the required interfaces so that
12739         the anonarray.cs test case in the bug report works (we don't add
12740         all the interfaces to arrays of arrays 3-level deep and more because
12741         of the memory requirements explained in the bug and since they are much
12742         less common: the lazy-loading support will enabled them to work, too).
12744 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12746         * verify.c (merge_stacks): major clean up, all type compatibility
12747         checks are done by verify_type_compatibility. This fix my earlier lack
12748         of understanding of the CLR type system and merge_stacks no longer looks
12749         scary.
12751         * verify.c: fixed some bad spelling.
12753 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12755         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12756         a given stack slock.
12757         
12758         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12759         verify_type_compatibility_full. This removed a near indentical function and fixed
12760         handling of Int32 and IntPtr across all opcodes.
12762 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12764         * class.c: only vectors have the additional generic interfaces.
12766 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12768         * mono-config.c: Use g_strcasecmp instead of
12769         strcasecmp like everywhere else to fix
12770         compilation with MSVC.
12771         
12772         Code is contributed under MIT/X11 license.
12774 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12776         * object.c, object-internals.h: refactored the IMT code to enable
12777         building a single slot at a time and lazily creating the IMT trampolines
12778         and thunks.
12780 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12782         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12784         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12785         Fixes #328501.
12786         
12787 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12789         * loader.c (method_from_methodspec): Rearrange to avoid
12790         un-necessary exposition.  Don't assert out if the method's
12791         declaring type is a generic type definition.
12793 2007-09-28  Martin Baulig  <martin@ximian.com>
12795         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12797 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12799         * class-internals.h: optimize field layout of MonoClass to
12800         requires less cachelines at runtime and save a few bytes on 64 bit
12801         systems.
12803 2007-09-28  Jb Evain  <jbevain@novell.com>
12805         * reflection.c: when encoding type names in custom attributes,
12806         if the type is a closed generic type, its generic arguments
12807         have to be serialized as AssemblyQualifiedName, so that when
12808         they are deserialized, it's possible to re-create them properly.
12809         Fixes #329450.
12812 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12814         * object.c, class-internals.h: added delegate-creation counter.
12816 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12818         * class.c: cleanup of the code that synthetizes interfaces for
12819         arrays in 2.0: saves quit a bit of corlib mempool memory.
12820         Code to fix bug #325495 ifdeffed out for now until the issues
12821         with memory usage and O(n^2) behaviour are fixed.
12823 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12825         * marshal.c: when possible, do not duplicate the name of the methods
12826         in the method builder and in the generated MonoMethod.
12828 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12829         * verify.c: added support for type checking ldind_* opcodes.
12831 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12833         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12834         which is used to distinguish the fully open instantiation of a TypeBuilder
12835         with the rest. This temporary hack is required to restore the property that
12836         the fully open instantiation is the same type of the generic type definition.
12838         * class-internals.h (mono_generic_class_is_generic_type_definition):
12839         new function as part of the internal API.
12841         * class.c (inflate_generic_type): return NULL when the generic inst is
12842         fully open. The fully open generic type is now the same as the generic type
12843         definition for non TypeBuilder types.
12845         * class.c (mono_generic_class_get_class): removed assert since it is
12846         no longer valid, gklass->cached_class can point to the generic type definition.
12848         * class.c (mono_generic_class_is_generic_type_definition): new.
12850         * metadata.c (mono_generic_class_hash): added is_tb_open field
12851         to the hash calculation.
12853         * metadata.c (free_generic_class): if the generic class is associated
12854         with the generic type definition, its field will come from the mempool and
12855         must not be freed.
12857         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12858         new, this function identifies the corner case of a TypeBuilder fully open
12859         instantiation.
12861         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12862         for lookup. Set gclass->cached_class to be the container class in case of
12863         the fully open instantiation of non TypeBuilder types.
12865         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12866         to compare generic classes.
12868         * reflection.c (method_encode_methodspec): remove assert that
12869         no longer is valid.
12871         * reflection.c (mono_reflection_generic_class_initialize): add
12872         an aditional assert to ensure the proper type is used.
12874 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12876         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12877         to enjoy it.
12879 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12881         * verify.c (push_arg): Fixed support for ldarga
12882         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12883         MonoType used as first arg in case of instance calls.
12885 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12887         * verify.c: Support for verifying VAR and MVAR types, 
12889 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12891         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12892         accessors correctly.
12894 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12896         * threads.c: support OSX and other systems in
12897         mono_thread_get_stack_bounds (bug #328026).
12899 2007-09-25  Martin Baulig  <martin@ximian.com>
12901         * mono-debug.h
12902         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12904 2007-09-24  Martin Baulig  <martin@ximian.com>
12906         * mono-debug.h
12907         (MonoDebugClassEntry): Moved the definition of this struct into
12908         mono-debug.c to make it private.
12910         * mono-debug.c
12911         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12912         type table per symbol file, we don't need to store the symfile id
12913         any longer.
12915 2007-09-24  Martin Baulig  <martin@ximian.com>
12917         Create one type table per symbol file, since a `MonoClass *' gets
12918         invalid when its image is unloaded.
12920         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12921         (MonoDebugHandle): Added `type_table'.
12923 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12925         * mempool.c, mempool.h: added mono_mempool_new_size () API
12926         to be able to specify a smaller initial size for the pool.
12927         Adjusted the code to slowly increase pool size before using
12928         the previous default size.
12929         * image.c: use a small initial size for image mempools.
12931 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12933         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12934         Fixes ##320990.
12936         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12937         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12939 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12941         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12942         free. Fixes #327438.
12944 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12946         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12947         generic instantiations, etc.
12948         <MONO_TYPE_ARRAY>: Likewise.
12950 2007-09-21  Martin Baulig  <martin@ximian.com>
12952         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12953         these structs were never defined.
12954         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12956 2007-09-21  Martin Baulig  <martin@ximian.com>
12958         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
12960 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
12962         * image.c: removed the guid hash tables: we can get the same info
12963         without the additional memory usage hit (partially fixes also bug #327052).
12965 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12967         * profiler.h, profiler-private.h, profiler.c: add a new profiler
12968         event to handle unloading methods. After the event is called, the
12969         corresponding MonoMethod* must be considered invalid.
12970         * loader.c (mono_free_method): call the new mono_profiler_method_free
12971         event.
12973 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12975         * domain-internals.h: New flag in MonoJitInfo which marks shared
12976         generic methods.  New hash table (shared_generics_hash) in
12977         MonoDomain to keep track of shared generic methods.  Prototypes
12978         for functions to register and lookup shared generic methods.
12980         * domain.c: Support for registering and looking up shared generic
12981         methods via a hash table (shared_generics_hash) in MonoDomain.
12983         * class-internals.h: New exception to signal failure of shared
12984         compilation of a generic method.  New counters for generics
12985         sharing in MonoStats.
12987 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12989         * image.c, metadata-internals.h: don't keep a file descriptor open
12990         for loaded assemblies (bug#325988).
12992 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12994         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12995         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12996         use the corresponding datatypes.
12997         (type_in_image): Update to changes.
12998         (CleanForImageUserData): Simplify.
12999         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
13000         Avoid quadratic behaviour in handling the "stolen" list by
13001         separating the filter predicate out, and by prepending the stolen
13002         items rather than appending them.
13003         (steal_ginst_in_image): Likewise.
13004         (mono_metadata_clean_for_image): Update to changes.
13006 2007-09-19  Martin Baulig  <martin@ximian.com>
13008         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
13010 2007-09-19  Martin Baulig  <martin@ximian.com>
13012         * mono-debug.c (mono_debug_cleanup): Don't call
13013         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
13015 2007-09-19  Raja R Harinath  <harinath@gmail.com>
13017         Fix crash on 'make run-test' in mcs/errors
13018         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
13019         Avoid more potential allocations in mono_class_from_mono_type.
13020         (ginst_in_image): Update to changes.
13021         (gclass_in_image): Rearrange slightly.
13023 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13025         * class.c (mono_class_init): Move the code that sets up class->methods to 
13026         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
13028         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
13029         canonical instance of an inflated generic signature.
13030         (mono_type_create_from_typespec): Remove an invalid free.
13032         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
13034 2007-09-18  Marek Habersack  <mhabersack@novell.com>
13036         * domain-internals.h: added a declaration of the
13037         mono_assembly_load_full_nosearch internal function.
13039         * assembly.c (mono_assembly_load_with_partial_name): use
13040         mono_try_assembly_resolve return value properly.
13041         (mono_assembly_load_full_nosearch): copied the function body from
13042         mono_assembly_load_full, without the code to invoke assembly
13043         search hooks.
13044         (mono_assembly_load_full): calls the above new function and if the
13045         assembly is not resolved, invokes the search hooks.
13047         * appdomain.c (mono_runtime_init): restore the global postload
13048         assembly search handlers.
13050 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13052         * class.c (mono_class_init): Make sure class->methods and class->properties
13053         are never NULL in the generics case.
13055         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
13057 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
13059         * metadata.c (free_generic_class): Disable some code to fix the build.
13061         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
13063         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
13064         from the image mempool.
13066         * metadata.c (free_generic_class): Free more data from the inflated class.
13068         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
13070         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
13071         mempool.
13072         (mono_type_create_from_typespec): Ditto.
13074         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
13075         MonoImage to the caller.
13076         (mono_init_internal): Save the opened image in a global variable.
13077         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
13079         * reflection.c (resolve_object): Fix a leak.
13081         * metadata.c: Fix the freeing of data in the generics caches.
13082         
13083         * metadata.c (free_generic_inst): Comment this out to fix the build.
13084         (free_generic_class): Ditto.
13086         * metadata.c: Free cached generic methods, instantinations and classes when
13087         they are removed from the caches.
13088         (mono_metadata_free_type): Free the type itself.
13090         * class.c: Free the result of mono_class_inflate_generic_type () in a few
13091         places.
13093 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13095         * boehm-gc.c: restrict managed allocs to __thread supporting
13096         architectures.
13098 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
13100         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
13101         (mono_generic_class_get_class): Fix a leak.
13103         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
13104         mono_metadata_free_type ().
13105         (mono_metadata_inflate_generic_inst): Fix a leak.
13107 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13109         * mono-debug.c (free_header_data): Fix a leak missed earlier.
13111         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
13112         mempool.
13114         * mono-debug.c (mono_debug_close_image): Fix call to 
13115         g_hash_table_remove ().
13117 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13119         * icall-def.h: redirect all the string ctor to the managed
13120         CreateString () methods.
13121         * string-icalls.c, string-icalls.h: removed dead code for string
13122         ctors and icalls.
13124 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13126         * mono-debug.c: Fix memory leaks.
13128 2007-09-14  Jonathan Chambers <joncham@gmail.com>
13130         * threads-types.h: Implement mono_hazard_pointer_set and 
13131         mono_hazard_pointer_clear macros using do/while(0) to fix
13132         compilation with MSVC.
13133         
13134         Code is contributed under MIT/X11 license.
13136 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13138         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
13139         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
13141 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13143         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
13144         icalls.
13146 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13148         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
13149         managed-code allocated as well.
13151 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13153         * class.c (mono_class_is_assignable_from): Add support for generic variance.
13155 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13157         * boehm-gc.c: fixed the build after the AOT changes.
13159 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13161         * wrapper-types.h: Add an ALLOC wrapper type.
13163         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
13164         reference managed allocator methods.
13166 2007-09-12  Marek Safar  <marek.safar@gmail.com>
13168         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
13169         of Type array and not MonoType, a fix suggested by Hari.
13170         
13171 2007-09-12  Jonathan Chambers <joncham@gmail.com>
13173         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
13174         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
13175         
13176         Code is contributed under MIT/X11 license.
13178 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13180         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
13182 2007-09-12  Marek Habersack  <mhabersack@novell.com>
13184         * image.c (do_mono_image_open): if assembly file fails to open and
13185         MONO_IOMAP is in effect, try to find the path in a
13186         case-insensitive way.
13188         * appdomain.c (mono_runtime_init): do not install postload hooks -
13189         tests show that MS.NET doesn't use anything of that sort to
13190         trigger the AppDomain.AssemblyResolve event.
13191         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
13192         made non-static.
13193         (mono_runtime_init): init portability helpers here.
13195         * assembly.c (mono_assembly_load_with_partial_name): if other   
13196         attempts fail, trigger the AppDomain.AssemblyResolve event handler
13197         to resolve the assembly.
13199         * domain-internals.h: added mono_try_assembly_resolve and marked
13200         it as internal.
13202 2007-09-11  Jb Evain  <jbevain@novell.com>
13204         * object-internals.h (MonoReflectionDynamicMethod): add
13205         a `MonoReflectionType *owner` field. The owner is used
13206         * reflection.c:
13207         (mono_reflection_create_dynamic_method): use the owner of the dynamic
13208         method as the class declaring the dynamic method.
13209         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
13210         dynamic method to the declaring type of the methodbuilder.
13212 2007-09-11  Mark Probst  <mark.probst@gmail.com>
13214         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
13215         rules for calling methods via reflection.
13217 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
13219         * reflection.c (resolve_object): Add support for MonoGenericClass. 
13220         Inflate MonoType's.
13222 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
13224         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
13225         provide a managed method that does fast allocations without needing
13226         a managed->unmanaged transition. Boehm GC implementation currently
13227         enabled for ptrfree objects on sane architectures.
13229 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13231         * marshal.c, marshal.h: exported a couple of useful functions and
13232         added mono_mb_get_label () to easily handle backward branches.
13234 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
13236         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
13238 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13240         * loader.c (find_method): Fixed the regression introduced while
13241         fixing bug #81466.
13243 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
13245         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
13246         well.
13247         
13248         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
13249         icall.c reflection.c: Pass a MonoGenericContext argument to 
13250         mono_lookup_dynamic_token ().
13252         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
13253         #82744.
13254         
13255 2007-09-09  Robert Jordan  <robertj@gmx.net>
13257         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
13258         for generic methods.
13260         * object.c (mono_object_get_virtual_method): Handle generic methods.
13261         Fixes bug #78882.
13263         Code is contributed under MIT/X11 license.
13265 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13267         * image.c: fix locking in mono_image_load_file_for_image ().
13269 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
13271         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
13272         used only as a cache: added an icall to fill it.
13274 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
13276         * reflection.h: exposed mono_reflection_free_type_info
13277         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
13278         since mono_reflection_bind_generic_parameters makes a copy of it.
13279         * reflection.c (free_type_info): subinfos should be freed.
13280         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
13281         made non static.
13282         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
13283         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
13284         this fixes #82695 and #81726.
13285    
13287 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
13289         * process.h, process.c:  added support for user profile/info in
13290           ProcessStartInfo. For now only Windows works.
13292 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13294         * metadata.c: consider the generic arguments when comparing
13295         signatures (bug #82614).
13297 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13299         * cil-coff.h, image.c: updated assembly loader to cope with the
13300         PE32+ 64 bit file format.
13302 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13304         * assembly.c, class.c, domain.c, loader.c: remove useless
13305         inclusion of cil-coff.h.
13307 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
13309         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
13310         if interface is marked with CoClassAttribute. 
13311    
13312         Code is contributed under MIT/X11 license.
13314 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13316         * sgen-gc.c: ensure no object from the to space is copied again or finalized
13317         if it's seen twice in major collections.
13319 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13321         * sgen-gc.c: big objects are not copied to the gray area, but they
13322         need to be considered for scanning, too, if they are brought alive
13323         by an object ready for finalizations or a survived one.
13325 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13327         * sgen-gc.c: properly account the number of disappearing links when
13328         they are nullified.
13330 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13332         * sgen-gc.c: share the code to scan the registered roots between the
13333         different types of collections.
13335 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13337         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
13339 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13341         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
13342         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
13344 2007-08-28  Mark Probst  <mark.probst@gmail.com>
13346         * security-manager.c (mono_security_manager_get_methods):
13347         LinkDemandSecurityException now has 2 arguments instead of 3.
13349 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
13351         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
13352         platforms which need it.
13354 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13356         * sgen-gc.c: unregister thread data structures with a pthread_key_t
13357         dtor.
13359 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13361         * threads.c: free the thread static data on thread exit.
13363 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
13365         * class.c: walk the hierarchy to find the generic definition for
13366         a class (fixes runtime part of bug #82498).
13368 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13370         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
13371         ...
13373         * image.c (mono_image_close): Here. Hopefully fixes #82510.
13375 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13377         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
13379 2007-08-24  Robert Jordan  <robertj@gmx.net>
13381         * appdomain.c: don't perform the ':'->';' substitution on Win32.
13383 2007-08-24  Jb Evain  <jbevain@novell.com>
13385         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
13386         for byref types.
13388 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13390         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
13391         #82286.
13393 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13395         * assembly.c: Fix a warning.
13396         
13397 2007-08-23  Marek Habersack  <mhabersack@novell.com>
13399         * appdomain.c: parse the <runtime> section looking for the probing
13400         element with the 'privatePath' attribute, which sets additional
13401         directories in which the runtime should look for assemblies.
13403 2007-08-23  Robert Jordan  <robertj@gmx.net>
13405         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
13406         Fixes #82499.
13408 2007-08-23  Martin Baulig  <martin@ximian.com>
13410         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
13411         _mono_debug_init_corlib() and remove it from the header file.
13413 2007-08-23  Martin Baulig  <martin@ximian.com>
13415         * mono-debug-debugger.c
13416         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
13417         don't notify the debugger about it.
13419         * mono-debug-debugger.h
13420         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
13422 2007-08-23  Robert Jordan  <robertj@gmx.net>
13424         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
13425         Code is contributed under MIT/X11 license.
13427 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13429         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
13431 2007-08-22  Martin Baulig  <martin@ximian.com>
13433         * mono-debug.c: Store debugging info on a per-domain basis and
13434         free it on domain unload.  Add support for unloading symbol files.
13436         * mono-debug.h
13437         (MonoDebugList): New typedef.
13438         (MonoSymbolTable):
13439         - add `data_tables and `type_table'.
13440         - replace 'symbol_files' and `num_symbol_files' with a
13441           `MonoDebugList *'.
13442         (mono_debug_data_table): Removed.
13443         (mono_debug_list_add): New public function.
13444         (mono_debug_list_remove): New public function.
13445         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
13446         (mono_debug_init_2_memory): Renamed into
13447         mono_debug_open_image_from_memory().
13448         (mono_debug_close_image): New public function.
13449         (mono_debug_domain_create): Likewise.
13450         (mono_debug_domain_unload): Likewise.
13451         (MONO_DEBUGGER_VERSION): Bump to 60.
13453         * mono-debug-debugger.h
13454         (MonoDebuggerEvent):
13455         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
13456         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
13457         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
13458         - rename `THREAD_CREATED' and `THREAD_EXITED' into
13459           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
13460         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
13461           meaning.
13462         (mono_debugger_add_symbol_file): Removed.
13463         (mono_debugger_add_type): Removed.
13464         (mono_debugger_lookup_type): Removed.
13465         (mono_debugger_lookup_assembly): Removed.
13467         * domain.c
13468         (mono_domain_create): Call mono_debug_domain_create().
13469         (mono_init_internal): Call mono_debug_init_corlib().
13471         * assembly.c
13472         (mono_assembly_close): Call mono_debug_close_image().
13474 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
13476         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
13477         mmap call.
13479 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13481         * sgen-gc.c: ensure section->pin_queue_end is initialized
13482         correctly when non pinning objects in the section have been found.
13484 2007-08-22  Marek Habersack  <mhabersack@novell.com>
13486         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
13487         containing a list of directories separated by ':'. MSDN docs say
13488         the directories should be separated with ';'. Part of a bugfix for
13489         bug #81446
13491 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
13493         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
13494         it should MonoType and not MonoClass.
13496 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
13498         * culture-info-table.h : regenerated.
13500 2007-08-20  William Holmes  <billholmes54@gmail.com>
13502         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
13503          to call ReplaceFile Kernel32 on windows or in io-layer.
13504         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
13505         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
13506          as an internal call.
13508         Code is contributed under MIT/X11 license.
13510 2007-08-20  Jb Evain  <jbevain@novell.com>
13512         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
13513         and MONO_EXCEPTION_FIELD_ACCESS.
13515         * debug-helpers.[c|h]: new mono_field_full_name function.
13517 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13519         * class.c: Removed class_security_level() and moved it to
13520         security-core-clr.c.
13522         * security-core-clr.c, security-core-clr.h: class_security_level()
13523         is now public and renamed to mono_security_core_clr_class_level().
13524         It also looks for security attributes in the classes a class is
13525         nested in.
13527 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13529         * security-core-clr.c, security-core-clr.h: CoreCLR security
13530         utility functions.
13532         * Makefile.am: Added security-core-clr.[ch].
13534         * security-manager.c, security-manager.h: Functions and enum for
13535         setting and getting the security mode.
13537         * class.c: CoreCLR security checks.
13539 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13541         * icall-def.h, process.c, process.h: implemented icall to get
13542         user/system processor times.
13544 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13546         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13547         reader-lock-free jit_info_table.
13549 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13551         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13553         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13555         * object-internals.h (MonoException): Add missing _data member.
13557 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13559         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13560         checking that only methods with matching qname or fqname are picked
13561         from implemented interfaces.
13563 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13565         * verify.c (do_newarr):added, do type verification of
13566         newarr ops, push the right value on the eval stack.
13567         * verify.c (mono_method_verify): use do_newarr
13570 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13572         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13573         factored the common code into get_boxable_mono_type, which
13574         is now using mono_type_get_full, this fixed byref related tests.
13576 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13578         * class.c: added mono_type_get_full, this function has the same
13579         behavior of mono_class_get_full but the returned MonoType has
13580         all metadata of the associated token in case of a typespec token.
13581         * class.c: added mono_type_retrieve_from_typespec, used by 
13582         mono_type_get_full to retrieve the token type.
13583         * class.c (mono_class_create_from_typespec): changed to use
13584         mono_type_retrieve_from_typespec.
13585         * class.c (mono_ldtoken): changed to use mono_type_get_full
13586         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13587         * class-internals.h: exported mono_type_get_full for internal use.
13589 2007-08-16  Jb Evain  <jbevain@novell.com>
13591         * domain.c (supported_runtimes): add entry for
13592         the 'moonlight' runtime version.
13594 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13596         * verify.c (mono_method_verify): small typo sliped in.  
13598 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13600         * verify.c (do_unbox_value): added, do type verification of
13601         unboxing ops
13602         * verify.c (mono_method_verify): use do_unbox_value
13605 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13607         * verify.c (dump_stack_value): fixed typo, was printing string
13608         instead of object on stack.
13609         * verify.c (do_box_value): moved the byref check up as it leads
13610         to invalid code and should be done earlier.
13611         * verify.c: improved error messages for and ldobj
13613 2007-08-15  William Holmes  <billholmes54@gmail.com>
13615         * marshal.c (emit_marshal_custom): Omit the call to 
13616           marshal_native_to_managed when calling native to managed 
13617           and the argument is specified as an out argument.
13619         Code is contributed under MIT/X11 license.
13621 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13623         * verify.c: fixed the type checks for generics, function pointers and vectors.
13624         Added type verification for ldobj and ldtoken. The verifier
13625         would segfault if header or signature of a method contained references
13626         to non-existant types.
13628 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13630         * marshal.c (cominterop_get_ccw): Patch from
13631         Bill Holmes to no walk up interface hierarchy. 
13632         All parent methods should be present in the interface for COM.
13633    
13634         Code is contributed under MIT/X11 license.
13636 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13638         * marshal.c (emit_marshal_com_interface): Patch from
13639         Bill Holmes to handle COM Interfaces as return values
13640         for native->managed calls.
13641    
13642         Code is contributed under MIT/X11 license.
13644 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13646         * marshal.c (cominterop_get_idispatch_for_object): Implement
13647         for runtime callable wrappers.
13648    
13649         Code is contributed under MIT/X11 license.
13651 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13653         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13654         so 2.0 types are accessible
13657 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13659         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13660         once we load mscorlib.   Due to the order in which we initialize,
13661         the mono_assembly_load_full routine that loads mscorlib did not
13662         load friends.   We now load it once we load the
13663         mono_defaults.internals_visible_class class. 
13665         * assembly.c: Expose the mono_load_friend_assemblies method.
13667 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13669         * verify.c: improved the handling of boxing, better
13670         type checking for unary ops and conversion. Fix bug
13671         regarding managed pointer compatibility checking
13673 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13675         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13677         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13679 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13681         * reflection.c (dup_type): Remove.
13682         * class.c (dup_type): Remove.
13683         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13684         instead of the dodgy 'dup_type'.
13685         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13686         handle the case where 'dup_type' needed the second argument.
13688 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13690         * domain.c: Fix a warning.
13692 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13694         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13695         checking that methods with the same fqname are not overridden
13696         with a method from an ancestor.
13698 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13700         * threads.c (free_thread_static_data_helper): Avoid a crash if
13701         thread->static_data is not yet set.
13703 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13705         * marshal.c: Use correct image when emitting
13706         native wrapper for COM calls.
13707    
13708         Code is contributed under MIT/X11 license.
13710 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13712         * icall-def.h, security.c, security.h :
13713           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13715 2007-08-07  Martin Baulig  <martin@ximian.com>
13717         * mono-debug-debugger.h
13718         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13720         * domain.c (mono_domain_free): Call
13721         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13723 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13725         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13726         * verify.c (in_same_block): code should test if either offset is inside the clauses
13727         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13728         and filter blocks
13730 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13732         * image.c (mono_image_close): Fix a leak.
13734         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13736         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13738 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13740         * domain.c, threads.c, threads-types.h: fix memory retention issue
13741         with thread static variables not being cleared on domain unload.
13742         Reuse thread static slots after domain unload.
13744 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13746         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13747         nullable type.
13749         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13750         now done in mono_runtime_invoke_array.
13752         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13753         receiver is a nullable type.
13755         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13756         generic parameter.
13758 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13760         * marshal.c: Implement COM Objects as return type for 
13761         managed->unmanaged calls. Added Release calls for COM Object
13762         out/return values in managed->unmanaged calls.
13764         Code is contributed under MIT/X11 license.
13766 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13768         * threads.h, threads-type.h: move the hazard pointer declarations
13769         to the private header.
13771 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13773         * file-io.c, appdomain.c: memory leak fixes.
13775 2007-08-02  Dick Porter  <dick@ximian.com>
13777         * socket-io.c
13778         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13779         SO_REUSEADDR setting into io-layer/sockets.c.
13781 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13783         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13784         from Object when called on a generic parameter. Fixes #82211.
13786 2007-08-01  Dick Porter  <dick@ximian.com>
13788         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13789         Fixes bug 79250 yet again.
13791 2007-07-30  Martin Baulig  <martin@ximian.com>
13793         Merged the `debugger-dublin' branch.
13795         * mono-debug.h
13796         (MonoDebugDataTable): New typedef.
13797         (MonoDebugMethodAddressList): New typedef.
13798         (MonoDebugWrapperData): Removed.
13799         (MonoDebugSymbolTable): Removed `current_data_table',
13800         `current_data_table_size', `current_data_table_offset'.
13801         (MonoDebugDataItemType): Moved into mono-debug.c.
13802         (MonoDebugMethodJitInfo): Remove `address'.
13803         (mono_debug_data_table): New global variable.
13804         (mono_debug_lookup_method_addresses): New public function.
13805         (mono_debug_find_method): Take a `MonoMethod *', not a
13806         `MonoDebugMethodInfo *'.
13808         * mono-debug.c: Drop support for the old symbol tables.
13810 2007-06-28  Martin Baulig  <martin@ximian.com>
13812         * mono-debug.c (mono_debug_debugger_version): New public variable.
13814 2007-07-31  William Holmes  <billholmes54@gmail.com>
13816         * metadata.c Changed mono_type_create_from_typespec to not insert
13817           the type into the hash map until after
13818           do_mono_metadata_parse_type has completed.
13819         Fixes Bug #82194
13820         Code is contributed under MIT/X11 license.
13822 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13824         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13825         generic parameter. Fixes #82211.
13827 2007-07-27  Jb Evain  <jbevain@novell.com>
13829         * pedump.c (dump_metadata, dump_metadata_header): dump
13830         versions contained in the metadata header.
13832 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13834         * threads.c: register small_id_table with the GC.
13836 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13838         * threads.c, threads.h, class-internals.h, object-internals.h:
13839         Hazard pointers, to be used by lock-free parallel algorithms.
13841 2007-07-26  Dick Porter  <dick@ximian.com>
13843         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13844         routine on non-windows platforms, as I've not managed to think of
13845         a non-kludgy way of doing this.  Finishes off bug 78739.
13847 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13849         * object.c: properly setup interface_bitmap in proxy vtables.
13851 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13853         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13854         to create unique shadow copy target directories, use the domain's
13855         serial number instead. Each domain gets a unique target directory
13856         that way.
13858         * domain.c (mono_domain_create): added code to increment domain
13859         shadow copy serial number and cache the value in the current
13860         domain structure.
13862         * domain-internals.h (struct _MonoDomain): added a new field -
13863         shadow_serial to hold the serial number used in generation of
13864         shadow-copy directories. This is to make sure that the directory
13865         name is unique for each and every domain created. We avoid a race
13866         condition with overriding assemblies already in use by other app
13867         domains.
13869 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13871         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13872         binding generic parameters.
13874 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13876         * metadata.c (do_mono_metadata_parse_generic_class): Use
13877         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13878         error.
13880 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13882         * loader.c, class-internals.h, reflection.c: removed the per-method
13883         generics hashtable: we use the global one through the call of
13884         mono_class_inflate_generic_method ().
13886 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13888         * class.c, metadata.c, class-internals.h: introduce yet another
13889         generics global cache for inflated methods (fixes 98% of the perf
13890         issue in bug #81806).
13892 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13894         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13895         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13896         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13897         return a MonoGenericInst containing (a copy) of those types.
13898         (mono_metadata_inflate_generic_inst): Update to changes.
13899         (mono_metadata_parse_generic_inst): Likewise.
13900         (mono_get_shared_generic_inst): Likewise.
13901         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13902         (mono_reflection_bind_generic_method_parameters): Likewise.
13903         * metadata-internals.h: Likewise.
13904         * icall.c (free_generic_context): Kill.
13905         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13907         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13908         mono_metadata_type_dup.
13909         * marshal.c (mono_mb_create_method): Likewise.
13911         * metadata.c (mono_metadata_type_dup): Rename from
13912         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13913         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13914         * marshal.c, metadata-internals.h: Update to changes.
13916 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13918         * class.c: fixed a small leak for array classes and removed warning.
13920 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13922         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13923         Return 0x8000000 for return parameters. Fixes #82161.
13925 2007-07-21  Marek Habersack  <grendello@gmail.com>
13927         * appdomain.c (get_shadow_assembly_location): append the current
13928         ticks value to the path. Avoids overwriting the same assemblies by
13929         several threads at the same time.
13931 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13932         and Raja R Harinath  <rharinath@novell.com>
13934         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13935         Simplify slightly.
13936         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13937         property for testing if a method is a generic method definition.
13939 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13941         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13943 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13945         * verify.c: used function from private branch, reverted to the one in class.h 
13947 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13949         * verify.c: a typo slipped in and the code wont compile
13951 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13953         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13954         disabled box instruction as it is doing the wrong thing
13955         improved stack dump messages, now it is easier to debug type related issues
13958 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
13960         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
13962 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13964         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
13965         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
13966         grouped with class and valuetype. This change will simply 
13967         the code as it should be handled just like unmanaged pointers.
13969 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13971         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
13973 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13975         * verify.c: several stack merge issues fixed, reference comparisons now
13976         check the type size. strict type check now works correctly.
13977         added more uses of IS_MANAGED_POINTER macro.
13978         fixed issues pointed by running the test suite against .net.
13979         
13981 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13983         * class.c, loader.c, class-internals.h: Removed the
13984         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
13985         defines.
13987         * icall.c: Better error checking in some internal reflection
13988         methods.
13990 2007-07-18  William Holmes  <billholmes54@gmail.com>
13992         * filewatcher.c : removed unused variable 'filename' in 
13993           ves_icall_System_IO_FSW_SupportsFSW
13995 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13997         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13998         obsolete, removed.
14000 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
14002         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
14003         
14004         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
14006 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
14008         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
14009         Implement generics support.
14010         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14012         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
14013         type_args and method_args arguments.
14014         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
14015         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14016         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
14018 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
14020         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
14021           It adds a rootimage parameter to mono_reflection_get_type_internal,
14022           adds new function mono_reflection_get_type_with_rootimage and use
14023           the rootimage to resolve the types instead of the current image
14025 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
14027         * culture-info-table.h: Forgot to update after r78304.
14029 2007-07-13  Raja R Harinath  <rharinath@novell.com>
14031         * class.c (mono_class_is_open_constructed_type)
14032         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
14034 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
14036         * class.c (mono_bounded_array_class_get):  method fails if used with
14037         an incomplete TypeBuilder enum (no basetype field), fixed it by 
14038         avoiding calculating the size for such array as it cannot be instantiated.
14039         Fix bug #82015
14041 2007-07-12  Raja R Harinath  <rharinath@novell.com>
14043         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
14044         field.
14045         * metadata.c, reflection.c: Update to changes.
14047 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
14049         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
14050         mono_class_is_valid_enum, they are used to valide a enum when loading.
14051         * reflection.c: used new functions to throw TypeLoadException when and
14052         invalid enum is build with TypeBuilder. Fixes #82018
14053   
14054 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14056         * object.c: forgot commit of mono_class_setup_methods () to access
14057         iface->methods.
14058         * object-internals.h: added a few more handy fields to
14059         MonoIMTCheckItem.
14061 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14063         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
14064         iface->methods.
14066 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14068         * class-internals.h, object-internals.h, object.c: IMT-based
14069         interface invocation core from Massimiliano Mantione
14070         (massi@ximian.com) with a reworked arch-specific interface,
14071         bsearch implementation and a few bugfixes and memory savings by me.
14073 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
14075         * class.c (mono_class_create_from_typedef): mono would segfault if 
14076         an enum did not have a __value field. It now throws a TypeLoadException
14077         for such cases. Fix bug #82022
14079 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14081         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
14083 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14085         * class.c (mono_class_init): If a class is already inited but has
14086         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
14088 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14090         * class.c: Properly handle the case of an unimplemented interface
14091         method.  Fixes: 81673.
14093 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14095         * class-internals.h, object.c: cleanup patch from massi: use
14096         MonoVTable->interface_bitmap since the vtable interfaces offset array
14097         is going away.
14099 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14101         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
14102         GetMDStreamVersion icall instead.
14104 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14106         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
14107         not use mono_dl_build_path() with a full library name: makes
14108         fallbacks to libgaim and libfam work.
14110 2007-07-06  William Holmes  <billholmes54@gmail.com>
14112         * assembly.c: Added a continue statement in probe_for_partial_name when
14113          parse_assembly_directory_name fails.  Fixes : 82002
14115 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
14117         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
14118         and added a verification  for TYPEDBYREF.
14119         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
14120         make native int interchangeable with int32 and some small cleanup and formating.
14121         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
14122         handle byref of byref.
14123         * verify.c (push_local): handle byref of byref.
14124         * verify.c (do_binop): invalid mix of values is unverifiable
14125         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
14126         added visibility checks
14127         * verify.c (field related method): added visibility checks
14128         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
14130 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
14132         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
14133         string.
14135 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
14137         * profiler.c (mono_profiler_load): Fix an off-by-one error.
14139         * marshal.c (emit_marshal_string): When returning a string from managed code,
14140         allways make a copy even for unicode strings. Fixes #81990.
14142 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
14144         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
14145         of byref generic inst types (bug #81997).
14147 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
14149         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
14150         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
14152 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
14154         * marshal.c (emit_marshal_string): Add support for unicode strings in
14155         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
14157 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
14159         * verify.c: field load/store are now verified, missing only access checks now
14161 2007-06-28  Martin Baulig  <martin@ximian.com>
14163         * mono-debug.c (mono_debug_debugger_version): New public variable.
14165 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
14167         * locales.c: When constructing DateTimeFormat or NumberFormat for
14168         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
14169         MonoCultureInfo contructed from the current locale is always
14170         read-only and has UseUserOverride set to true. All MonoCultureInfo
14171         instances returned for GetCultures have both IsReadOnly and
14172         UseUserOverride set to true. Fixes part of bug #81930.
14174 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
14176        * icall-def.h: Update System.__ComObject icalls
14177        * marshal.c: Avoid managed transition (and object creation)
14178        when looking up COM interface in RCW.
14179        * marshal.h: Ditto.
14180        
14181        Code is contributed under MIT/X11 license.
14183 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
14185         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
14186         to avoid crashes during assembly unloading.
14188 2007-06-22  Raja R Harinath  <rharinath@novell.com>
14190         Fix MethodInfo.IsGenericMethodDefinition
14191         * reflection.c (mono_reflection_bind_generic_method_parameters):
14192         Rearrange code to ensure we always uses a generic method definition.
14193         * class.c (mono_class_inflate_generic_method_full): Set
14194         'generic_container' field only for generic method definitions.
14195         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14196         Use presense of 'generic_container' field as indication of being a
14197         generic method definition.
14199 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
14201         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14203         * object-internals.h: Reflect changes in the layout of the managed Delegate
14204         class.
14205         
14206         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
14207         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
14208         runtime memory used by the dynamic method. Fixes #77146.
14210 2007-06-21  Dick Porter  <dick@ximian.com>
14212         * file-io.h: 
14213         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
14214         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
14215         81767.
14217 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14219         * reflection.c (method_encode_methodspec): Add a tripwire.
14220         * class.c (inflate_generic_type): The fully open generic type is
14221         not the same as the generic type definition.
14223 2007-06-21  Martin Baulig  <martin@ximian.com>
14225         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
14227         * mono-debug-debugger.h
14228         (MonoDebuggerBreakpointInfo): Removed.
14229         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
14230         (mono_debugger_remove_breakpoint): Likewise.
14231         (mono_debugger_breakpoint_callback): Likewise.
14232         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
14234 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14236         * metadata.c (mono_metadata_lookup_generic_class): The fully open
14237         generic type is not the same as the generic type definition.
14238         * class.c (mono_generic_class_get_class): Likewise.
14240 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
14242         * icall.c: The second argument to 
14243         System.Reflection.MethodBase.GetMethodFromHandleInternalType
14244         is a MonoType not a MonoClass.
14246 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14248         * verify.c: support for function pointers in the verifier
14250 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14252         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
14254 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14256         * assembly.c: removed Mono.Data.SqliteClient from the list of
14257         forward-compatible assemblies as it breaks the ABI (bug #81899).
14259 2007-06-19  Raja R Harinath  <rharinath@novell.com>
14261         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
14262         lookup/update with the loader lock.
14263         * reflection.c (mono_class_bind_generic_parameters): No need to
14264         protect mono_metadata_lookup_* with the loader lock.
14265         * class.c (inflate_generic_type): Likewise.
14266         
14267         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
14268         on a generic instantiated type.
14270 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
14272         *verify.c: produce meanfull error messages on verification error
14273         *verify.c: fixed some cases of verification errors reported as validation errors
14274         *pedump.c: fixed the error name array, now it shows validation errors properly
14275         *verify.h: fixed the contant that should be used for verification errors
14277 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14279         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
14280         for bug #77596, 81858 and 80743 (generics data structures on domain
14281         unload).
14283 2007-06-15  Raja R Harinath  <rharinath@novell.com>
14285         Avoid allocating 'MonoGenericContext' on the heap.
14286         * class-internals (_MonoMethodInflated::context): Make field
14287         inline, not a pointer.
14288         * loader.c (method_from_methodspec): Allocate 'new_context' on the
14289         stack.  Use the context embedded within the inflated method as the
14290         hash key, rather than 'new_context'.
14291         * class.c (inflate_generic_context): Simplify.  Return a struct
14292         rather than allocating on the heap.
14293         (mono_class_inflate_generic_method_full): Update to changes.  Now,
14294         doesn't salt away a copy of the context -- simplifying the
14295         lifetime rules of a 'MonoGenericContext *'.
14296         (mono_method_get_context): Return pointer to embedded context.
14297         (setup_generic_array_ifaces): Allocate temporary context on stack.
14298         * reflection.c (inflate_mono_method): Likewise.
14299         (mono_reflection_bind_generic_method_parameters): Likewise.
14300         Use the context embedded within the inflated method as the hash key.
14302         Avoid a source of allocation of 'MonoGenericContext'.
14303         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
14304         and 'cached_context' fields into embedded 'MonoGenericContext' field.
14305         * class.c: Update to changes.
14306         (mono_generic_class_get_context): Simplify drastically.  Now just
14307         returns a pointer to the field.
14308         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
14309         argument as a const pointer.
14310         (mono_metadata_generic_context_equal): Likewise.
14311         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
14312         Update to changes.
14314 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
14316         * verify.c improved the handling of brtrue/brfalse, factored out common code
14318 2007-06-14  Raja R Harinath  <rharinath@novell.com>
14320         Kill MonoGenericMethod.
14321         * class-internals.h (MonoGenericContext::method_inst): Rename from
14322         'gmethod' and convert to a MonoGenericInst.
14323         (MonoGenericMethod): Remove.
14324         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
14325         * loader.c (method_from_methodspec): Update to changes.  Use a
14326         MonoGenericContext as the key to the hashtable.
14327         * metadata.c (mono_metadata_generic_context_equal): Rename from 
14328         'mono_metadata_generic_method_equal' and take MonoGenericContext.
14329         (mono_metadata_generic_context_hash): Likewise from
14330         'mono_metadata_generic_method_hash'.  Change hash function.
14331         (mono_metadata_load_generic_params): Update to changes.
14332         (mono_get_shared_generic_method): Remove.
14333         * metadata-internals.h (mono_get_shared_generic_method): Remove.
14334         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
14335         (inflate_generic_context): Likewise.
14336         (mono_class_inflate_generic_method_full): Likewise.
14337         (setup_generic_array_ifaces): Likewise.
14338         (mono_class_create_from_typespec): Likewise.
14339         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
14340         (method_encode_methodspec): Update callsite.
14341         (reflection_methodbuilder_to_mono_method): Update to changes.
14342         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
14343         MonoGenericContext as the key to the hashtable.
14344         (inflate_mono_method): Update to changes.
14346         * class-internals.h (MonoGenericMethod::container): Remove.
14347         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14349 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14351         * profiler-private.h, profiler.c, profiler.h: added API to profile
14352         exception events.
14354 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14356         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
14358 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14360         * verify.c: method invocation is now validated, now we verify parameter types on stack.
14361         Fixed overflow and underflow not aborting the verification process.
14363 2007-06-13  Mark Probst  <mark.probst@gmail.com>
14365         * class-internals.h (MonoStats): Added stats entries for dynamic
14366         code allocations.
14368 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
14370         * loader.c (mono_free_method): Free header->locals and header->clauses.
14372         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
14373         dynamic case.
14375         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
14377         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
14379 2007-06-12  Raja R Harinath  <rharinath@novell.com>
14381         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
14382         the tables.
14384 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14386         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
14388 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14390         MonoGenericMethod on a diet
14391         * class-internals.h (_MonoMethodInflated::reflection_info): Move
14392         here ...
14393         (_MonoGenericMethod::reflection_info): ... from here.
14394         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
14395         Update to changes.
14396         * reflection.c (inflate_mono_method): Likewise.
14397         (mono_reflection_bind_generic_method_parameters): Likewise.
14399 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14401         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
14402         *verify.c: factored long ldarg forms to share code with short forms
14404 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14406         *verify.c: fixed code formating factored some duplicate code
14407         into a new function
14409         *verify.h: fixed binary incompatibility introduced earlier
14411         *pedump.c: fixed formating
14413 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14415         Fix assertion when disassembling Mono.C5.dll
14416         * loader.c (method_from_methodspec): Avoid inflating a method
14417         twice with the same context.  If the methodref is inflated, use
14418         the declaring method instead.
14420         * class.c (mono_class_from_generic_parameter): Fix case similar to
14421         bug #81830 handled below, but for method containers.
14423 2007-06-10  Raja R Harinath  <harinath@gmail.com>
14425         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
14426         get_shared_generic_class.  Directly inflate the instance.
14427         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
14428         (inflate_generic_class): Delete.
14429         (get_shared_generic_class): Delete.  Move setting of
14430         'cached_class' and 'cached_context' ...
14431         * metadata.c (mono_metadata_lookup_generic_class): ... here.
14433         * metadata.c (mono_metadata_lookup_generic_class): Change
14434         signature to take the components of a MonoGenericClass rather than
14435         an allocated MonoGenericClass.  Change semantics to be intern-like.
14436         * reflection.c (mono_class_bind_generic_parameters): Update to
14437         changes.  Make locking region tighter.
14438         * class.c (inflate_generic_class): Update to changes.
14439         (get_shared_generic_class): Likewise.
14440         * metadata-internals.h: Likewise.
14442         * reflection.c (mono_class_bind_generic_parameters): Take and
14443         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
14444         (mono_reflection_bind_generic_parameters): Use
14445         'mono_class_bind_generic_parameters' rather than duplicate the code.
14446         * class.c (mono_bounded_array_class_get): Update to changes.
14447         * object-internals.h: Likewise.
14449         * reflection.c (mono_class_bind_generic_parameters): Only support
14450         parameterizing generic type definitions.  Remove support for other
14451         open types.
14453 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
14455         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
14457         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
14458         in the dynamic case.
14460 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
14462         * threads.c: When cleaning up thread, reset the Background bit.
14463         Fixes bug #81720.
14465 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
14467        * metadata.c: Move variable declarations to top of scope.
14468        * verify.c: Move variable declarations to top of scope.
14470        Code is contributed under MIT/X11 license.
14472 2007-06-08  Raja R Harinath  <rharinath@novell.com>
14474         * reflection.c (mono_class_bind_generic_parameters): Replace
14475         open-coded loop with mono_metadata_inflate_generic_inst.
14477         * class.c (get_shared_generic_class): Don't call
14478         mono_get_shared_generic_inst.  Use the container's own
14479         'class_inst'.
14481         * metadata.c (mono_metadata_load_generic_params): Move
14482         initialization of 'context' field here from ...
14483         * class.c (mono_class_create_from_typedef): ... here, and ...
14484         * loader.c (mono_get_method_from_token): ... here.
14486         * class.c (get_shared_generic_class): Rename from
14487         mono_get_shared_generic_class and make static.
14488         (mono_get_shared_generic_inst): Move to metadata.c.
14489         * loader.c (mono_get_shared_generic_method): Likewise.
14490         * class-internals.h, metadata-internals.h: Update to changes.
14492         Fix #81830
14493         * class.c (mono_class_from_generic_parameter): Don't assume a
14494         generic container owner exists.  Generic containers from monodis
14495         don't have any.
14497 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
14499         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
14500         * verify.h: new typedefs to returns the non-verifiable status
14501         * verify.c: initial implementation of generics, stack merging and object compatibility check
14503 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14505         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14506         a MonoInternalHashTable again (fixed bug in internal hash table
14507         code).
14509 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14511         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14512         MonoInternalHashTable again (fixed bug in internal hash table
14513         code).
14515 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14517         * class.c, image.c, class-internals.h, domain.c,
14518         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
14519         changes.  Have to figure out what makes them break the SWF
14520         regression.
14522 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14524         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14525         a MonoInternalHashTable now.
14527 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14529         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14530         MonoInternalHashTable now.
14532 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14534         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14535         invoke_impl code.
14537         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14539         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14540         dependent trampoline.
14542         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14544         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14546 2007-05-29  Robert Jordan  <robertj@gmx.net>
14548         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14550 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14552         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14554 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14556        * marshal.c: Fix interface lookup loops for
14557        cominterop_get_com_slot_for_method and 
14558        cominterop_get_method_interface. Only need to lookup
14559        if type is a class, else use interface type method is on.
14561        Code is contributed under MIT/X11 license.
14563 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14565         * reflection.c: HasSecurity can be present even if no specially 
14566         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14567         SecurityAttribute). Fix CAS regression tests on buildbot.
14569 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14571        * appdomain.c: Add configure checks for header files.
14572        * image.c: Add configure checks for header files.
14573        * file-io.c: Add configure checks for header files.
14574        * debug-mono-symfile.c: Add configure checks for header files.
14575        * threadpool.c: Add configure checks for header files.
14576        * console-io.c: Add configure checks for header files.
14577        * profiler.c: Add configure checks for header files.
14578        * rawbuffer.c: Add configure checks for header files.
14579        * icall.c: Add configure checks for header files.
14580        * rand.c: Add configure checks for header files.
14581        * socket-io.c: Add configure checks for header files.
14583        Code is contributed under MIT/X11 license.
14585 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14587         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14588         assertion as it breaks the build.
14589         
14590         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14592         * reflection.c (lookup_custom_attr): Make a copy here too.
14594         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14595         dynamic images.
14597         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14598         images.
14600         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14601         info.
14603 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14605         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14606         (load_cattr_value): Ditto.
14608 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14610         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14612 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14614         * threads.c: In "start_wrapper", set apartment_state to MTA if
14615         apartment_state is Unknown and we're running on 2.0 profile or
14616         higher.
14617         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14618         to main method, then set apartment_state to Unknown on 1.0 profile,
14619         and MTA on 2.0 profile.
14621 2007-05-16  Jb Evain  <jb@nurv.fr>
14623         * class-internals.h (MonoDefaults): Add an attribute_class and
14624           customattribute_data_class.
14625         * domain.c (mono_init_internal): Populate them.
14626         * reflection.c: Use them to remove duplicates. Make a vew
14627         MonoClass variables `static'.
14629 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14631         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14632         step in implementing IMT, so that all isinst checks now can go
14633         through the bitmap.
14634         This was needed because vtables for TransparentProxy need to look
14635         like the vtable of the "target" class, so they need to point to
14636         its interface bitmap directly.
14638         * object.c: inside "mono_class_create_runtime_vtable" and
14639         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14641 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14643         * object-internals.h
14644           culture-info.h : added territory field in MonoCulture and
14645           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14646         * locales.c : fill territory field above too.
14647         * culture-info-table.h : regenerated.
14649 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14651         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14652         Fixes #81599.
14654 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14656         * object.c: Always initialize apartment, even if 
14657         there is no custom attributes on entry point.
14658         
14659         Code is contributed under MIT/X11 license.
14661 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14663         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14664         * metadata.c: If no encoding is set, check for unicode
14665         on class.
14666         
14667         Code is contributed under MIT/X11 license.
14669 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14671         * threads.c: Handle if mono_thread_current returns NULL 
14672         
14673         Code is contributed under MIT/X11 license.
14675 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14677         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14678         in start_wrapper. Added mono_thread_init_apartment_state and
14679         mono_thread_cleanup_apartment_state.
14680         * object.c: Initialize thread apartment state on main thread
14681         by checking for STAThreadAttribute on entry point.
14682         * object-internals.h: Add apartment_state field to MonoThread.
14683         * threads-types.h: Add unmanaged definition of 
14684         System.Threading.ApartmentState, MonoThreadApartmentState.
14685         
14686         Code is contributed under MIT/X11 license.
14687         
14688 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14690         * class.c: Fix windows build.
14691         * class-internals.h: Fix windows build.
14692         
14693         Code is contributed under MIT/X11 license.
14695 2007-05-08  Robert Jordan  <robertj@gmx.net>
14697         * process.c (CreateProcess_internal):
14698         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14699         .CreateNoWindow was specified. Fixes #81496.
14701 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14703         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14704         step in implementing IMT, replaced it with two compact arrays
14705         (interfaces_packed and interface_offsets_packed) and a bitmap that
14706         is used for isinst checks (interface_bitmap).
14708         * class.c: (compare_interface_ids): compare function to pass to
14709         bsearch when looking for an interface with a given id.
14710         (mono_class_interface_offset): reimplemented using bsearch on
14711         interfaces_packed, getting the offset from interface_offsets_packed.
14712         (print_implemented_interfaces): utility debugging function.
14713         (setup_interface_offsets): reworked to initialize interfaces_packed,
14714         interface_offsets_packed and interface_bitmap.
14716         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14717         with uses of interfaces_packed and interface_offsets_packed.
14719 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14721         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14722         mono_class_interface_offset prototype to wrap all accesses to
14723         "MonoClass.interface_offsets".
14725         * class.c: Implemented mono_class_interface_offset, and wrapped all
14726         accesses to "MonoClass.interface_offsets".
14728         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14729         "MonoClass.interface_offsets".
14731 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14733         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14734         GetMethodFromHandle overloads (bug #78637).
14736 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14738         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14739         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14741 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14743         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14744         #81498.
14746         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14747         gracefully.
14748         (mono_custom_attrs_from_index): Ditto.
14750         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14751         Fixes #81501.
14753 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14755         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14756         is now allocated from a mempool.
14758 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14760         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14761         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14763 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14765         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14766         mono_loader_clear_error () too late. Fixes #81463.
14768 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14770         * culture-info-table.h : regenerated.
14772 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14774         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14775         is missing.
14777 2007-04-25  Dick Porter  <dick@ximian.com>
14779         * Makefile.am: Put the mingw enforced-optimisation back into the
14780         PLATFORM_WIN32 section.
14782 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14784         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14785         patch.
14787         * image.c (mono_image_load_module): New API function to load a module reference.
14789         * image.c (load_modules): Load modules lazily. Fixes #80812.
14791         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14792         
14793         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14795         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14796         to mono_image_load_module_dynamic.
14798 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14800         * marshal.c: Fix calling convention for CCW on non-windows
14801         platforms. STDCALL on windows, CDECL everywhere else to work 
14802         with XPCOM and MainWin COM.
14803         
14804         Code is contributed under MIT/X11 license.
14806 2007-04-23  Martin Baulig  <martin@ximian.com>
14808         Fix #80969.
14810         * loader.c
14811         (method_from_memberref): Added `gboolean *used_context' argument.
14812         (mono_get_method_from_token): Likewise.
14813         (mono_get_method_full): Don't insert the method in the cache when
14814         `used_context' is true.
14816 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14818         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14820         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14821         create new MonoTypes for returned types.
14822         * class.c (mono_generic_class_get_class): Export mono-internal.
14823         * class-internals.h: Update to changes.
14825 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14827         * threadpool.c, threadpool.h, icall-def.h: patch from
14828         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14830 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14832         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14833         
14834         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14836         * threads.c (mono_thread_get_stack_bounds): New helper function.
14838         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14839         Correctly compute stack bounds when attaching. Fixes #81394.
14841 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14843         * reflection.c: fix handling of doubles in custom attributes
14844         for the arm-fpa format (bug #81368).
14846 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14848         * reflection.c (assembly_add_win32_resources): Mildly relax an
14849         bounds check to let the end pointer point just past the end of the
14850         allocated buffer.  (may fix #81384)
14852 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14854         * culture-info-table.h : regenerated.
14856 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14858         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14859         the thread is aborted early.
14861 2007-04-05  Dick Porter  <dick@ximian.com>
14863         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14864         FindFirstFile()/FindNextFile() to find entries.  This lets the
14865         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14866         81038.
14868         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14869         the parameters of
14870         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14872 2007-04-04  Martin Baulig  <martin@ximian.com>
14874         * debug-helpers.c
14875         (mono_method_desc_full_match): Add support for nested classes.
14877 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14879         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14881 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14883         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14884         waiting for too many threads.
14886 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14888         * environment.c: Fix return value check on uname so we can get the 
14889         executing version on Solaris operating systems.
14891 2007-03-28  Jb Evain  <jbevain@gmail.com>
14893         * class.c (mono_type_get_name_recurse): Complete the
14894         fix for the creation of assembly qualified names for
14895         pointer types. Fixes #81208.
14897 2007-03-27  Dick Porter  <dick@ximian.com>
14899         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14900         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14901         changed.
14903         * threads.c
14904         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14905         the value of ReleaseMutex().
14907 2007-03-27  Dick Porter  <dick@ximian.com>
14909         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14910         in little-endian order, not network endian, so must be converted
14911         to host endian here.  Fixes bug 80593.
14913 2007-03-22  Jb Evain  <jbevain@gmail.com>
14915         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14916         qualified names for pointer types. Fixes #81208.
14918 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14920         * marshal.c: Add support for PreserveSigAttribute. 
14921         
14922         Code is contributed under MIT/X11 license.
14924 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14926         * process.c: Fix endianness issues. Fixes #81126.
14928         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14929         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14931         * image.c (mono_image_lookup_resource): Make this work on big-endian
14932         machines.Change API contract so the caller needs to free the return value.
14933         
14934         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14935         API change.
14936         
14937 2007-03-14  Martin Baulig  <martin@ximian.com>
14939         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14940         mono_type_get_desc() as well.
14942 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14944         * icall.c:  Fix environ access in VS.  
14945         
14946 2007-03-13  Alp Toker  <alp@atoker.com>
14948         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14949         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14950         #63841.
14952 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14954         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14955         circular references among dynamic methods. Fixes #81091.
14957         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
14959 2007-03-09  Martin Baulig  <martin@ximian.com>
14961         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
14963 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
14965         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
14966         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
14967         
14968         Code is contributed under MIT/X11 license.
14969         
14970 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
14972         * loader.c: Reapply patch for bug #79424.
14974 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14976         * metadata.c (mono_type_to_unmanaged): Only convert object to
14977         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
14979 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
14981         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
14982         (and incorrectly set) is_reference field from MonoGenericInst.
14984 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14986         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
14987         a little earlier.
14989         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
14991         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14993 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14995         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14996         FileOptions.1 value to mean "temporary", map that to
14997         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14999         Fixes 80688
15001 2007-03-03  Marek Habersack  <mhabersack@novell.com>
15003         * appdomain.c: implement MS .Net style shadow copying. Copies of
15004         the assemblies are made in a subdirectory of the dynamic base
15005         directory, the assembly names are preserved.
15006         Copy .mdb and .config files along with the assemblies being shadowed.
15008 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15010         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
15011         (emit_marshal_handleref): Ditto.
15013         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
15014         on Visual C++. Fixes #80671.
15016 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15018         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
15019         for clone operations.
15021 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15023         * marshal.c: Fix warnings.
15025 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
15027         * loader.c: allow case-insensitive matching of the dll name
15028         in dllmap handling when prefixed with "i:".
15030 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
15032         * threads.c: Fix #ifdef for dummy_apc function for VS.
15034 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
15036         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
15038 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
15039         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
15040         giving precedence to the methods with a fully qualified name
15041         (InterfaceName.MethodName) when building the interface sections
15042         of the vtable.
15044 2007-02-16  Dick Porter  <dick@ximian.com>
15046         * threadpool.c (append_job): Fix fast-path array handling, so it's
15047         less likely the array will grow exponentially when the load is
15048         heavy.
15050 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15052         * metadata-internals.h, loader.c: fix dllmap lookup order
15053         for non-function maps, too, and prepare for fallback code.
15055 2007-02-12  Robert Jordan  <robertj@gmx.net>
15057         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
15058         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
15059         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
15060         GlobalFree. Fixes a part of bug #77075.
15062 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
15064         * loader.c: implemented typedef parent in field memberref.
15066 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
15068         * marshal.c: Fix warnings and remember to call Release on
15069         IUnknown of RCW.
15070         
15071         Code is contributed under MIT/X11 license.
15073 2007-02-10  Miguel de Icaza  <miguel@novell.com>
15075         * class-internals.h: Add MonoHandleRef definition, and
15076         handleref_class to mono_defaults. 
15078         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
15079         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
15081         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
15082         (do nothing on this stage)
15083         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
15084         (emit_marshal_handleref): New method, used for argument handling
15085         of HandleRefs. 
15087 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
15089         * class.c (mono_class_setup_parent): Lazily init com types.
15090         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
15091         init com types.
15092         * object.c (mono_remote_class_vtable): Lazily init com types.
15093         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
15094         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
15095         * domain-internals.h: Expose mono_init_com_types.
15096         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
15097         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
15098         Add support for COM Callable Wrapper marshalling.
15099         * marshal.h: Add icall definitions.
15100         * gc.c: Handle freeing of CCWs in finalizer code.
15101         
15102         Code is contributed under MIT/X11 license.
15104 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
15106         * reflection.c: changed all the signature encoding code to use
15107         a variable-sized buffer.
15109 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15111         * marshal.c: locking fixes: never take the loader lock
15112         or other runtime locks when holding the marshal lock
15113         (fixes bug#80664).
15115 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
15117         * marshal.c: make the delegate function pointer mapping
15118         work for the moving GC.
15120 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
15122         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
15123         for bug #80618.
15125 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15127         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
15128         gmodule.
15130 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15132         * threadpool.c: made the code moving-GC safe.
15134 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
15136         * assembly.c, boehm-gc.c, class-internals.h, class.c,
15137         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
15138         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
15139         warning cleanup.
15140         * reflection.c: warning cleanup, some threading and moving GC fixes.
15142 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
15144         * class.c, loader.c: create the needed Set/Get/Address array methods
15145         as well as the .ctors in mono_class_init (), fixes bug #80567.
15147 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
15149         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
15150         we doesn't decrease its alignment. Should fix the sparc build.
15152 2007-01-24  Dick Porter  <dick@ximian.com>
15154         * socket-io.c
15155         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
15156         Create the returned object if we need to ignore an unsupported
15157         socket option.  Fixes a segfault reported by Atsushi.
15159 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
15161         * class.c, object.c: restrict GC-tracked fields to
15162         UIntPtr fields used inside corlib, so we provide better
15163         type info to the GC and also allow broken packing as in
15164         bug #80580.
15166 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
15168         * sgen-gc.c: removed duplicated function.
15170 2007-01-19  Miguel de Icaza  <miguel@novell.com>
15172         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
15173         value that means that the value is not supported, but that we
15174         should not return a failure, but instead report this as a
15175         successful operation.
15177 2007-01-19  Raja R Harinath  <rharinath@novell.com>
15179         Fix tests/bug79956.2.il
15180         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
15181         (mono_generic_class_get_class): If the generic definition in an
15182         enum, copy over other fields related to it.
15184 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15186         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
15187         genericinst enums (bug #79215).
15189 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
15190         * class.c: Fix bug 80307.
15192 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
15194         * image.c: if the file table is not present, try to load
15195         all the modules, since we don't have info about them
15196         having or not metadata (bug #80517).
15197         * assembly.c: allow mono_assembly_load_references () to
15198         work for netmodules.
15200 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15202         * image.c, metadata-internals.h, object.c: execute module
15203         cctors when running on the 2 runtime if present (bug #80487).
15205 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
15207         * icall.c: optimized InitializeArray() on bigendian.
15209 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
15211         * icall.c: fix for the broken ARM FPA double format.
15213 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15215         * icall.c: handle endian issues for r4 and r8 types, too, in
15216         the InitializeArray() icall.
15218 2007-01-15  Miguel de Icaza  <miguel@novell.com>
15220         * loader.c (mono_loader_error_prepare_exception): Clear the error
15221         once we have extracted the information from it, do this before we
15222         call into the JIT's class loading mechanisms.
15224         * object.c (mono_class_create_runtime_vtable): Do not clear the
15225         loader error before calling mono_class_get_exception_for_failure
15226         as the loader error is needed inside
15227         mono_class_get_exception_for_failure to throw the error (thinko).
15229         Fixes #80521
15230         
15231 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15233         * reflection.c: align fields rva data so it's faster to load at
15234         runtime.
15236 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15238         Prepare to simplify GenericMethod handling.
15239         * class-internals.h (mono_method_get_context): New accessor function.
15240         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
15241         rather than directly accessing '->context' field.
15243         * class-internals.h (_MonoGenericParam.method): Move ...
15244         (_MonoGenericContainer): ... here.  Add into union with klass field.
15245         * class.c, icall.c, loader.c, metadata.c, reflection.c:
15246         Update to changes.
15248 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
15250         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
15251         the wrapper type enum and reduce relocations.
15253 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15255         * reflection.c (inflate_mono_method): Reuse method instantiation
15256         from the generic method, if available.
15258 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15260         * marshal.c (emit_marshal_variant): Fix conv_arg
15261         type in last commit, based on whether parameter is byref.
15262         
15263 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15265         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
15266         marshalling.
15267         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
15268         MONO_TYPE_OBJECT back for VARIANT support.
15270 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15272         * marshal.c, marshal.h, icall-def.h: Implement 
15273         Marshal.ReAllocCoTaskMem.
15275 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
15277         * marshal.c: memory retention fixes: use the proper
15278         image cache for runtime_invoke method lookups.
15280 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15282         * mempool.c: added code to help debug mempool allocations.
15284 2007-01-11  Dick Porter  <dick@ximian.com>
15286         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
15287         support (experimenting with faking it with IP_MTU_DISCOVER for
15288         systems that don't have IP_DONTFRAGMENT.)
15289         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
15290         icall.
15292         * icall-def.h: new System.Net.Sockets.Disconnect icall.
15294         * socket-io.h: Add new fields to MonoSocketAsyncResult
15295         corresponding to the new ones in Socket.cs.
15297 2007-01-11  Raja R Harinath  <rharinath@novell.com>
15299         Fix IronPython regression mentioned in #80249
15300         * metadata.c (do_mono_metadata_parse_generic_class): Clear
15301         'cached_context' field, since it may have been initialized as a
15302         side-effect of metadata parsing.
15304         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
15305         (_MonoGenericClass.cached_class): Move here and rename from lone
15306         remaining field of ...
15307         (_MonoInflatedGenericClass): ... this.  Remove.
15308         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
15309         to changes.
15311         Fix mcs/tests/test-128.cs regression.
15312         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
15313         2007-01-10 change below.
15314         [MONO_TYPE_OBJECT]: Recurse into array case.
15316 2007-01-11  Raja R Harinath  <harinath@gmail.com>
15318         * class-internals.h (mono_get_inflated_generic_class): Remove.
15319         * class.c (mono_get_inflated_generic_class): Remove.
15320         (mono_generic_class_get_class): Rename from
15321         mono_class_create_generic.
15322         (mono_class_from_mono_type) [GENERICINST]: Use it.
15323         * reflection.c, metadata.c: Update to changes.  Use
15324         'mono_class_from_mono_type'.
15326 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15328         * reflection.c: use passed type when encoding an array element
15329         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
15331 2007-01-09  Robert Jordan  <robertj@gmx.net>
15333         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
15334         result arguments (someDelegate.EndInvoke (unrelatedAres)).
15335         Fixes bug #80392.
15337 2007-01-09  Raja R Harinath  <rharinath@novell.com>
15339         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
15341         * object.c (set_value): Avoid aliasing between type->data.klass
15342         and type->data.generic_class.
15344         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
15346 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15348         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
15349         between type->data.klass and type->data.generic_class.
15351 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
15353         * marshal.c: In MS.NET, StringBuilder objects are not copied by
15354         value in out parameters.
15356 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15358         Simplify invariant for MonoGenericClass::klass field.
15359         * class.c (mono_class_create_generic): Verify 'klass' is null.
15360         * metadata.c (do_mono_metadata_parse_generic_class): Don't
15361         initialize 'klass' field.
15363 2007-01-05  Raja R Harinath  <rharinath@novell.com>
15365         Ongoing work to avoid redundant data and simplify invariants.
15366         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
15367         'generic_class', and change type to a GenericInst.
15368         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
15369         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15371 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
15373         * class.c : skip io-layer under PLATFORM_WIN32.
15375 2007-01-03  Tor Lillqvist  <tml@novell.com>
15377         Fix #80305: In a bundled executable, look in the bundled exe
15378         assembly to determine the runtime version. Add the possibility to
15379         bundle also the machine.config file.
15380         
15381         * assembly.c (mono_assembly_open_from_bundle): Make
15382         non-static. Allow being called even if we have no bundled
15383         assemblies, and return NULL right away in that case.
15385         * domain-internals.h: Declare mono_assembly_open_from_bundle()
15386         here.
15388         * domain.c (app_config_parse): Take an assembly exe file name as
15389         parameter instead of a config file name. Check for a bundled
15390         config file for that assembly by calling
15391         mono_config_string_for_assembly_file() (see below) before looking
15392         for one in the file system.
15393         (get_runtimes_from_exe): Corrsponding change to call of
15394         app_config_parse().
15395         (get_runtimes_from_exe): Check for bundled assembly exe file first
15396         by calling mono_assembly_open_from_bundle(). If no bundled
15397         assembly exe file is found, call mono_image_open() as before to
15398         look it up in the file system.
15400         * mono-config.c: Add variable bundled_machinec_onfig.
15401         (mono_config_string_for_assembly_file): New function.
15402         (mono_config_for_assembly): Move code snippet that looks for a
15403         bundled assembly .config file into the above new function. Call
15404         it.
15405         (mono_register_machine_config, mono_get_machine_config): New
15406         functions to set and retrieve
15408         * assembly.h: Declare mono_register_machine_config().
15410         * mono-config.h: Declare mono_get_machine_config() and
15411         mono_config_string_for_assembly_file().
15413         * icall.c: No declaration of environ necessary on Win32. It is
15414         declared (as a macro expanding to a function call) in stdlib.h.
15415         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
15416         New internal mono function. Returns the value of
15417         mono_get_machine_config() as a Mono string.
15419         * icall-def.h: Add get_bundled_machine_config().
15421 2007-01-04  Raja R Harinath  <rharinath@novell.com>
15423         Remove redundant field
15424         * class-internals.h (_MonoGenericContext.container): Remove field.
15425         * loader.c (mono_method_get_signature_full): Don't parse a
15426         "container" for a signature parse when the signature is inflated
15427         immediately.
15428         (method_from_methodspec): Likewise, for a generic_inst.
15429         * class.c, metadata.c, reflection.c: Update to changes.
15431 2006-01-04  Raja R Harinath  <rharinath@novell.com>
15433         * class-internals.h (_MonoGenericClass): Rename 'context' field to
15434         'cached_context', and change semantics -- it starts off NULL, and
15435         is initialized on demand.
15436         * class.c (mono_generic_class_get_context): New accessor to
15437         replace 'context' field accesses.
15438         (mono_class_get_context): New helper.
15439         (*): Update to changes.
15440         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
15442 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15444         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
15445         before the memcpy.   Fixes Marshal2 regression.
15447 2007-01-02  Jb Evain  <jbevain@gmail.com>
15449         * blob.h: add a MONO_TYPE_ENUM definition
15450         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
15451         fix the encoding of arrays of enums in custom attributes.
15453         Fixes #79666.
15455 2007-01-01  Miguel de Icaza  <miguel@novell.com>
15457         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
15458         string is null terminated, but only cut the string short if it
15459         overflows the buffer.   
15460         
15461         (mono_string_to_byvalstr): Also fix this routine.   The code here
15462         was not properly terminating a string (it was only terminated
15463         because of the previous catch-all memset). 
15465         I left the memset, because I do not know if applications expect
15466         the runtime to clear this region. 
15468         Fixes #79944.
15470         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
15471         Clear the error before returning to unmanaged code to prevent the
15472         runtime from being confused later on (fixes  80420).
15473         (ves_icall_type_from_name): Always call mono_loader_clear_error
15474         after parsing a type that could have failed.
15475         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
15477         * loader.c (mono_loader_clear_error): Fix indentation.
15479 2006-12-28  Martin Baulig  <martin@ximian.com>
15481         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
15483 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15485         * reflection.c: patch from Rolf Bjarne Kvinge to fix
15486         getting a token for an EnumBuilder.
15488 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15490         * reflection.c: be more careful in case resource generation
15491         fails to create the data array.
15493 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15495         * sgen-gc.c: write barrier for clone and fix unregister handles.
15497 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15499         * reflection.c: some fixes needed in the generics code for the moving GC.
15501 2006-12-22  Robert Jordan  <robertj@gmx.net>
15503         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
15504         account. Fixes bug #80299.
15506 2006-12-21  Raja R Harinath  <rharinath@novell.com>
15508         Fix WaitHandle usage in delegates.
15509         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
15510         * object.c (mono_wait_handle_new): Use the property set method to
15511         initialize the handle.
15512         (mono_wait_handle_get_handle): New.
15513         * threadpool.c (mono_async_invoke): Use it.
15514         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
15515         Likewise.
15516         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
15518 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
15520         * marshal.c (emit_marshal): Call emit_marshal_variant and
15521         emit_marshal_com_interface when applicable.
15522         (emit_marshal_variant, emit_marshal_com_interface): Add
15523         methods for this case and remove if's from emit_marshal_object.
15524         
15525 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15527         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15529 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15531         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15532         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15533         and GlobalFree on Windows. Remove FIXME.
15535 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15537         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15538         implementation for managed objects.
15540 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15542         * object.c: implemented code to be used for checking
15543         that no reference field overlaps with non-references.
15545 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15547         * threadpool.c: fix queue code to be compatible with the
15548         moving GC.
15550 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15552         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15553         in structures by throwing ArgumentNullException.
15555         (emit_marshal_safehandle): Also when they are null parameters.
15557         (emit_marshal_safehandle): Add support for ref
15558         SafeHandles parameters
15560 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15562         * profiler.c: updated to use the mono-dl API instead of
15563         gmodule.
15565 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15567         * profiler.c: updated to use the mono-dl dynamic loading
15568         API instead of gmodule.
15570 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15572         * profiler.c: use readlink, older versions of glib don't have
15573         g_file_read_link ().
15575 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15577         * profiler.c: try to detect the path to mono if libc fails to provide
15578         a useful name (bug #80286).
15580 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15582         Fix #80242
15583         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15584         instance, use the generic type definition instead.
15585         (ves_icall_Type_GetNestedTypes): Likewise.
15586         * class.c (mono_class_create_generic): Always set the
15587         nested_classes of a generic instance to NULL, even if the generic
15588         type definition has nested types.
15590 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15592         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15593         and fix on Linux.
15594         
15595 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15597         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15598         my arguments were in the wrong order.   I also fixed the Windows
15599         version which seems to have had the same issue.
15601         (mono_free_bstr): On Unix, this is g_free.
15602         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15603         conversions (for the tests in corlib to pass).
15605 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15607         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15608         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15609         exception if a ref SafeHandle in a struct has changed).
15610         
15611         (emit_struct_conv): Do not perform layout checks for classes
15612         derived from SafeHandle, as those are specially handled. 
15614         (emit_object_to_ptr_conv): Add support for
15615         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15617         (emit_marshal_safehandle): Implement conversion of return values
15618         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15619         
15620         * threads.c: WaitHandle now is compiled with two different handles
15621         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15622         for 2.0.
15623         
15624         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15625         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15626         these routines to cope with both kinds of fields.
15628 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15630         * metadata.c (mono_type_to_unmanaged): Handle the case where
15631         type->data.klass is a SafeHandle, and in that case, return the
15632         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15633         MONO_MARSHAL_CONV_SAFEHANDLE. 
15635 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15637         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15638         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15639         calling emit_marshal_object.
15641         (emit_marshal_safehandle): Implement marshalling of
15642         SafeHandle parameters (no ref support yet).
15644         (MarshalAction): Document the defines as I implement
15645         them for SafeHandle.
15647         (emit_marshal_object): indentation police.
15649         * class-internals.h: Define MonoSafeHandle.
15650         Add safehandle_class to MonoDefaults type.
15652         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15653         list of classes to check for fields. 
15655         * domain.c (mono_init_internal): Add SafeHandle to the list of
15656         mono_defaults loaded.
15658 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15660         Fix #80253
15661         * reflection.c (mono_reflection_bind_generic_parameters): If the
15662         generic type definition is a type builder, ensure that it is fully
15663         initialized before instantiating it.  Kill some dead code.
15665 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15667         * object.c: clear the loader_error () before loading
15668         more metadata stuff (bug #80258).
15670 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15672         * icall.c, icall-defs.h: type modifiers icalls for
15673         parameters and properties.
15675 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15677         * object.c, icall.c: fixed warnings.
15679 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15681         * marshal.c: fixed a couple of leaks and coding style in a few places.
15683 2006-12-08  Dick Porter  <dick@ximian.com>
15685         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15686         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15687         80173.
15689 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15691         * process.c: ProcessStartInfo may have only filename set and
15692         arguments can be NULL.
15694 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15696         * icall.c: fix leak found by Robert Jordan.
15698 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15700         * marshal.c, marshal.h: generate managed method to access an element
15701         of a multi-dimensional array.
15703 2006-11-30  Paolo Molaro (lupus@ximian.com)
15705         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15707 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15709         * icall.c: back out GetFields () fix until the serialization code is
15710         fixed to not depend on the incorrect behaviour.
15712 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15714         * profiler.c: provide defaults if none are set.
15716 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15718         * Makefile.am, attrdefs.h: new public header file with
15719         constants for attributes for use by embedders.
15721 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15723         * icall.c: GetFields () fix for bug #80064.
15725 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15727         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15728         removed long unused icalls.
15730 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15731   
15732         * marshal.c: 
15733                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15734                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15735                 can be generated without a delegate class.
15736                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15737         
15738         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15740 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15742         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15743         #80069.
15745 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15747         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15748         icall-def.h: added icalls needed by System.GC.
15750 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15752         * loader.c: ensure the class in catch clauses is handled
15753         correctly for generics methods (fixes bug#79980).
15755 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15757         * monitor.h, monitor.c: added mono_locks_dump () function
15758         to help debug deadlocks involving managed locks.
15760 2006-11-13  Dick Porter  <dick@ximian.com>
15762         * file-io.c (get_file_attributes): If the file is a symlink try
15763         and get the stat data for the target, but also add the
15764         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15765         the specs for the windows symlink support, but will probably have
15766         to be reworked when I have test data from a vista machine.  Fixes
15767         bug 79887.
15769 2006-11-13  Dick Porter  <dick@ximian.com>
15771         * gc.c (mono_domain_finalize): 
15772         * marshal.c (mono_delegate_begin_invoke): 
15773         * threadpool.c (socket_io_init, mono_thread_pool_init)
15774         (mono_thread_pool_finish): 
15775         * monitor.c (mono_monitor_try_enter_internal): 
15776         * threads.c (mono_thread_resume, mono_thread_init)
15777         (mono_thread_suspend_all_other_threads)
15778         (mono_thread_execute_interruption): 
15779         * appdomain.c (mono_domain_unload): Check for NULL error returns
15780         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15781         75733.
15783 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15785         * process.c
15786         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15787         Only close the handle if the value of the handle is not
15788         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15789         robust.
15791         Improvement for #75733, so that we do not run into this problem. 
15793         
15794         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15795         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15796         internal variables.  Fixes #79462 
15797         
15799 2006-11-09  Dick Porter  <dick@ximian.com>
15801         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15802         Use poll() not select().  Fixes bug 79397.
15804 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15806         Fix #79872
15807         * assembly.c (mono_assembly_load_from_full): Check that the given
15808         image has an assembly manifest.
15810 2006-11-09  Ankit Jain  <jankit@novell.com>
15812         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15813         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15814         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15816 2006-11-07  Dick Porter  <dick@ximian.com>
15818         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15819         Put the old resolver behaviour back for pre-2.0 profiles.
15821 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15823         * threadpool.c: precise GC and locking fixes.
15825 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15827         * class.c: don't load types that have an explicit unaligned
15828         managed reference. Provide better info in the TypeLoad exception.
15829         Part of the fix for bug #79744.
15830         * object.c: use the correct check for class type load issues.
15832 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15834         * class.c: enforce alignment of fields with managed references
15835         even when Pack=1 is forced by the user (bug #77788).
15837 2006-11-03  Dick Porter  <dick@ximian.com>
15839         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15840         If the address reverse lookup fails, return it as the hostname
15841         anyway.  Fixes bug 79721.
15843 2006-11-03  Dick Porter  <dick@ximian.com>
15845         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15846         Fix build on Windows.
15848 2006-11-02  Dick Porter  <dick@ximian.com>
15850         * icall-def.h: 
15851         * object-internals.h: 
15852         * exception.c (mono_get_exception_thread_interrupted): 
15853         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15854         Fixes bug 74525.
15856         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15857         Check for pending Thread.Interrupt.
15859 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15860         * loader.c: Fixed bug 79684.
15862 2006-10-27  Dick Porter  <dick@ximian.com>
15864         * file-io.c (get_file_attributes): Force symlinks to directories
15865         to be returned as a regular file.  Fixes bug 79733.
15866 2006-10-26  Dick Porter  <dick@ximian.com>
15868         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15869         CreateFile to open a directory then we need to set the
15870         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15872 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15874         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15875         friends.
15877 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15879         * sgengc.c: small cleanup of timer code.
15881 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15883         * sgen-gc.c: fix some warnings and start adding support for
15884         complete object removal on domain unload.
15886 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15888         * assembly.c: build_assembly_name should not consider a version
15889         number without build or revision number invalid. Fixes bug #79715.
15891 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15893         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15894         call kernel32 function OutputDebugString directly.
15895         
15896         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15897         
15898 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15900         * reflection.c: small cleanup, using a function to insert a MonoString
15901         in the string heap.
15903 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15905         * reflection.c: moving GC fixes.
15907 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15909         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15910         all the objects with finalizers belonging to an unloading appdomain.
15912 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15914         * sgen-gc.c: added ability to allocate even when the nursery is fully
15915         pinned and fixed a couple of bugs.
15917 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15919         * threads.h: Revert the last change for now.
15921         * threads.h (mono_thread_get_pending_exception): Rename this to
15922         mono_thread_get_undeniable_exception ().
15924 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15926         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15927         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15928         when fname does not refer to valid assembly. This result in a more
15929         meaningful error message.
15930         * exception.c: added mono_get_exception_bad_image_format2 which 
15931         constructs a BadImageFormatException using the ctor taking a custom
15932         message and the file name. Passing in a NULL msg results in a default
15933         message.
15934         * exception.h: define mono_get_exception_bad_image_format2 function.
15935         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15936         when file name pointed to an invalid IL image. Use 
15937         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15938         as this results in a more meaningful error message.
15940 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15942         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15943         #79465.
15945 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15947         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15948         consistency with the other _size functions.
15949         (mono_type_stack_size): Ditto.
15951         * class.c object.c icall.c: Fix warnings caused by the above change.
15953         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15955         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
15957         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
15959 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15961         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
15962         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
15963         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
15964         threadpool.h, threads-types.h: mark more internal functions.
15966 2006-10-11  Dick Porter  <dick@ximian.com>
15968         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15969         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
15970         reproduce the bug even before applying the fix.)
15972 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
15974         * reflection.c: allow retrieving attributes for arguments in generic
15975         methods (bug #79241).
15977 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
15979         * debug-mono-symfile.c: properly check fopen () result (found by
15980         coverity).
15982 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
15984         * reflection.c: make error message clearer and fixed two
15985         issuelets found by Coverity.
15987 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
15989         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
15991 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15993         * object-internals.h, gc-internal.h, profiler-private.h:
15994         mark internal functions.
15996 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15998         * reflection.c: put data in the text section.
15999         * icall.c: recognize more types in type_from_typename ().
16000         * process.c, marshal.c: added some GC FIXMEs.
16002 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16004         * loader.c: check for NULL before initializing.
16006 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
16008         * gc.c (finalizer_thread): Use a non-alertable wait here.
16010         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
16011         until the correct solution is found.
16013 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16015         * reflection.c (mono_module_get_object): Avoid an assert when operating on
16016         modules with no metadata. Fixes #79596.
16018         * image.c (load_metadata_ptrs): Put back the error message when
16019         the #- heap is encountered since the support is not complete yet.
16021 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16023         * gc.c: do not allow the user to SuppressFinalize () a
16024         delegate because it would leak the trampoline if present.
16026 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16028         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
16029         PropertyPtr table.
16031 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
16033         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
16035         * metadata.c (mono_metadata_get_param_attrs): Ditto.
16037         * row-indexes.h: Add definitions for *Ptr tables.
16039         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
16041         * metadata.c (mono_metadata_translate_token_index): New helper function to
16042         translate table indexes used in uncompressed metadata.
16043         (mono_metadata_decode_table_row): Ditto.
16044         (mono_metadata_decode_table_row_col): Ditto.
16046         * metadata.c: Add table schema for *Ptr tables.
16048         * class.c loader.c: Use the new helper function to access the affected metadata
16049         tables.
16050         
16051         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
16052         #38532.
16053         
16054 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
16056         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
16057         sequences which can be unbounded in size. Fixes #79583.
16059 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
16061         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
16062         static initialization.
16064         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
16066         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
16068         * domain.c (mono_domain_free): Free up type_init_exception_hash.
16070         * object.c (mono_runtime_class_init): Implement correct semantics when a static
16071         ctor fails, i.e. throw the same exception on subsequent accesses.
16072         
16073 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
16075         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
16076         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
16077         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
16078         Handle marshalling of interfaces and VARIANTs contained in structs.
16079         
16080         Code is contributed under MIT/X11 license.
16081         
16082 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
16084         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
16085         
16086         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
16087         mempool.
16089 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16091         * console-io.c: ignore previous SIGINT handler.
16093 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
16095         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
16096         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
16097         #79460, #79461, #79485.
16099         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
16101         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
16102         #79217.
16104 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16106         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
16107         could be generated from it.
16109 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
16111         * rand.c: fix read loop to correctly handle EINTR.
16113 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16115         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
16116         internal calls are defined to keep methods closer to the declaring
16117         type and allow a significant reduction in runtime relocations and
16118         memory usage.
16120 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
16122         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
16123         exception message to have FileNotFoundException use the default
16124         assembly load error message. Fixes bug #79426.
16125         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
16127 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16129         * threadpool.c: (start_thread_or_queue) use the root domain when
16130         creating the thread instead of the async object one.
16132 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
16134         * class.c, object.c, class-internals.h, reflection.c:
16135         for arrays, store element_size inside MonoClass (speedup
16136         for array object creation).
16138 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
16140         * icall.c: fixed CodeBase to use the file name and not the module
16141         name (bug #79365).
16143 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16145         * mono-debug.c, mono-debug.h: export find_method as
16146         mono_debug_find_method ().
16148 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16150         * debug-helpers.c, class-internals.h: added a few functions useful
16151         when debugging under gdb.
16153 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16155         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
16156         characters that need special handling.
16158 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16160         * mono-config.c: make the os/cpu specification more flexible,
16161         allowing lists and negation.
16163 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
16165         * marshal.c: COM Interop fixes. Handle case where method->klass.
16166         is interface. Handle BSTR/MonoString when null. Use CDECL as 
16167         calling convention on non-windows platforms. This is for
16168         compatibility with XPCOM and MainWin COM.
16169         
16170         Code is contributed under MIT/X11 license.
16171         
16173 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
16175         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
16176         correctly. Fixes #79217.
16178         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
16180 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
16182         * mono-config.c: allow both an os and cpu attribute for dllmap
16183         and dllentry elemnets to enable a single config file to be used
16184         for multiple architectures.
16186 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
16188         * loader.c: MonoLoaderError was cleared too soon on load failure.
16189         Fixes bug #79424.
16191 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
16193         * icall.c: use the defining class vtable when accessing a
16194         static field, not a pobblibly derived class.
16196 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
16198         * icall.c string-icalls.c: Remove references to unicode.h.
16200         * unicode.h unicode.c Makefile.am: Remove these unused source files.
16202         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
16204         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
16205         indicating the image where custom marshaller types should be looked up.
16206         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
16207         custom marshallers, instead of corlib. Fixes #79425.
16209 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
16211         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
16213 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
16215         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
16216         Implement Environment.ProcessorCount.
16217         
16218         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
16219         Implement Environment.ProcessorCount.
16220         
16221         * icall.c: 
16222         Add Environment.ProcessorCount icall.
16223         
16224         Patch by Jason McFall.
16226 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16228         * assembly.c: don't append .exe/.dll when the filename already contains
16229         one of those extensions.
16231 2006-09-12  Martin Baulig  <martin@ximian.com>
16233         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
16234         to array interfaces.
16236 2006-09-11  Martin Baulig  <martin@ximian.com>
16238         * reflection.c (mono_image_build_metadata): Create the
16239         MethodImpl's after emitting all types and methods, so we don't
16240         need another fixup pass for them.
16242 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
16244         * class.c (mono_class_from_name_case): Fix regression introduced by the last
16245         change.
16247 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
16249         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
16250         unload.
16252 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
16254         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
16255         args is not set. Fixes #78926.
16257 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
16259         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
16261         * image.c (load_class_names): Move this to class.c, and rename it to 
16262         'mono_image_init_name_cache'.
16263         (load_modules): Fix a warning.
16265         * class.c icall.c image.c: Initialize image->name_cache lazily.
16267         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
16268         on its name using information in the AOT file.
16270         * class.c (mono_class_from_name): Use the new hook function.
16272 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
16274         * reflection.c (mono_param_get_objects): Handle enum default parameter values
16275         correctly.
16277         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
16278         Fixes #79289.
16279         
16280 2006-09-06  Martin Baulig  <martin@ximian.com>
16282         * icall.c (mono_lookup_internal_call): Small fix.
16284 2006-09-05  Raja R Harinath  <rharinath@novell.com>
16286         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
16287         double g_free.
16289 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
16291         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
16292         when --debug is specified.
16294 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
16296         * class.c (setup_generic_array_ifaces): Fix a warning.
16298 2006-09-04  Miguel de Icaza  <miguel@novell.com>
16300         * Temporarily remove the patch to assemly.c that checks the
16301         assembly versions as it breaks our gacutil.
16303 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
16305         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
16307         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
16308         a net 1.0 runtime.
16310         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
16311         created using the default ctor. Fixes #79152.
16312         (mono_string_builder_to_utf16): Ditto.
16314 2006-09-01  Martin Baulig  <martin@ximian.com>
16316         Fix handling of the generic array interfaces.
16318         * class-internals.h
16319         (MonoDefaults): Removed `generic_array_class' and added
16320         `generic_ilist' class.
16322         * class.c
16323         (mono_bounded_array_class_get): Add the new generic array interfaces.
16324         (setup_generic_array_ifaces): New static method; create vtable
16325         entries for each method in the generic array interfaces.
16327         * metadata.c
16328         (select_container): Allow "parent-less" generic methods.
16330         * marshal.c
16331         (mono_marshal_get_generic_array_helper): New public method.
16333         * icall.c
16334         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
16335         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
16336         moved the interncall into System.Array.
16338 2006-09-01  Raja R Harinath  <rharinath@novell.com>
16340         A few more cases of avoiding work on types with ->byref set.
16341         Has the real fix for #79238
16342         * icall.c (is_generic_parameter): New helper.
16343         (ves_icall_Type_GetGenericParameterPosition): Use it.
16344         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
16345         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16346         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
16347         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
16348         reference types.
16349         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
16350         reference types.
16351         (ves_icall_Type_get_IsGenericInstance): Likewise.
16352         (ves_icall_Type_get_IsGenericType): Likewise.
16354 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16356         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
16357         class if possible.
16359         * mempool.h (mono_mempool_get_allocated): New helper function.
16361         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
16362         change.
16364         * mempool.c: Fix warnings and the calculation of stats.
16366         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
16368         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
16370         * loader.c (mono_get_method_from_token): Update method_count stat.
16372         * class-internals.h (MonoStats): Add some stats.
16374 2006-08-31 Robert Jordan  <robertj@gmx.net>
16376         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
16377         with managed variants.
16378         All code is contributed under the MIT/X11 license.
16379         
16380 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
16382         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
16383         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
16385         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
16387         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
16388         with cycles in classes.
16390         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
16392         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
16393         missing a [MarshalAs] directive. Fixes #79203.
16395         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
16396         klass->marshal_info. Fixes #79217.
16398 2006-08-30  Martin Baulig  <martin@ximian.com>
16400         Committing a patch from Joachim Ante <joe@otee.dk>:
16401         Add support for binary data symbol stores.
16403         * debug-mono-symfile.c
16404         (mono_debug_open_mono_symbol_file): Renamed into
16405         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
16406         arguments.
16408         * mono-debug.c
16409         (mono_debug_open_image): Added `raw_contents' and `size' args.
16410         (mono_debug_init_2_memory): New public function.
16412 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
16414         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
16416 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16418         * appdomain.c: implement support for ShadowCopyFiles.
16420 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
16422         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
16423         when value is NULL (and should remove CID #51).
16425 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16427         * image.c: moved 2 functions to ../utils.
16429 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
16431         * gc.c: cope with the target object of a GC handle being NULL
16432         (bug #78877).
16434 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16436         * class.c: recursively check parent's explicit implementations
16437         of interface methods (fixes bug #79125).
16439 2006-08-19  Miguel de Icaza  <miguel@novell.com>
16441         * filewatcher.c: Avoid warnings when building, do not redefine
16442         constants that are defined.
16444         Remove warnings.
16446 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16448         * image.c: don't fail when the link points to an absolute path.
16450 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
16452         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
16453         Fix CID #3.
16455 2006-08-17  Miguel de Icaza  <miguel@novell.com>
16457         * image.c (full_path): A new method used to obtain the actual path
16458         of an assembly even in the presence of symbolic links.  
16460         This is necessary for the case where we are running a binary that
16461         has been GACed, but we are using the "published" path name
16462         ($prefix/mono/1.0/blah.exe) which happens to point to the real
16463         file in the GAC.
16465         This was the source of the failure for the `xsp' command with the
16466         recent AppDomain changes, as far as the runtime was concerned,
16467         there were two different assemblies: $prefix/mono/1.0/blah.exe and
16468         $prefix/mono/gac/blah/version/blah.exe.
16470         (do_mono_image_open): use full path
16472 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16474         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
16476 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
16478         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
16479         domain_id is supplied. Fix CID #241 and corlib's unit tests.
16481 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16483         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
16484         small structures. Fixes #78990.
16486 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16488         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
16490         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
16492 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16494         * appdomain.c:
16495         * marshal.c: don't load all the assemblies from a domain into newly
16496         created ones. The new domains might have different rules and load
16497         assemblies from different locations. Fixes bug #76757.
16499         Patch by Lluis. Conflicts resolved by Brian Crowell.
16501 2006-08-16  Alp Toker  <alp@atoker.com>
16503         * socket-io.c: First half of the fix for #79084.
16504         Set sa_size to the length of the content, not that of the struct.
16505         Don't add NULL suffix to the content, this should be done in
16506         managed code if needed.
16508 2006-08-14  Raja R Harinath  <rharinath@novell.com>
16510         Fix part of #79012
16511         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
16512         mono_metadata_parse_type returns NULL.
16514 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
16516         * normalization-tables.h : new file for string normalization data.
16517         * locales.c, locales.h, icall.c :
16518           added load_normalization_resource() for string normalization,
16519           and icall as well.
16520         * Makefile.am : added normalization-tables.h to the sources.
16522 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
16524         * marshal.c: Add more helper functions to reduce code duplication and use them
16525         everywhere.
16527 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16529         * marshal.c: Fix non-x86 stdcall warnings.
16530         
16531         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16532         them everywhere.
16534 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16536         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16537         type check on multi-dimensional arrays. Fixes #79000.
16539 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16541         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16542         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16543         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16544         * class-internals.h: add is_com_object to class structure.
16545         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16546         null checks to COM object marshalling. Fix .ctor call on RCW.
16547         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16548         
16549         All code is contributed under the MIT/X11 license.
16551 2006-08-09  Dick Porter  <dick@ximian.com>
16553         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16554         racing mono_monitor_allocator_lock() somewhere, so don't delete
16555         the critical section for now.  Found by running and exiting
16556         monodevelop.
16558 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16560         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16561         (ves_icall_System_ComObject_FindInterface): Ditto.
16562         (ves_icall_System_ComObject_CacheInterface): Ditto.
16564         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16565         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16567 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16569         * threadpool.c: treat pipes from process asynchronous reads as sockets
16570         when reading from them, so we get select/poll or epoll to wait for
16571         data.
16573 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16575         * loader.c: Fix a typo (CID #233) in the null check.
16577 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16579         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16580         Hopefully fixes #78949.
16581         
16582         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16583         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16584         bytes. Fixes #78972.
16586 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16588         * filewatcher.c: we need to set errno here.
16590 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16592         * filewatcher.c: let Win32Exception get the error value.
16594 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16596         * filewatcher.c: translate errno into win32 errors for Win32Exception
16597         to know what happened.
16599 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16601         * threadpool.c: Fix more warnings.
16603         * assembly.c (search_loaded): Fix warnings.
16605         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16606         (mono_async_invoke): Ditto.
16608 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16610         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16611         entries for __ComObject type in addition to ComImport types.
16612         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16613         about hash table.
16614         
16615         All code is contributed under the MIT/X11 license.
16617 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16619         * image.c: avoid tentative loading of modulerefs that contain
16620         no metadata (P/Invoke library names).
16622 2006-07-28  Dick Porter  <dick@ximian.com>
16624         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16625         mono_loader_lock() somewhere, so don't delete the critical section
16626         for now.  Found by running and exiting monodevelop.
16628 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16630         * filewatcher.c: define the inotify syscalls when we're building on
16631         linux and have sys/syscall.h. The build system might not have support
16632         for inotify but the target system might have it.
16634 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16636         * domain.c: Documentation updates.
16638         * loader.c (mono_free_method): Do not release the method
16639         information if we are being profiled, as profilers will use this
16640         information at shut down to present some data to the user.
16642         This is needed so that the profiler does not crash, as the
16643         profiler tends to keep MonoMethods around, and they might become
16644         invalid if we free these.
16646         (mono_get_method_constrained): Return the original CIL stream
16647         method as well, so verification can be performed against it.
16649 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16651         * filewatcher.[ch]: support for inotify file system watcher.
16652         * icall.c: add new internal calls for the inotify file system watcher.
16654 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16656         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16657         #78888.
16659 2006-07-20  Dick Porter  <dick@ximian.com>
16661         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16662         warning.
16664 2006-07-20  Dick Porter  <dick@ximian.com>
16666         * threads.c (start_wrapper): Do the thread cleanup while we still
16667         hold a reference to its object.  Fixes bug 78123.
16669 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16671         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16672         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16673           "managed-to-managed".
16674         * icall.c: Redirect string constructors that take sbyte* to
16675           ves_icall_System_String_ctor_RedirectToCreateString.
16676         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16677           to CreateString () methods with matching signature.
16678         * reflection.c: Use original security informations for
16679           MONO_WRAPPER_MANAGED_TO_MANAGED.
16680         * security-manager.c: Use original security informations for
16681           MONO_WRAPPER_MANAGED_TO_MANAGED.
16682         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16683           that is a placeholder and only its address should be used.
16684         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16685           that is a placeholder and only its address should be used.
16687 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16689         Begin implementing COM Interop.
16690         * appdomain.c: Increment corlib version.
16691         * class.c: Set ComImport classes' parent to __ComObject.
16692         * loader.c: Mark cominterop methods as such.
16693         * domain.c: Add __ComObject class to MonoDefaults structure.
16694         * image.c: Add 2 hashtables to the image for COM Interop related methods
16695         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16696         using the mempool allocator
16697         
16698         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16699         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16700         declaration for mono_metadata_type_dup_mp.
16701         
16702         * debug-helpers.c: Added strings for two additional wrapper types
16703         * object.c: Create proxy objects for ComImport classes
16704         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16705         and added __ComObject class to MonoDefaults structure.
16706         
16707         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16708         MonoComInteropProxy and MonoComObject.
16709         
16710         * marshal.c: Added support for COM Interop
16711         (signature_cominterop): Converts managed signature to corresponding
16712         unmanaged COM signature.
16713         (cominterop_get_function_pointer): gets unmanaged function pointer via
16714         COM object vtable
16715         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16716         (cominterop_get_method_interface): returns interface type that method is defined on
16717         (mono_mb_emit_cominterop_call): emits native call to function pointer
16718         gotten from vtable
16719         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16720         that matches signature of unmanaged function.
16721         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16722         (cominterop_get_invoke): forwards call from proxy to __ComObject
16723         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16724         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16725         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16726         
16727         * marshal.h: Added Marshal icall declarations.
16728         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16729         so we can access them in finalizer
16730         
16731 2006-07-14  Dick Porter  <dick@ximian.com>
16733         * object.c (mono_type_initialization_cleanup): Fix a race
16734         condition by temporarily commenting out the critical section
16735         deletion.
16737 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16739         * reflection.c (create_custom_attr): Fix some warnings.
16740         (create_custom_attr_data): Ditto.
16741         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16742         types. Fixes #78855.
16744 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16746         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16748         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16750 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16752         * reflection.c (resolve_object): Add support for DynamicMethod.
16754         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16755         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16757 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16759         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16760         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16762 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16764         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16765         Fixes #77888.
16767 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16769         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16770         slightly: remove a shadow local variable.
16772 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16774         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16775         definition that introduces the virtual function slot.
16776         Also fix Coverity #105.
16778 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16780         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16781         for dynamic assemblies. Fixes #78724.
16783 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16785         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16786         Fixes #78722.
16788 2006-06-21  Martin Baulig  <martin@ximian.com>
16790         * reflection.c
16791         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16792         fixes #76484.
16794 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16796         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16798 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16800         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16801         nor TYPEREFs.
16802         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16803         Inflate result if necessary.
16804         (mono_class_get_full): Remove old version.  Rename from
16805         'mono_class_get' and add 'context' argument.  Pass it to
16806         ..._create_from_typespec.
16807         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16808         (mono_ldtoken): Revert change below.
16810 2006-06-20  Martin Baulig  <martin@ximian.com>
16812         * class.c (mono_ldtoken): Don't pass the generic context to
16813         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16815 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16817         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16818         and later freeing it. Fixes #78638.
16820 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16822         * icall.c (mono_class_get_throw): Revert over-zealous error
16823         throwing, the caller for mono_class_get_throw will cope with
16824         errors when classes are not properly initialized already.
16826         The code still copes with loader exceptions though.
16828         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16829         
16830 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16832         Fixes the `make run1' version of RuntimeAbort (to be commited,
16833         source is in Bugzilla).
16834         
16835         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16836         FALSE on class loading failure instead of returning true.
16838         * class.c (mono_class_create_from_typedef): It is possible for
16839         mono_metadata_interfaces_from_typedef_full to fail if a class is
16840         not found, cope with this.
16841         
16843 2006-06-14  Dick Porter  <dick@ximian.com>
16845         * socket-io.c: 
16846         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16847         4.1.1
16849 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16851         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16853 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16855         * icall.c: Another fix for building mono in Visual Studio.
16857 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16859         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16860         
16861 2006-06-09  Martin Baulig  <martin@ximian.com>
16863         * debug-mono-symfile.c: Put this back and really fix it this
16864         time. Sorry for all the trouble.
16866 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16868         * icall.c (mono_class_get_throw): Fix a warning.
16869         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16870         ReflectionTypeLoadException if needed. Fixes #78606.
16872         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16873         (mono_class_init): Ditto.
16875         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16876         ref_only exceptions.
16877         (mono_loader_clear_error): Make this work even if there is no error.
16879 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16881         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16882         Marshal.GetComSlotForMethodInfo using internal call.
16884 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16886         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16887         a function for signalling it.
16889         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16890         a referenced assembly is not found.
16892         * loader.c (mono_loader_error_prepare_exception): Add support for 
16893         LOADER_ERROR_ASSEMBLY. Fix formatting.
16895 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16897         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16898         for VARIANT marshalling on windows and increment corlib version
16899         since Variant struct was added.
16901 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16903         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16904         stack trace line information:
16906         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16907         (Martin) when looking up B which is between A and C, return A not C.
16909         Bug is #78573.
16911         Thanks to Alexander Olk for tracking this down.
16913 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16915         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16916         
16917         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16918         avoid clobbering its value.
16919         (mono_string_to_lpstr): Fix a warning on windows.
16921 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16923         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16925         * reflection.c loader.c: Removed references to 'dummy' flag.
16927         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16929         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16930         it gets GC tracking.
16932         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16933         GC tracking.
16934         
16935         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16937         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16939         * appdomain.c: Bump corlib version.
16941 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16943         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16944         CEE_STIND_REF when working with object references.
16946 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16948         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16949         Fixes #78539.
16951 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16953         * loader.c (method_from_memberref): Fix argument value for
16954         mono_loader_set_error_method_load (I was passing the MonoClass
16955         instead of the class name char *).
16957 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16959         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16960         CEE_STIND_REF when working with object references.
16962 2006-05-30  Martin Baulig  <martin@ximian.com>
16964         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
16965         mono_method_full_name() change and replace the ':' with a '.'
16966         here.
16968 2006-05-30  Martin Baulig  <martin@ximian.com>
16970         * debug-mono-symfile.c
16971         (mono_debug_symfile_lookup_location): Fix the algorithm:
16972         when looking up B which is between A and C, return A not C.
16974 2006-05-29  Martin Baulig  <martin@ximian.com>
16976         * mono-debug.h
16977         (MonoDebugMethodInfo): Make the typedef public.
16978         (MonoDebugSourceLocation): New public struct.
16980         * mono-debug.c
16981         (mono_debug_source_location_from_address): Removed.
16982         (mono_debug_source_location_from_il_offset): Removed.
16983         (mono_debug_il_offset_from_address): Removed.
16984         (mono_debug_address_from_il_offset): Removed.
16985         (mono_debug_lookup_method): New public function.
16986         (mono_debug_lookup_source_location): New public function; replaces
16987         the old mono_debug_source_location_from_*() functions; see the
16988         inline documentation.
16989         (mono_debug_free_source_location): New public function.
16990         (mono_debug_print_stack_frame): New public function; see the
16991         inline documentation.
16993         * debug-mono-symfile.c
16994         (mono_debug_find_source_location): Renamed into
16995         mono_debug_symfile_lookup_location(); only take a
16996         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16997         documentation.
16998         (mono_debug_find_method): Renamed into
16999         mono_debug_symfile_lookup_method().
17001 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
17003         * assembly.c (mono_assembly_open_full): Dont overwrite the status
17004         returned by mono_image_open_full ().
17006         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
17007         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
17008         #78517.
17010         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
17011         #78518.
17013 2006-05-27  Miguel de Icaza  <miguel@novell.com>
17015         * class.c (mono_class_from_typeref): handle missing images
17016         earlier, deals with bug #78418.   Refactor code; 
17018         Fix a warning introduced in my previous commit (some stale code
17019         from before I revisited my patch).
17021         * class.c (mono_class_create_from_typedef): On failure, remove the
17022         class from the MonoImage->class_cache as the class is not
17023         initialized;   Fixes the leak pointed out by Paolo.
17025 2006-05-25  Dick Porter  <dick@ximian.com>
17027         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
17028         DeleteCriticalSections until I figure out which one may still be
17029         sometimes locked when mono_thread_cleanup is called.
17031 2006-05-24  Dick Porter  <dick@ximian.com>
17033         * threads.c (mono_thread_cleanup): Move the threading cleanup out
17034         of mono_thread_manage and back into its own function, so it can be
17035         called after the finalizer thread has finished.
17037         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
17039 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
17041         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
17042         Fixes #78495.
17044         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
17045         with non-blittable elements.
17046         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
17048 2006-05-24  Martin Baulig  <martin@ximian.com>
17050         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17051         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
17053         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
17054         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
17055         `mono_debugger_event_handler' to NULL.
17057 2006-05-24  Martin Baulig  <martin@ximian.com>
17059         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
17061 2006-05-24  Martin Baulig  <martin@ximian.com>
17063         * mono-debug-debugger.h
17064         (mono_debugger_create_notification_function): Added
17065         `MonoCodeManager *' argument.
17067 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
17069         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
17071 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
17073         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
17074         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
17075         implementation.
17077 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
17079         * icall.c: precise GC support: objects can't be stored in unmanaged
17080         memory anymore, even if they are kept alive by other references: since
17081         they can move the GC needs to be able to always find them.
17083 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17085         * object.c: precise GC support for static fields. Support
17086         for moving GCs: write barriers and pinned allocation for interned
17087         strings.
17089 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17091         * domain.c, domain-internals.h: precise GC support for the MonoDomain
17092         structure.
17094 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17096         * class.c, gc.c: sgen and precise GC updates.
17098 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
17100         * marshal.h, marshal.c: added write barrier wrapper and precise type
17101         fixes.
17103 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
17105         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
17106         support.
17108 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17110         * reflection.c: precise and sgen GC updates.
17112 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
17114         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
17116 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
17118         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
17120 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
17122         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
17123         MONO_TYPE_OBJECT. Fixes #78462.
17125 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
17127         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
17128         and blittable types.
17130 2006-05-17  Miguel de Icaza  <miguel@novell.com>
17132         * class.c (mono_class_get_exception_for_failure): Implement parts
17133         of a TODO: if the loader error is set (instead of the class
17134         error), we return a Loader exception that can be properly thrown
17135         elsewhere.
17137         This was exposed by some Winforms 2.0 code that I tried to run
17138         (Atsushi pointed me to it).
17140 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
17142         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
17143         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
17144         
17145         * marshal.c (emit_marshal_vtype): Add limited support for 
17146         UnmanagedType.LPStruct. Fixes #78427.
17148         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
17149         Applied a patch from kangaroo to fix #77523.
17151 2006-05-17  Martin Baulig  <martin@ximian.com>
17153         * threads.c
17154         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
17155         (debugger_thread_created): Removed.
17156         (debugger_thread_exited): Removed.
17158 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
17160         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17162         * object-internals.h (MonoReflectionResource): Sync with managed version.
17164 2006-05-12  Wade Berrier <wberrier@novell.com>
17166         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
17168 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
17170         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
17171         functions try to allocate from the image mempool.
17173 2006-05-12  Dick Porter  <dick@ximian.com>
17175         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
17177 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
17179         * object.c: The FieldGetter and FieldSetter methods require the full
17180         name of the class, not only the name. Fixes bug #78277.
17182 2006-05-11  Miguel de Icaza  <miguel@novell.com>
17184         * loader.c (method_from_memberref): Do not pass the NULL klass to
17185         mono_loader_set_error_() methods.  Pass the non-NULL value
17186         (class). 
17188 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
17190         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
17191         (mono_assembly_close): Null out assembly->image->references after freeing it.
17193         * image.c (mono_image_close): Free image->references.
17194         
17195         * reflection.c (mono_image_basic_init): Fix a small memory leak.
17197 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17199         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
17200         before checking if it's NULL (g_assert).
17202 2006-05-10  Martin Baulig  <martin@ximian.com>
17204         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
17205         I thought I already killed that two months ago, but now it somehow reappeared.
17207 2006-05-10  Martin Baulig  <martin@ximian.com>
17209         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
17211 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
17213         * reflection.c: Allocate memory for dynamically created methods in the image
17214         mempools.
17216 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17218         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
17219         don't use the ad pointer before checking if it's NULL (g_assert).
17221 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
17223         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
17224         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
17226         * marshal.c: Allocate all signatures from mempools.
17228         * marshal.c: Allocate some more signatures from mempools.
17230 2006-05-09  Miguel de Icaza  <miguel@novell.com>
17232         * object.c (mono_load_remote_field): The code used to provide a
17233         temporary variable for returning results if the user did not
17234         provide a result pointer.  But our temporary variable was allocted
17235         on the satck.
17237         Fix calling code to always pass a result area.   Coverity ID 103.
17239 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
17241         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
17242         value, not the old. Fixes #78312.
17243         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
17245         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
17246         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
17247         per-image cache.
17249         * assembly.c (mono_assembly_close): Free image->references.
17251         * assembly.c (mono_assembly_names_equal): Fix a warning.
17252         (mono_assemblies_cleanup): Cleanup more global data.
17254         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
17256         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
17257         ptr_cache and image->modules.
17259         * image.c (mono_image_init): Allocate array_cache lazily.
17260         
17261 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17263         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
17264         behavior was changed recently and has bad side effects.
17266 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
17268         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
17269         
17270         * assembly.c (mono_assembly_close): Remove a debug printf.
17272         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
17274         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
17275         to also allow for temporary references between mono_image_open ()/close ().
17277         * domain.c (get_runtimes_from_exe): Add a FIXME.        
17279 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
17281         * marshal.c: Fix support for dynamic methods.
17283         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
17285         * marshal.c (mono_marshal_cleanup): New cleanup function.
17287         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
17288         image mempools.
17290         * class.c (mono_class_init): Fix leaking class->nested_classes.
17292         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
17294         * image.c (mono_image_init): Initialize the new cashes.
17296         * image.c (mono_image_close): Destroy the new cashes.
17298         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
17300         * mempool.c (mono_mempool_strdup): New helper function.
17302         * class-internals.h: Add prototype for mono_loader_unlock ().
17304         * domain.c (mono_jit_info_table_find): Fix a warning.
17305         (mono_debugger_check_runtime_version): Ditto.
17307         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
17308         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
17309         functions to these modules.
17311         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
17312         metadata modules.
17313         
17314         * marshal.c (mono_free_bstr): Fix a warning.
17316         * assembly.c (mono_assembly_open_full): Fix another small leak.
17318         * object.c: Fix some unload leaks in the remoting code.
17320         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
17321         function.
17323         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
17325         * reflection.c: Fix some unload leaks in dynamic assemblies.
17327 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
17329         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
17330         * marshal.h: Add BSTR support on Win32
17331         * icall.c: Add BSTR icalls
17332         * metadata.h: Add BSTR enums
17334 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17336         Work to catch the crash from #76795 and turn it into an
17337         exception.   As I stubbed out pieces of the VisualBasic support,
17338         I found a number of places where the code was failing and I added
17339         checks to those places. 
17340         
17341         * metadata.c (do_mono_metadata_parse_generic_class): Make this
17342         function return a status code.  If we fail to parse the signature
17343         from mono_metadata_parse_generic_inst, return FALSE.
17345         * loader.c (mono_get_method_from_token): If we fail to load the
17346         method (mono_class_get) return NULL.   
17348         * (method_from_memberref): Return NULL if we are unable to parse
17349         the method signature
17351         (mono_loader_error_prepare_exception): Since we now use the
17352         loader_error flag internally to stop processing, and obtaining
17353         exceptions that might be thrown will walk this code path the
17354         proper way of going from a MonoLoaderError into a
17355         MonoException was convoluted.   This new routine encapsulates the
17356         process of turning the error into an exception and *clearing* the
17357         error afterwards.
17358         
17359 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17361         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
17362         with missing assemblies), and to cope with:
17364                 * Missing fieldref from a non-existing assembly.
17365                 * Missing methodref from a non-existing assembly.
17367         The first batch of work to address *some* of the issues from 76661.
17368         
17369         * object.c (mono_class_create_runtime_vtable): If we fail to
17370         initialize the class raise the exception here. 
17372         * metadata.c (mono_class_get_overrides_full): If any methods fail
17373         to load return the failure to the caller.
17375         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
17376         flagging assemblies that failed to load.   
17378         Do not crash if we are unable to load the assembly.
17380         (mono_assembly_close): Do nothing with REFERENCE_MISSING
17381         assemblies. 
17383         * loader.c (mono_loader_set_error_type_load): Change the
17384         convention to always pass unallocated strings, so we make our own
17385         copies (I know our own code had duplicated strings before, but
17386         this keeps the normal conventions).
17387         (method_from_memberref): Call mono_loader_set_error_method_load
17388         for all possible failures of loading the class. 
17389         Remove assert, turn into a loader error.
17391         (mono_loader_error_to_exception): Move this routine from mini
17392         (mini_loader_error_to_exception) there was no need to have that in
17393         mini. 
17395         * class.c (mono_class_from_typeref): If we were not able to load
17396         the assembly with mono_assembly_load_reference, call the
17397         mono_loader_set_error_type_load to register the problem.
17399         (mono_class_setup_fields): If we fail to load the type from
17400         mono_metadata_parse_type_full, call mono_class_set_failure and
17401         break from the loop.
17403         If class->exception_type is set, we do not layout the fields as
17404         that might crash the runtime, and instead return (from breaking
17405         from the previous loop).
17407         (mono_class_setup_vtable): This now returns a boolean indicating
17408         whether the table was properly setup.   The decision is driven by
17409         mono_class_get_overrides_full which might run into non-existing
17410         methods. 
17411         
17412         (mono_class_init): Returns TRUE on success or FALSE if there was a
17413         problem in loading the type (incorrect assemblies, missing
17414         assemblies, methods, etc).
17416         When we call mono_class_setup_fields we also check for a potential
17417         error inside this call (either a class exception or a general
17418         loader exception).
17420         (mono_class_create_from_typedef): If the parent fails to load
17421         (calling mono_class_get_full) return NULL.
17422         
17423         ** Important **
17425         calls to mono_metadata_parse_type_full should be checked
17426         everywhere and set the mono_class_set_failure
17427         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
17429         The current patch checks the places where my manually constructed
17430         tests show the errors are showing up, but we should do it
17431         everywhere. 
17433         ** Important2 **
17435         mono_class_init return values should be tested everywhere, like
17436         the previous case this is something that we should audit
17437         everywhere and not only on the cases exposed by the tests I
17438         created. 
17440 2006-04-26  Miguel de Icaza  <miguel@novell.com>
17442         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
17443         boolean parameter and instead pass the information on `options'
17444         parameter (FileOptions).
17446         * icall.c: Register the new signature for MonoIO.Open.
17448         * debug-helpers.c (dis_one): Trying to understand how coverity
17449         works.  Fix Run 5, item 78.
17451 2006-04-26  Dick Porter  <dick@ximian.com>
17453         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
17454         dereference.
17456 2006-04-25  Martin Baulig  <martin@ximian.com>
17458         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
17460         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
17461         debugger_thread_created().
17462         (debugger_gc_push_all_stacks): Don't handle the main thread in any
17463         special way.
17464         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
17465         (mono_debugger_finalize_threads): New function; undo the effects
17466         of mono_debugger_init_threads().
17467         (mono_debugger_create_all_threads): Removed.
17469 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17471         * image.c (mono_image_close): Tidy up trace messages.
17473         * assembly.c (mono_assembly_close): Ditto.
17475         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
17476         no longer references an already freed assembly. Fixes #78168.
17478 2006-04-21  Dick Porter  <dick@ximian.com>
17480         * threads.c (mono_thread_detach): Fix reference counting when
17481         detaching threads.
17483 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
17485         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
17486         #78155.
17488 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17490         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
17491         (mono_type_to_stind): Ditto.
17493         * marshal.c: Use the new helper functions to simplify code.
17495         * image.c (mono_image_close): Add some code for help debug assembly unloading
17496         problems.
17498         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
17499         image mempool.
17501         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
17502         assembly was already loaded in another appdomain. Fixes #78083.
17504 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
17506         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
17507         referenced assemblies.
17508         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
17510         * domain.c (mono_domain_free): Add a trace message.
17512         * appdomain.c (add_assemblies_to_domain): Ditto.        
17514         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
17515         field.  
17517 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17519         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
17521 2006-04-12  Martin Baulig  <martin@ximian.com>
17523         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
17524         `USE_INCLUDED_LIBGC'.   
17526 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17528         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17529         the patch contains ../ and a small directory name later. Hopefully fixes
17530         #78035.
17532 2006-04-10  Martin Baulig  <martin@ximian.com>
17534         Clean up the debugger's thread-handling code.
17536         The debugger's thread-handling code has been moved from
17537         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17538         over the `threads' hash, keep track of exiting threads and also
17539         use proper locking.
17541         We can now debug XSP and XSP based applications with the debugger.
17543         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17545         * threads.h
17546         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17547         (mono_install_thread_callbacks): Likewise.      
17549         * threads.c (mono_thread_callbacks): Removed.
17550         (debugger_thread_created, debugger_thread_exited): New static functions.
17551         (start_wrapper): Call debugger_thread_created().
17552         (thread_cleanup): Call debugger_thread_exited().
17553         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17554         (mono_debugger_init_threads): New public function.
17555         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17556         iterate directly over the `threads' hash and also use proper locking.
17558         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17560         * mono-debug-debugger.h
17561         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17563 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17565         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17566         argument type=array. Fixes #78057.
17568 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17570         * culture-info-table.h : regenerated. Fixed bug #69652.
17572 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17574         * loader.c metadata.c: Reapply a variant r59116.
17575         
17576         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17578         * class.c (mono_class_setup_interface_offsets): New internal function.
17580         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17581         interfaces too. Fixes #77398.
17583         * reflection.c (encode_cattr_value): Add support for 
17584         parameter type=object, argument type=array.
17585         (load_cattr_value): Ditto. Fixes #77916.
17587         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17588         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17590         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17591         a byval char array and CharSet is Ansi.
17593         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17595 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17597         * metadata.c: Add some locking comments.
17598         
17599         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17600         mempool.
17601         (mono_metadata_free_method_signature): Don't free the signature itself.
17603         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17605         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17606         reference the same MonoImage.
17607         (mono_assembly_load_from_full): Add an assert.
17609 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17611         * image.c (mono_image_close): Don't put the image we are about to free into the
17612         loaded_images_guid_hash.
17614         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17615         to reduce code duplication.
17617         * marshal.c: Register the native functions called by this module as icalls, to
17618         somewhat centralize the creation of MonoMethodSignature's.
17620         * loader.c (mono_method_signature): Add a cache for method signatures.
17622         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17623         the parameter attributes of a method.
17624         (mono_metadata_parse_method_signature_full): Refactored the computation of
17625         parameter attributes into a separate function. Also avoid one allocation in
17626         most cases.
17628         * assembly.c (mono_assembly_close): Ditto.
17630         * image.c (mono_image_close): Log trace messages with INFO level.
17632         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17634         * image.c reflection.c: Correct reference counting of image modules.
17635         
17636         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17637         of this function from the image mempool.
17638         
17639         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17640         to allow more cached types to be used.
17642         * mono-debug.c (mono_debug_add_method): Appled patch from
17643         David S. Miller  <davem@sunset.davemloft.net>: Access 
17644         minfo->lexical_blocks[] entry elements using read32().
17646 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17648         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17649         methods as it is allocated from the mempool.
17651         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17652         image mempool.
17654         * metadata-internals.h: Add comments describing the reference counting scheme
17655         used for MonoImage and MonoAssembly.
17657         * image.c assembly.c reflection.c: Rework reference counting of images and 
17658         assemblies so they are freed when the runtime is shut down. Free some 
17659         additional memory structures when an image is unloaded.
17660         
17661 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17663         * class.c loader.c reflection.c: Allocate more data structures in
17664         the image mempool.
17666 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17668         * icall.c
17669         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17670         build on pre glib 2.4 systems.
17672 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17674         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17676         * icall.c: Fix some warnings.
17678 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17680         * culture-info-table.h : regenerated.
17682 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17684         * threads.c, object-internals.h, verify.c: changed the culture caching
17685         code to use a normal MonoArray for storage so the GC can keep track of
17686         them easily. Fixed bits of the cache logic, too and simplified the
17687         code.
17689 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17691         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17692         thread for non-Boehm GCs.
17694 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17696         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17697         needed to keep track of the data for static fields.
17699 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17701         Fix #75172
17702         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17703         for interface classes.  Use 'num_methods' instead.
17704         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17705         before using '->vtable_size' field.
17707 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17709         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17710         doesn't contain managed pointers, so use a normal hashtable.
17712 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17714         * reflection.c, class-internals.h, domain.c: fixed handling of types
17715         used as values for objects in custom attributes (bug #77915):
17717 2006-03-24  Martin Baulig  <martin@ximian.com>
17719         * class.c (mono_class_setup_fields): Added support for generic
17720         instances; fixes #77580.
17722 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17724         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17726 2006-03-24  Dick Porter  <dick@ximian.com>
17728         * file-io.c (get_file_attributes): More stat macro breakage.
17729         Fixes bug 77759.
17731 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17733         * profiler.c: added the file=filename option in the default profiler
17734         to output the profile data to filename.
17736 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17738         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17739         bug #77877.
17741 2006-03-22  Martin Baulig  <martin@ximian.com>
17743         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17744         allocated `MonoClassField *' in `fb->handle'.
17746 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17748         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17749         allocate interface ID to save memory and allow better ID reuse on
17750         appdomain unload. setup_generic_vtable () removal from Martin.
17752 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17754         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17755         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17756         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17757         write barriers for reference stores with managed objects accessed with
17758         C structures in the runtime and in embedding programs.
17760 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17762         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17763         'interface_id' and 'max_interface_id' fields of MonoClasses
17764         representing open generic types.
17766 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17768         * object.h, object.c, icall.c: added functions to deal with
17769         storing valuetypes that contain references in managed objects.
17770         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17771         fixes and comments around uses of mono_array_addr ().
17773 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17775         * object.h, icall.c, monitor.c: object.GetHashCode ()
17776         implementation that supports the moving garbage collector.
17778 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17780         * icall.c, threads-types.h, threads.c: implemented finalizer for
17781         LocalDataStoreSlot.
17783 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17785         * metadata.c (mono_type_size): Add a fixme.
17786         (mono_type_stack_size): Ditto.
17788         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17789         'type_forwarders' field.
17791         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17792         attribute from net 2.0.
17794         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17795         from class.c.
17797         * class.c (mono_class_setup_fields): Fix a warning.
17798         
17799         * class.c (mono_class_from_name): Add support for assemblyref entries
17800         in the EXPORTEDTYPE table.
17802         * reflection.c: Add support for handling type forwarders under net 2.0.
17804         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17805         
17806 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17808         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17809         overwriting entries in ModuleBuild->types, also clean up the code
17810         a little. Fixes #77774.
17812 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17814         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17815         load friend assembly info when present.
17817 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17819         Fix crasher on gtest-158.cs.
17820         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17821         the return value if the MonoClass we want is yet in an
17822         inconsistent state.
17823         * class.c (mono_class_create_from_typedef): Add an comment
17824         explaining an order dependency between mono_class_setup_parent and
17825         mono_class_setup_mono_type.
17827 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17829         * class.c: documentation updates and events bug fix.
17831 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17833         * class.c: some cleanup, locking fixes.
17835 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17837         * class.c: fix the generics code to setup nested
17838         type info to the instantiated type (bug #77770).
17840 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17842         * marshal.c: fixed a few type correctness issues.
17844 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17846         * loader.c: the Set/Get/Addrtess array methods should be public.
17848 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17850         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17851         
17852         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17853         info->wrapper.
17855 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17857         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17859         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17861         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17862         (mono_mempool_alloc0): Ditto.
17864 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17866         * socket-io.c:
17867         (create_object_from_sockaddr): it was allocating 4 extra bytes
17868         for the AF_UNIX data. Fixes bug #77747.
17870 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17872         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17874 2006-03-09  Dick Porter  <dick@ximian.com>
17876         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17877         Fixes bug 76966 again.
17879 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17881         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17882         names from r57532
17883         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17885 2006-03-07  Martin Baulig  <martin@ximian.com>
17887         * object.c
17888         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17890 2006-03-07  Martin Baulig  <martin@ximian.com>
17892         * class.c
17893         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17894         regression introduced in r56970; see gtest-252.cs.
17896         * loader.c (mono_get_method_constrained): Correctly handle generic
17897         methods; see gtest-253.cs.
17899 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17901         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17903 2006-03-04  Martin Baulig  <martin@ximian.com>
17905         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17906         compute the parent type at runtime, just like we're already doing
17907         it for interfaces.
17909         * reflection.c
17910         (mono_reflection_bind_generic_parameters): Don't compute the
17911         parent type anymore.
17913         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17915 2006-03-04  Martin Baulig  <martin@ximian.com>
17917         * mono-debug-debugger.h
17918         (mono_debugger_create_notification_function): Allocate memory at
17919         runtime and return a pointer to it.
17921 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17923         * assembly.c: Fix windows build.
17924         
17925         * assembly.c: Fix build.
17927         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17929         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17930         
17931 2006-03-03  Dick Porter  <dick@ximian.com>
17933         * process.c
17934         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17935         Check parameters before dereferencing them.  Fixes Aaron's part of
17936         bug 77393.
17938 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17940         Fix performance regression.
17941         * loader.c (find_method_in_class): Add 'from_class' argument.
17942         Rename 'klass' argument to 'in_class'.  The signature is compared
17943         against the method in 'in_class', and the corresponding method is
17944         returned from 'from_class'.
17945         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17946         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17947         type definition and generic instantiation in parallel.
17948         (mono_get_method_constrained): Update to changes.
17950 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17952         * threads.c: make sure the domain is correct, too when doing
17953         mono_thread_attach ().
17955 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
17957         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
17958         windows. Fixes #77683.
17960 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17962         * object.h, *: introduced specific way to set elements of an array
17963         of references to be used as write barrier. Still need to audit the
17964         uses of mono_array_addr.
17966 2006-03-01  Miguel de Icaza  <miguel@novell.com>
17968         * object-internals.h: New field to cache the assmebly name, patch
17969         from Tambet Ingo (tambet@ximian.com)
17971 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17973         * decimal.h, class-internals.h, metadata-internals.h,
17974         file-io.h: mark a few function declarations as internal, to
17975         reduce the number of PLT entries.
17977 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17979         * file-io.c: fix typo in warning message.
17981 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
17983         * loader.c: on unix, lookup the "*A" version of a function
17984         if charset is auto as a second option before failing.
17986 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17988         * class.h (mono_class_inflate_generic_method): Revert to two
17989         argument version.
17990         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17991         (mono_class_inflate_generic_method_full): Add.
17992         * class.c (mono_class_inflate_generic_method_full): Rename from
17993         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17994         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17995         * loader.c, reflection.c: Update to changes.
17997 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17999         * icall.c: const fixes and small improvements.
18001 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18003         * threadpool.c: for asynchronous connect(), enable the same workaround
18004         for BSD 6 as for the Mac. Fixes bug #77637.
18006 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
18008         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
18009         formatted classes. Fixes #77524.
18011 2006-02-24  Raja R Harinath  <rharinath@novell.com>
18013         * class.c (inflate_generic_type): Add a couple more
18014         micro-optimizations.
18015         (inflate_generic_context): Don't use the 'gmethod' from
18016         'inflate_with'.
18017         (mono_class_inflate_generic_method): If the method has generic
18018         parameters, but the passed-in context doesn't have a 'gmethod',
18019         create one.  Use the possibly simplified generic instantiation
18020         from the declaring class instead of the one passed in.
18022 2006-02-24  Raja R Harinath  <harinath@gmail.com>
18024         Make generic method signature and method header handling lazy.
18025         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
18026         (inflate_generic_header): Likewise.
18027         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
18028         parameter to avoid inflating types.
18029         (mono_get_inflated_method): Empty out.
18030         * class.h (mono_class_inflate_generic_method): Update to changes.
18031         * loader.c (mono_get_method_from_token): Don't parse signature for
18032         generic methods, nor methods of generic classes.
18033         (mono_method_signature): Rename from 'mono_method_signature'.
18034         Inflate signature on demand.
18035         (mono_method_get_header): Inflate method header on demand.
18036         * reflection.c: Update to changes.
18038 2006-02-23  Raja R Harinath  <rharinath@novell.com>
18040         * metadata.c (mono_metadata_inflate_generic_inst): If the
18041         instantiation is closed, don't bother expanding it in the new
18042         context.
18043         * class.c (inflate_generic_class): If the generic instantiation
18044         doesn't change after inflation, return the argument itself.
18045         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
18046         Add bounds checks.
18047         (inflate_generic_context): If neither the generic class nor the
18048         generic method instantiations change, return the original context.
18049         * reflection.c (mono_method_get_object): Do
18050         'mono_get_inflated_method' before accessing the ->klass field.
18051         (inflate_mono_method): Don't create a MonoGenericMethod unless
18052         necessary.
18053         (inflate_method): Don't pass a constructed type as the declaring
18054         type of a methodbuilder.
18056 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
18058         * object.c: fix memory overwrite.
18060 2006-02-22  Dick Porter  <dick@ximian.com>
18062         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
18063         it doesn't work any more.
18064         (mono_threads_request_thread_dump): Fix unused variable warnings.
18066 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18068         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
18069         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
18070         the public header file.
18072 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
18074         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
18076 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
18078         * class-internals.h, object.c: reduce the size of MonoVTable
18079         and store the interface_offsets array at negative offsets.
18081 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
18083         * metadata.c: tweak table descriptors data structures to reduce
18084         size and runtime relocations.
18086 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18088         * marshal.c: fix some types and opcodes to be type-safe
18089         in marshaling wrappers.
18091 2006-02-21  Ankit Jain  <jankit@novell.com>
18093         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
18095 2006-02-21  Raja R Harinath  <rharinath@novell.com>
18097         * metadata.c (get_constraints): Relax debugging checks for monodis.
18099 2006-02-21  Ankit Jain  <jankit@novell.com>
18101         * metadata.c (mono_metadata_load_generic_params): Move the code
18102         checking for ambiguous generic params from here to mono/dis/get.c
18103         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
18105 2006-02-21  Raja R Harinath  <harinath@gmail.com>
18107         Fix assertion triggered when compiling nemerle.
18108         * class.c (mono_get_shared_generic_inst): Rename from
18109         get_shared_inst and make non-static.
18110         * loader.c (mono_get_shared_generic_method): New.  Used to create
18111         the MonoGenericContext-equivalent of a MonoGenericContainer.
18112         (mono_get_method_from_token): Initialize the 'context' field of
18113         the created MonoGenericContainer.
18114         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
18115         * metadata.c (get_constraints): Add sanity check.
18116         * class-internals.h: Add new internal methods.
18118         * reflection.c (verify_safe_for_managed_space): New sanity check.
18119         Currently checks that owner-less generic parameters aren't allowed
18120         in managed space.
18121         (mono_type_get_object): Use it.
18122         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
18123         that are now in mono_type_get_object.
18124         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
18126 2006-02-19  Raja R Harinath  <harinath@gmail.com>
18128         * metadata.c (mono_type_create_from_typespec): Rename from
18129         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
18130         argument and caching of types in the generic container.
18131         (unwrap_arrays, find_generic_param): Remove.
18132         * metadata-internals.h: Update.
18133         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
18135 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
18137         * class.c (mono_class_get_exception_for_failure): Fix a warning.
18139         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
18140         return values. Fixes #77581.
18142         * class.c (mono_fnptr_class_get): Switch name and name_space.
18144         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
18145         classes and add support for [In, Out] attributes.
18146         (mono_marshal_free_asany): Ditto. Fixes #77524.
18148 2006-02-18  Raja R Harinath  <harinath@gmail.com>
18150         * class.c (mono_class_from_generic_parameter): Make more robust to
18151         incomplete MonoGenericContainers from monodis.
18153 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18155         * class-internals.h: added some more exception types.
18156         * class.c, metadata.c: added a few checks to handle missing
18157         types.
18159 2006-02-17  Raja R Harinath  <rharinath@novell.com>
18161         Use owner-less generic-params some more.
18162         * class.c (my_mono_class_from_generic_parameter): Remove.
18163         (mono_class_from_generic_parameter): Handle null image,
18164         param->name and param->owner.
18165         (mono_class_from_mono_type): Update.
18166         (mono_class_create_from_typespec): Remove 'container' parameter.
18167         If that parameter is non-null, the result is always inflated by
18168         'mono_class_get_full' anyway.
18169         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
18170         parameter.
18171         (mono_class_get_full): Update.
18173         * class.c (inflate_generic_type) [GENERICINST]: If the generic
18174         instance is not open, don't bother inflating.
18175         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
18176         parse metadata for inflated classes.
18177         (_mono_class_get): Change GenericContext* parameter to
18178         GenericContainer*.
18179         (mono_class_create_from_typespec): Likewise.  Simplify, and
18180         implement trivially.  All the cases are handled in
18181         mono_class_from_mono_type.  Don't inflate returned class.
18182         (mono_class_get_full): Delegate GENERICINST optimization to
18183         inflate_generic_type.
18184         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
18186 2006-02-16  Dick Porter  <dick@ximian.com>
18188         * socket-io.c (create_object_from_sockaddr): Fix typo.
18189         (create_sockaddr_from_object): Check array lengths before
18190         potentially accessing items off the end.
18191         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
18192         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
18193         (ves_icall_System_Net_Sockets_Socket_Send_internal)
18194         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
18195         length checks to avoid wraparound overflows.
18196         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
18197         contents of the array of sockets
18198         (hostent_to_IPHostEntry2)
18199         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
18200         Check return value of inet_ntop ().
18201         (addrinfo_to_IPHostEntry): Fix typo
18203 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18205         Type metadata parsing doesn't use generic-instantiation information.
18206         * metadata.c (mono_metadata_parse_array_full): Change
18207         MonoGenericContext* parameter to MonoGenericContainer*.
18208         (mono_metadata_parse_type_full): Likewise.
18209         (mono_type_create_from_typespec_full): Likewise.
18210         (mono_metadata_parse_mh_full): Likewise.
18211         (mono_metadata_parse_generic_inst): Likewise.
18212         (do_mono_metadata_parse_generic_class): Likewise.
18213         (do_mono_metadata_parse_type): Likewise.
18214         * metadata-internals.h: Update to changes.
18215         * class.c (mono_class_find_enum_basetype): Likewise.
18216         (mono_class_setup_fields): Likewise.
18217         (mono_class_create_from_typespec): Likewise.
18218         * loader.c (method_from_methodspec): Likewise.
18219         (mono_get_method_from_token): Likewise.
18220         (mono_method_get_header): Likewise.
18222 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18224         * marshal.c: handle additional GENERICINST case (patch from
18225         Thong Nguyen <tum@veridicus.com>).
18226         Fix a few cases where LDIND_I/STIND_I was used for references.
18228 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18230         * reflection.c (mono_reflection_get_token): Remove unused variable.
18232 2006-02-16  Martin Baulig  <martin@ximian.com>
18234         * reflection.c (mono_reflection_get_token): Add support for fields
18235         in instantiated generic types.
18237         * icall.c
18238         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
18240 2006-02-15  Martin Baulig  <martin@ximian.com>
18242         * icall.c
18243         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
18244         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
18245         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
18246         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
18248 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18250         * class.c, metadata.c, metadata.h, object.c, icall.c,
18251         marshal.c: changed mono_type_get_underlying_type () to do
18252         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
18253         Fixed handling of instantiated generic valuetypes (bug #75479).
18255 2006-02-15  Raja R Harinath  <rharinath@novell.com>
18257         * metadata.c (mono_metadata_decode_signed_value): Simplify.
18258         Delegate to mono_metadata_decode_value, and work on the returned value.
18260         * icall.c (ves_icall_MonoType_GetGenericArguments):
18261         Add consistency check here too.
18262         
18263 2006-02-15  Ankit Jain  <jankit@novell.com>
18265         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
18266         char/short etc.
18268 2006-02-15  Ankit Jain  <jankit@novell.com>
18270         * metadata.c (mono_metadata_decode_signed_value): New function to decode
18271         signed values, used only for representing lower bounds of arrays.
18272         (mono_metadata_parse_array_full): Use new
18273         mono_metadata_decode_signed_value to decode lower bounds.
18275 2006-02-14  Martin Baulig  <martin@ximian.com>
18277         * reflection.c
18278         (mono_reflection_get_token): Support "MonoGenericMethod" and
18279         "MonoGenericCMethod" and allow generic instances / methods.
18281 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
18283         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
18284         to obtain the terminal size using an ioctl.
18286         * object.c (mono_nullable_init): Revert this as nullable reference
18287         types are not valid.
18288         (mono_nullable_box): Ditto.
18290 2006-02-09  Dick Porter  <dick@ximian.com>
18292         * threads.c (mono_thread_detach): Drop a reference to the thread
18293         we're detaching.
18295 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
18297         * object.c (mono_nullable_init): Handle nullable reference types.
18298         (mono_nullable_box): Ditto. Fixes #77446.
18300 2006-02-07  Martin Baulig  <martin@ximian.com>
18302         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
18304 2006-02-07  Ankit Jain  <jankit@novell.com>
18306         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
18307         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
18308         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
18309         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
18310         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
18311         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
18313 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
18315         * class.c (mono_class_create_generic): Set type_token as well.
18317         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
18318         compatible with MS.
18320 2006-02-02  Martin Baulig  <martin@ximian.com>
18322         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
18323         has never been used so far.
18325 2006-02-02  Martin Baulig  <martin@ximian.com>
18327         * mono-debug-debugger.h: Changed comment at the top of this file;
18328         the header is not installed, but it's safe to #include it from
18329         within the JIT.
18331         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
18332         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
18334 2006-02-02  Martin Baulig  <martin@ximian.com>
18336         * mono-debug.h
18337         (MonoSymbolTable): Removed the `metadata_info' field.
18339         * mono-debug.c
18340         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
18342         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18343         (mono_debugger_add_builtin_types): Removed.
18344         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
18345         (mono_debugger_create_notification_function): We now operate on a
18346         pre-allocated area; take a `gpointer' and return `void'.
18348         * mono-debug-debugger.c
18349         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
18350         (mono_debugger_add_builtin_types): Removed.
18352 2006-02-02  Martin Baulig  <martin@ximian.com>
18354         * threads.c (mono_debugger_create_all_threads): New public method.
18356 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18358         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
18359         breaks on several platforms.
18361 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
18363         * assembly.c: the VS.NET build doesn't supply default values for
18364         MONO_ASSEMBLIES and MONO_CFG_DIR.
18366 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
18368         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
18369         helper function.
18371         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
18373         * loader.c (method_from_memberref): Fix a warning.
18375         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
18377         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
18378         with explicit layout. Fixes #77433.
18380 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
18382         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
18383         max_interface_id is initialized before using it. Fixes #77398.
18384         (ves_icall_Type_GetInterfaces): Ditto.
18386 2006-01-30  Raja R Harinath  <rharinath@novell.com>
18388         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18389         allocate memory for parameter attributes when parsing memberref
18390         signatures.
18391         * loader.c (mono_loader_set_error_method_load): Don't warn.
18392         (method_from_memberref): Ensure MissingMethodException gets thrown
18393         if method is not found.  Make warning more informative.
18395 2006-01-29  Raja R Harinath  <harinath@gmail.com>
18397         Fix #77397
18398         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
18399         return true if is byref.
18400         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18401         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
18402         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
18404 2006-01-27  Raja R Harinath  <rharinath@novell.com>
18406         Fix tests/find-method.2.il
18407         * loader.c (find_method, find_method_in_class): Remove is_inflated
18408         argument.  Revert 2006-01-18 change.
18409         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
18410         is generic, search for method in its generic definition.
18411         * class.c (mono_class_setup_vtable_general): Print generic
18412         arguments of generic types in debugging printf.
18414 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
18416         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
18418         * threads.c (mono_threads_request_thread_dump): New helper function.
18420 2006-01-25  Raja R Harinath  <rharinath@novell.com>
18422         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
18424 2006-01-25  Ankit Jain  <jankit@novell.com>
18426         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
18427         move definition to ..
18428         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
18429         
18430 2006-01-25  Ankit Jain  <jankit@novell.com>
18431             Raja R Harinath  <rharinath@novell.com>
18433         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
18434         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
18435         as necessary.
18437 2006-01-25  Martin Baulig  <martin@ximian.com>
18439         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
18440         `MonoDebuggerThread' into debug-debugger.c.
18442 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
18444         * profiler.c: fix printing of data.
18446 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
18448         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
18449           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
18451 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18453         * object.c: fix deadlock related to string interning.
18455 2006-01-23  Martin Baulig  <martin@ximian.com>
18457         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18459         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
18461 2006-01-23  Martin Baulig  <martin@ximian.com>
18463         * mono-debug.h: Moved the prototypes of some functions which are
18464         used by the JIT here from mono-debug-debugger.h.
18466 2006-01-21  Martin Baulig  <martin@ximian.com>
18468         * Makefile.am: Don't install mono-debug-debugger.h.
18470 2006-01-21  Martin Baulig  <martin@ximian.com>
18472         * mono-debug-debugger.h: Enforce the private status of this header
18473         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
18474         Moved some stuff from mono-debugger-jit-wrapper.h here.
18476 2006-01-20  Raja R Harinath  <rharinath@novell.com>
18478         * class.c (mono_class_from_typeref): Add a sanity test to help
18479         catch lack of assembly load/search hooks.
18481 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
18483         * marshal.c (emit_struct_conv): Relax the fields with same offset
18484         check even more. Fixes #77230.
18486 2006-01-18  Martin Baulig  <martin@ximian.com>
18488         * loader.c (find_method_in_class): Added `gboolean is_inflated'
18489         argument; if false, we compare the uninstantiated signatures.
18490         (method_from_memberref): Compare the uninstantiated signatures;
18491         fixes #76417.
18493 2006-01-18  Robert Jordan  <robertj@gmx.net>
18495         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
18496         Clear the weak link. Fixes bug #77170.
18498         * gc.c (mono_gchandle_free):
18499         Reflect *-gc.c changes (tiny optimization).
18501 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
18503         * metadata.c (mono_metadata_signature_dup): Applied patch from
18504         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
18505         Fixes #77288.
18507 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18509         * marshal.c (emit_struct_conv): Allow fields with the same offset when
18510         marshalling from native to managed code. Fixes #77230.
18512 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18514         * threadpool.c: fix problem (Mac only) when more than one asynchronous
18515         connect. Fixes bug #77020.
18517 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18519         * class.c: fixed id assignement for nested interfaces (bug #77275).
18520         Added also better info for --print-vtable debugging.
18522 2006-01-12  Martin Baulig  <martin@ximian.com>
18524         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
18525         interfaces on-the-fly; fixes #76625.
18527         * class-internals.h
18528         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18529         don't need that anymore.
18531 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18533         * socket-io.c
18534         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18535         To avoid initing the nested_classes when not needed I turned the
18536         PeerCredData as a toplevel internal class, as it has to be shared
18537         anyways. 
18539         Fixes the CASA issue.
18541 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18543         * domain.c: Accessors for MonoJitInfo
18545         * profiler-private.h: Add jitinfo to the end jit hook
18547         * profiler.[ch]: Define new hooks, called after jitting which give
18548         the MonoJitInfo that was compiled
18550 2006-01-10  Martin Baulig  <martin@ximian.com>
18552         * class.c (mono_class_setup_events): Add support for generic
18553         classes; fixes #76440.
18555 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18557         Fix #77160.
18558         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18559         on passed-in method.
18561 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18563         * object.c (mono_runtime_invoke_array): Add Nullable support.
18565         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18567 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18569         * file-io.c: Don't consider sockets as directory and avoid an endless
18570         loop. Fix bug #76966.
18572 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18574         * object.c (mono_nullable_init): New helper function.
18575         (mono_nullable_box): Ditto.
18577         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18579         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18581         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18582         
18583 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18585         * class.c (mono_class_is_assignable_from): Make T assignable to 
18586         Nullable<T>.
18588 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18590         * appdomain.c: Bump corlib version to 46.
18591         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18592         serialization purpose) and changed ves_icall_System_Reflection_
18593         Assembly_get_code_base signature to accept a boolean (to escape, or 
18594         not, the assembly code base).
18596 2005-12-23  Dick Porter  <dick@ximian.com>
18598         * icall.c: 
18599         * threads-types.h: 
18600         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18601         CreateEvent icall now returns "created" boolean parameter.
18603 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18605         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18606         #76967.
18608         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18609         when attr_klass is an interface. Fixes #77045.
18611 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18613         * marshal.c (emit_struct_conv): Fix previous patch.
18614         
18615         * marshal.c (emit_struct_conv): Add a check for fields with the same
18616         offset.
18618 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18620         Fix regression in Mono.C5.
18621         * class.c (mono_class_create_generic): If 'klass' is an interface
18622         set up the interface offsets.
18623         (mono_class_is_assignable_from): Don't throw away generic arguments.
18625 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18627         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18628         type parameters.
18630 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18632         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18633         dead store.
18634         (do_mono_metadata_parse_generic_class): Don't pass the current
18635         generic context when parsing the type being instantiated: it
18636         cannot use it, anyway.
18638         * loader.c (method_from_memberref): Don't inflate a signature if
18639         it doesn't contain any type parameters.
18641 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18643         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18645 2005-12-14  Martin Baulig  <martin@ximian.com>
18647         * class.c
18648         (mono_type_get_name_recurse): Don't return null for type
18649         parameters and open generic classes.
18650         (mono_class_setup_methods): Don't exclude generic instances.
18651         (mono_get_unique_iid): Use different IDs for different
18652         instantiations of the same generic type.
18653         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18654         open generic instances; create a normal vtable for closed generic
18655         instances.
18656         (mono_class_setup_vtable_general): We're now also called for
18657         closed generic instances.
18659         * reflection.c
18660         (mono_reflection_bind_generic_parameters): Correctly use
18661         mono_metadata_lookup_generic_inst() everywhere.
18663 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18665         * object.c (mono_class_create_runtime_vtable): Call 
18666         mono_class_setup_vtable ().
18668         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18669         function.
18670         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18671         #76959.
18673         * loader.c (mono_loader_set_error_type_load): Print the type load
18674         warnings to the console so they are more visible to the user.
18675         (mono_loader_set_error_method_load): Ditto.
18677         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18678         is still broken.
18679         
18680         * reflection.c (ensure_runtime_vtable): Fix build.
18682         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18683         doesn't work in all cases.
18685 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18687         * object.c (mono_array_new_full): Treat a single dimensional array
18688         with 0 lower bounds as an szarray. Fixes #76973.
18690         * reflection.c (custom_attr_visible): Really fix this.
18692 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18694         * reflection.c (custom_attr_visible): Allow nested public attributes
18695         as well.
18697         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18698         interface check.
18700 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18702         * class.c (set_generic_param_owner): Delete.
18703         (mono_class_create_from_typedef): Don't set ->owner field of
18704         generic parameters to "param containers" of enclosing classes.
18705         * reflection.c (mono_reflection_initialize_generic_parameter):
18706         Likewise.
18708 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18710         * reflection.c (custom_attr_visible): Fix build.
18712 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18714         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18715         private attributes.
18716         
18717         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18718         handling of null parameter defaults.
18720 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18722         * class.c (mono_class_from_generic_parameter): Don't set
18723         klass->generic_container.
18724         (my_mono_class_from_generic_parameter): Likewise.
18726 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18728         * reflection.c (load_public_key): Fix a warning.
18729         (method_encode_code): Fix unaligned accesses.
18731 2005-12-07  Martin Baulig  <martin@ximian.com>
18733         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18735         * reflection.c
18736         (write_generic_param_entry): Encode our custom attrs.
18738         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18740 2005-12-07  Martin Baulig  <martin@ximian.com>
18742         * reflection.c (encode_new_constraint): Removed; we don't use the
18743         `NewConstraintAttribute' anymore.
18745 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18747         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18748         not fire a TypeResolve event when Assembly.GetType () is called.
18750 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18752         Beginning of support for nullable types in the runtime. Parts of
18753         this patch are from Martin.
18755         * appdomain.c (MONO_CORLIB_VERSION): Bump
18757         * domain.c (mono_init_internal): get the nullable type
18759         * class.c (mono_class_is_nullable): New method
18760         (mono_class_get_nullable_param): New mehod
18761         (mono_class_create_generic): In types T? set cast_class to T
18763         * class-internals.h (MonoDefaults): new nullable default class
18764         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18765         new methods.
18767 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18769         * metadata.c (select_container): New.  Refactor code to select the
18770         appropriate GenericContainer given the type of generic parameter
18771         we are looking for.
18772         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18773         not a MonoGenericContext.  Use select_container.  Update parameters.
18774         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18775         and MONO_TYPE_MVAR.
18776         (unwrap_arrays): Remove duplicate tests.
18777         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18778         generic instantiated class to find any arguments that are generic
18779         parameters.
18780         (mono_type_create_from_typespec_full): Use find_generic_param to
18781         avoid evicting some generic instantiations from the typespec
18782         cache.
18784 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18786         * reflection.c: fixed writing of doubles on ARM FPA.
18788 2005-12-02  Robert Jordan  <robertj@gmx.net>
18790         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18792 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18794         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18795         least on SUSE 10 they are not the same (on debian, they are just the
18796         same thing).
18798 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18800         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18801         DeclaringType for VARs and MVARs.
18802         * class.c (set_generic_param_owner): Fix initialization of owner
18803         fields.
18805 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18807         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18809 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18811         * threadpool.c: workaround for a bug that shows up on the Mac:
18812         select()+connect() on a blocking socket is not like it should
18813         be, so we proceed to connect() in that case, wasting the I/O
18814         threadpool thread until connect succeedes. Fixes bug #75436.
18816 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18818         * threadpool.c: fix typo when setting file descriptor states.
18820 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18822         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18823         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18824         create a temporary signature container.
18825         (mono_metadata_parse_generic_param): Update to changes.
18826         (mono_type_create_from_typespec_full): Update to changes.
18827         * loader.c (method_from_memberref): Don't use a
18828         MonoGenericContainer while parsing a memberref signature.
18829         (method_from_methodspec): Remove dead-store of the 'container'
18830         variable.  It's overwritten before use.
18832         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18833         checks tighter.
18834         (mono_metadata_parse_generic_param): Likewise.
18835         * loader.c (find_method_in_class): Does not need a
18836         MonoGenericContainer.  Use 'mono_method_signature' rather than
18837         'mono_method_signature_full'.
18838         (find_method, mono_get_method_constrained, method_from_memberref):
18839         Update to changes.
18841         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18842         owner-less generic-parameters are never evicted from the typespec
18843         cache.
18845         * loader.c (method_from_memberref): Don't use the current context
18846         when parsing signatures.
18847         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18849         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18850         side-effects in g_assert.
18851         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18852         that we don't potentially lose information.
18854 2005-11-26  Dick Porter  <dick@ximian.com>
18856         * icall.c:
18857         * threads.c: icalls to implement basic (ie, not named)
18858         System.Threading.Semaphore.
18860 2005-11-24  Dick Porter  <dick@ximian.com>
18862         * process.c
18863         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18864         Use GetProcessId() if it's available.
18866 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18868         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18870 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18871             Ankit Jain  <jankit@novell.com>
18873         * loader.c (mono_get_method_from_token): Initialize 'method' field
18874         of all generic parameters before parsing the signature.  Remove
18875         code that "fixed"-up MVAR references.
18877 2005-11-23  Ankit Jain  <jankit@novell.com>
18879         * metadata.c (mono_metadata_has_generic_params):
18880         (mono_metadata_load_generic_param_constraints):
18881         (mono_metadata_load_generic_params): Move duplicate code ...
18882         (mono_metadata_get_generic_param_row): ... here. Returns the
18883         first row-id in GenericParam table for a given owner (token).
18884         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18885         prototype.
18887 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18888             Ankit Jain  <jankit@novell.com>
18890         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18891         comparing VARs too.
18892         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18893         type->data.generic_param only if the type is an MVAR.
18894         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18895         leak owner-less VARs and MVARs into managed space.
18897 2005-11-21  Martin Baulig  <martin@ximian.com>
18899         * class-internals.h
18900         (MonoMethod): Moved the `generic_container' here from
18901         `MonoMethodNormal' since we now also need it for
18902         `MonoMethodPInvoke';
18903         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18904         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18905         an union containing both `MonoMethodNormal' and
18906         `MonoMethodPInvoke'.
18908         * loader.c
18909         (mono_get_method_from_token): Allow implementing generic methods
18910         as interncalls.
18912         * threads.c
18913         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18914         icall.
18916 2005-11-17  Dick Porter  <dick@ximian.com>
18918         * icall.c: 
18919         * process.h: 
18920         * process.c: Split the Process Start_internal icall into
18921         ShellExecuteEx_internal and CreateProcess_internal, which are
18922         called depending on whether UseShellExecute is true.  Fixes bug
18923         76670.
18925         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18927 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18929         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18930         'msize' parameters, use the information in 'mspec' instead.
18931         (emit_object_to_ptr_conv): Ditto.
18933         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18934         fields out of order. Fixes #76733.
18936 2005-11-17  Ankit Jain  <jankit@novell.com>
18938         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18940 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18942         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18943           bug #76575.
18945 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18947         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18948         for types with non-auto layout. Fixes #76717.
18950 2005-11-16  Ankit Jain  <jankit@novell.com>
18952         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18953         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18954         if generic_context is null.
18955           (mono_metadata_generic_param_equal): param->owner can be null.
18956           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
18957         null.
18959 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18961         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
18962         the correct value.
18964 2005-11-15  Martin Baulig  <martin@ximian.com>
18966         * object.c (set_value): Use mono_class_from_mono_type() instead of
18967         the hack for generic instances; fixes #76136.
18969 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
18971         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
18972         fields.
18974         * image.c (load_metadata_ptrs): Initialize the new fields.
18976         * reflection.c (create_dynamic_mono_image): Ditto.
18978         * reflection.c (build_compressed_metadata): Use the new fields.
18980         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
18981         icall.
18983         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
18984         icall.
18985         
18986 2005-11-15  Ankit Jain  <jankit@novell.com>
18987             Raja R Harinath  <harinath@gmail.com>
18989         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
18990         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18991         new per-generic_container cache if the cached MonoType's context matches
18992         the current context.
18993           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18994         to the expected context.
18995           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18997 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18999         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
19000         we changed the signature of an icall.
19001         * icall.c: Modify to mono_double_ParseImpl return true/false 
19002         depending on the success, instead of throwing the exception. This will
19003         help us in Double.TryParse methods.
19004         
19005 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
19007         * marshal.c (emit_marshal_object): Throw an exception when
19008         marshalling 'object' instead of crashing. Fixes #76696.
19010 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19012         * class-internals.h: Add prototype for mono_type_get_full_name ().
19014 2005-11-11  Dick Porter  <dick@ximian.com>
19016         * threads.c (mono_thread_manage): Make sure the main thread has
19017         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
19019 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19021         * loader.c (mono_loader_set_error_type_load): Log a warning to the
19022         console about the missing type.
19023         (mono_loader_set_error_method_load): Ditto.
19025 2005-11-09  Miguel de Icaza  <miguel@novell.com>
19027         * mono-config.c (mono_get_config_dir): Set the system defaults if
19028         none is specified.
19030         * assembly.c (mono_set_dirs): New API entry point to set the
19031         assembly and the config directory in one call
19033 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
19035         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
19036         the ftnptr was created from a delegate in a domain other than the
19037         current domain. Fixes #75377.
19039         * exception.h exception.c: Add mono_get_exception_not_supported ().
19041 2005-11-08  Martin Baulig  <martin@ximian.com>
19043         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
19045 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
19047         * security-manager.h: Added definitions to deal with strongname key 
19048         pairs bigger (and smaller) than 1024 bits.
19049         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
19050         adjust wrt the public key length being used.
19052 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
19054         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
19055           Windows build (r51396-51397).
19057 2005-11-03  Martin Baulig  <martin@ximian.com>
19059         * class.c (mono_class_setup_vtable_general): Also add generic
19060         methods to the vtable; fixes #76581.
19062 2005-11-01  Miguel de Icaza  <miguel@novell.com>
19064         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
19065         sure that we lookup GetString method from the System.Text.Encoding
19066         class, not the derived class or we get an empty method.
19068         Fixed class #76612.
19070 2005-10-25  Miguel de Icaza  <miguel@novell.com>
19072         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
19073         if it has been previously set (embedders). 
19075         Make mono_set_rootdir available also on Unix.
19077 005-10-24  Robert Jordan  <robertj@gmx.net>
19079         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
19081 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
19083         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
19084         only calls which are made to native code use this flag.
19086         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
19088 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
19090         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
19091         Add support for FieldBuilders.
19093 2005-10-29  Martin Baulig  <martin@ximian.com>
19095         * mono-debug.c
19096         (mono_debug_using_mono_debugger): New public method; returns
19097         whether we're running inside the debugger.
19099 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
19101         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
19102         for Method/Constructor/FieldBuilders.
19104 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
19106         * reflection.c (module_add_cattrs): Save custom attributes for global methods
19107         and fields as well.
19109 2005-10-26  Martin Baulig  <martin@ximian.com>
19111         * mono-debug-debugger.c
19112         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
19114 2005-10-24  Raja R Harinath  <harinath@gmail.com>
19116         * icall.c (base64_to_byte_array): Don't pass an out-of-range
19117         integer to isspace.
19119 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
19121         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
19122         when passing valuetypes byref. Fixes #76502.
19124 2005-10-19  Jackson Harper  <jackson@ximian.com>
19126         * profiler.c: Don't put a . in front of types that are not in a
19127         namespace.
19129 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
19131         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
19133 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
19135         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
19136         #76436.
19137         (mono_marshal_get_ldflda_wrapper): Fix a warning.
19139 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19141         * assembly.c metadata-internals.h icall.c: Define an additional
19142         parameter for mono_assembly_name_parse_full, so we can avoid creating
19143         S.R.AssemblyName.Version when no version info wasn't passed.
19144         
19145 2005-10-09  Miguel de Icaza  <miguel@novell.com>
19147         * class.c (mono_type_get_full_name): Reimplement method that was
19148         removed. 
19150         * image.c: Some docs
19152 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
19154         * profiler.c (output_newobj_profile): Fix printing of Total memory
19155         on x86.
19157 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19159         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
19161 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
19163         * threads.c: remove debug output.
19165 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19167         * threads.c (mono_thread_manage): Fix crashes if more than 64
19168         threads need to be aborted. Hopefully fixes #75899.
19170         * assembly.c (mono_stringify_assembly_name): New helper function.
19172         * class.c: Use mono_stringify_assembly_name instead of the similar
19173         static function.
19175         * assembly.h assembly.c: Add support for calling a postload search 
19176         hook if an assembly cannot be loaded.
19178         * appdomain.c: Register new search hooks which call the AssemblyResolve
19179         events in AppDomain. Fixes #75231
19181 2005-10-07  Martin Baulig  <martin@ximian.com>
19183         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
19184         methods without debug info.
19186 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
19188         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
19189         wrappers.
19191 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19193         * file-io.c: now that we return symlinks, use lstat and, when the file
19194         is a symbolic link, stat, to get the file attributes. Also avoid the
19195         conversion to/from utf16/external.
19197 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
19199         * class.c (mono_class_layout_fields): Compute klass->has_references
19200         correctly if an embedded valuetype is not yet initialized. Fixes
19201         #76331.
19203 2005-10-04  Martin Baulig  <martin@ximian.com>
19205         * metadata.c
19206         (mono_metadata_load_generic_param_constraints): New public
19207         function; splitted the constraints loading out from
19208         mono_metadata_load_generic_params().
19210         * class.c (mono_class_create_from_typedef): Call
19211         mono_metadata_load_generic_param_constraints() after setting up
19212         the type and creating our parent; fixes #75329.
19214 2005-10-04  Martin Baulig  <martin@ximian.com>
19216         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
19217         non-dynamic parent classes.
19219 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
19221         * file-io.c : win32 build fix (ETXTBSY seems not found).
19223 2005-10-04  Martin Baulig  <martin@ximian.com>
19225         * reflection.c
19226         (mono_image_get_methodspec_token): Make the cache actually work;
19227         fixes #75974.
19229 2005-10-04  Martin Baulig  <martin@ximian.com>
19231         * class.c (mono_class_name_from_token): Removed the unneccessary
19232         `MonoGenericContext *' argument.
19234 2005-10-04  Martin Baulig  <martin@ximian.com>
19236         * loader.c
19237         (method_from_methodspec): Make the caching work again; fixes the
19238         performance regression from #76262.
19240 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19242         * file-io.c:
19243         * file-io.h:
19244         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
19245         GetFileSystemEntries that performs the same work but without going
19246         into io-layer, locking, etc.
19248 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
19250         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
19251         ThreadState_Stopped as well. Fixes #76047.
19253 2005-09-29  Martin Baulig  <martin@ximian.com>
19255         * class.c
19256         (inflate_generic_context): If the new context has a `gmethod', set
19257         its `container' that that gmethod's `container'.
19259         * metadata.c
19260         (mono_metadata_parse_generic_param): Simplify things;
19261         `generic_container = generic_context->container;' is just fine.
19263         * loader.c (method_from_methodspec): Code cleanups.
19265 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19267         * decimal.c: fix warning (and let gcc generate correct
19268         code on ARM with optimizations).
19270 2005-09-28  Martin Baulig  <martin@ximian.com>
19272         * loader.c
19273         (method_from_memberref): Added `MonoGenericContext *class_context'
19274         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
19275         (method_from_methodspec): If we're a memberref, use the enclosing
19276         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
19278 2005-09-28  Martin Baulig  <martin@ximian.com>
19280         * object.c (mono_runtime_invoke_array): Added support for
19281         MONO_TYPE_GENERICINST; fixes #75917.
19283 2005-09-27  Martin Baulig  <martin@ximian.com>
19285         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
19286         `k->byval_arg.type' to determine the actual type.
19288         * loader.c (method_from_methodspec): Removed some hacks.
19290 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
19292         * class-internals.h (mono_field_is_deleted): Do the test for
19293         rtspecialname before we check the actual name of the field. This
19294         prevents us from dereferencing a pointer into the string table,
19295         saving us from accessing a few pages
19297         * *.c: Replace the use of {Enter,Leave}CriticalSection with
19298         macros. This will allow a deadlock debugger to easily be plugged
19299         in.
19301 2005-09-27  Martin Baulig  <martin@ximian.com>
19303         * loader.c (method_from_methodspec): Create a "signature"
19304         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
19306 2005-09-27  Martin Baulig  <martin@ximian.com>
19308         * class.c
19309         (inflate_generic_class): Correctly set the new context's
19310         container.
19312         * loader.c
19313         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
19314         instead of a `MonoGenericContext *'.
19315         (mono_method_signature_full): Take a `MonoGenericContainer *'
19316         instead of a `MonoGenericContext *'.
19318         * metadata.c
19319         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
19320         instead of a `MonoGenericContext *'.
19321         (mono_metadata_parse_method_signature_full): Likewise.
19323 2005-09-26  Martin Baulig  <martin@ximian.com>
19325         * class.c
19326         (mono_class_from_generic_parameter): Set `klass->generic_container'
19327         (mono_class_from_generic_parameter): Likewise.
19328         (mono_bounded_array_class_get): We inherit the generic container
19329         from the element class.
19331         * loader.c
19332         (find_method, find_method_in_class): Take a `MonoGenericContext *'
19333         argument rather than computing it here.
19334         (method_from_memberref): Correctly set the generic context before
19335         parsing the signature.  Fixes #75681.
19337 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
19339         * object.c (mono_class_has_special_static_fields): Fix warnings.
19341 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19343         * assembly.c: Add parse_public_key function, to
19344         par the public keys. Also added mono_assembly_name_parse_full,
19345         to define it the parsed key should be freed or not.
19346         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
19347         to parse a long format assembly name.
19348         * metadata-internals.h: Keep mono_assembly_name_parse_full as
19349         private, since calling it to preserve the key requires
19350         freeing it manually.
19351         
19352 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
19354         * locales.c : removed HAVE_ICU part.
19356 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
19358         * object.c (mono_class_create_runtime_vtable): Avoid calling 
19359         field_is_special_static if the klass has no special static fields.
19361         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
19362         (MonoCachedClassInfo): Likewise.
19364         * object.c (mono_class_has_special_static_fields): New helper function.
19366 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19368         * class.c (mono_class_create_from_typedef): Don't call 
19369         interfaces_from_typedef_full for enums.
19370         (mono_class_create_from_typedef): Compute the base types of enums directly
19371         without calling mono_class_setup_fields ().
19372         (mono_class_find_enum_basetype): New helper function.
19374         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
19375         one place inside the string heap.
19376         
19377 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
19379         * class.c: locking fixes, code cleanups, some docs added.
19380         Allocate some data structures in the image mempool.
19382 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19384         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19385         the example code.
19386         
19387 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
19389         * class-internals.h, class.c, reflection.c: reduce memory taken by
19390         MonoClass.
19392 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
19394         * metadata.c, metadata.h, loader.h: documentation updates, code and
19395         API cleanups.
19397 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19399         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19400         the example code.
19402         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
19403         page faults caused by the runtime while reading metadata.
19405 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19407         * socket-io.c: the field names were changed 3 months ago and no one
19408         realized until bug #76077 got filed!
19410 2005-09-20  Martin Baulig  <martin@ximian.com>
19412         * icall.c (assembly_icalls): Removed some unused debugger icalls.
19414 2005-09-20  Martin Baulig  <martin@ximian.com>
19416         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
19417         write the rank into the class entry.
19419 2005-09-20  Martin Baulig  <martin@ximian.com>
19421         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
19423 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
19425         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19427         * icall.c (custom_attrs_defined_internal): New icall.
19429         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
19430         function.
19431         (mono_custom_attrs_construct_by_type): New helper function.
19433 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
19435         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
19436         terminate the resulting string. Fixes #76123.
19438 2005-09-16  Martin Baulig  <martin@ximian.com>
19440         * mono-debug.c
19441         (mono_debug_add_method): Ignore inflated methods for the moment.
19443 2005-09-14  Martin Baulig  <martin@ximian.com>
19445         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
19447 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
19449         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
19450         return a success/failure indication.
19451         (mono_metadata_interfaces_from_typedef_full): Ditto.
19452         (get_constraints): Ditto.
19454 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
19456         * marshal.c (emit_marshal_array): Fix handling of null arrays.
19457         
19458         * marshal.c (emit_marshal_array): Add support for returning string
19459         arrays from delegates. Fixes #76063.
19461         * marshal.c: Use the emit_ldloc/stloc macros where possible.
19463 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19465         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
19466         icall.
19468 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
19470         * reflection.c icall.c: Fix after mono_get_exception_type_load
19471         signature change.
19473         * assembly.c (mono_assembly_get_assemblyref): New helper function.
19474         (mono_assembly_load_reference): Use the new helper.
19476         * class-internals.h (MonoLoaderError): New structure containing 
19477         information about type loading errors.
19479         * class-internals.h loader.c: Add APIs to store per-thread loader
19480         error information.
19482         * loader.c class.c: Set the loader error if needed.
19484         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
19486 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
19488         * decimal.c: fixed to handle the broken ARM fp format.
19490 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
19492         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
19493         broken.
19495 2005-09-06  Martin Baulig  <martin@ximian.com>
19497         * domain.c (supported_runtimes): Added v2.0.50727.
19499 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
19501         * culture-info.h: reduce the size of some structures.
19503 2005-09-05  Martin Baulig  <martin@ximian.com>
19505         Reflect latest API changes in the August CTP.
19507         * icall.c
19508         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
19509         ("MonoType.HasGenericArguments"): Removed.
19510         ("MonoMethod.BindGenericParameters"): Renamed to
19511         "MakeGenericMethod".
19512         ("MethodBuilder.BindGenericParameters"): Renamed to
19513         "MakeGenericMethod".    
19515 2005-09-05  Martin Baulig  <martin@ximian.com>
19517         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
19519 2005-09-05  Martin Baulig  <martin@ximian.com>
19521         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19523         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
19524         generic_container is non-NULL.
19526 2005-09-05  Martin Baulig  <martin@ximian.com>
19528         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19530         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19532 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19534         * reflection.c (encode_locals,
19535         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19536         for large generic types.
19538 2005-09-05  Martin Baulig  <martin@ximian.com>
19540         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19542         * class.c (mono_dup_array_type): New public method.
19543         (mono_metadata_signature_deep_dup): New public method.
19544         (dup_type): Correctly duplicate array and function types.
19546 2005-09-05  Martin Baulig  <martin@ximian.com>
19548         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19550         * reflection.c (get_default_param_value_blobs): Handle generic types
19551         and generic methods.
19553 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19555         * class.c: Fixed error reporting (method/class were inversed) for 
19556         inheritance demands.
19557         * security-manager.c|h: Added the AppDomain when calling the managed
19558         System.Security.SecurityManager.InheritanceDemand method.
19560 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19562         * reflection.c (encode_marshal_blob): 'marshaltype' and
19563         'marshaltyperef' are alternate sources for the custom marshaler
19564         name.
19566 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19568         * class.c: fix creation of array classes with rank == 1
19569         (patch by Ankit Jain <jankit@novell.com>).
19571 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19573         * object.c: fix check for creating the bound data for arrays vs
19574         szarrays.
19576 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19578         * object.c: configuration file name is now based on the executable name,
19579         not the image name. Fixes bug #75931.
19581 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19583         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19584         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19586 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19588         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19590 2005-08-24  Ankit Jain  <jankit@novell.com>
19591             Raja R Harinath  <rharinath@novell.com>
19593         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19594           called by it recursively.
19595           (mono_class_init): Remove special case in pending_init handling, since it's
19596           superseded by the fix to mono_class_from_typeref.
19598 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19600         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19601         BROKEN_THREAD_START stuff.
19603 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19605         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19606         trampoline.
19608         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19609         
19610         * object.c (mono_delegate_ctor): Replace the original function address with
19611         a delegate trampoline.
19613 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19615         * icall.c: add boolean argument to base64_to_byte_array and 
19616         InternalFromBase64String to control whether a whitespace-only string
19617         is allowed (or should casue a FormatException to be thrown). We need
19618         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19619         to match the MS behaviour in both profiles.
19620         * appdomain.c: Bump corlib version.
19622 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19624         This patch implements a big portion of publisher policy
19625         support, used to bind assembly versions and redirect
19626         one assembly from version A to version B.
19628         * assembly.c:
19629         New GSList loaded_assembly_bindings, for storing the cached
19630         assembly bindings.
19631         (assembly_binding_maps_name): New static function for checking if a 
19632         assembly binding information maps an assembly name.
19633         (mono_assembly_binding_info_free): New function for freeing
19634         assembly binding information resources.
19635         (get_publisher_policy_info): New static function for retrieving 
19636         assembly binding information from a MonoImage.
19637         (compare_versions): New static function for comparing an assembly
19638         binding information data and the version of an assembly name.
19639         (check_policy_versions): New static function for checking if an
19640         assembly binding info mapping an assembly name is valid for it.
19641         (mono_assembly_load_publisher_policy): New static function for
19642         loading the 'policy.major.minor.MyAssembly' image for an assembly
19643         with an assembly name 'aname'.
19644         (mono_assembly_bind_version): New static function for updating
19645         assembly redirection.
19646         (mono_assembly_apply_binding): New static function for applying
19647         assembly binding.
19648         (search_binding_loaded): New static function for searching 
19649         loaded assembly binding infos in the cache domain.
19650         (mono_assembly_load_full): Don't apply assembly binding for
19651         reflection only assemblies.
19653         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19654         which contains information about assembly binding. Also
19655         declare signature for mono_config_parse_publisher_policy ()
19656         function, used to retrieve pub policy info.
19657         
19658         * mono-config.c:
19659         (publisher_policy_start): New static function used to parse publisher 
19660         policy config files.
19661         (publisher_policy_parser): New static MonoParseHandler containing 
19662         the functions used when parsing config files.
19663         (mono_config_parse_publisher_policy): New function for parsing
19664         publisher policy files.
19665         
19666 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19668         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19670         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19672         * object.c (mono_get_addr_from_ftnptr): New helper function.
19674         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19676         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19678 2005-08-19  Dick Porter  <dick@ximian.com>
19680         * threads.c, threads.h, appdomain.c, appdomain.h,
19681         profiler-private.h, monitor.c, object.c, object-internals.h,
19682         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19683         store the thread ID, so it can hold a 64 bit value if needed.
19685 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19687         * reflection.c (mono_reflection_create_dynamic_method): Store the
19688         handle class into the method references as well so ldtoken works in
19689         dynamic methods.
19691         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19692         types.
19694 2005-08-19  Ankit Jain <jankit@novell.com>
19696         Fix #75847.
19697         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19698           here rather than using the method signature of a arbitrary function
19699           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19700           two arguments.
19701           Hack done with Harinath.
19703 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19705         * threadpool.c: disable printing stack traces when we get a exception
19706         in a threadpool thread. I need to do more testing to figure out which
19707         cases actually print this. Fixes bug #75828.
19709 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19711         * icall.c: there might be ignored whitespace after the last '='. This
19712         fixes length computation and bug #75840.
19714 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19716         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19717         well. Fixes #75809.
19719         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19720         #75784.
19721         
19722         * reflection.c (create_custom_attr_data): Ditto.
19724 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19726         * locales.c, culture-info.h : removed RegionLCIDMap.
19727         * culture-info-tables.h : regenerated.
19729 2005-08-16  Martin Baulig  <martin@ximian.com>
19731         * class.c (mono_type_get_name_recurse): Small fix.
19733 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19735         * locales.c : indentation fixie.
19737 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19739         * object-internals.h,
19740           locales.h,
19741           locales.c,
19742           culture-info.h,
19743           icall.c : added RegionInfo table support.
19744         * culture-info-table.h : regenerated for region support.
19746 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19748         * reflection.c (resolve_object): handle all kinds of MonoMethod
19749         including generic ones
19751 2005-08-12  Ankit Jain <jankit@novell.com>
19753         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19754           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19756 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19758         * process.c: Don't close a thread handle when it's NULL. This is a
19759         workaround for bug #75733.
19761 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19763         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19765 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19767         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19769 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19771         * threadpool.c: if a work item in the thread pool has a callback that
19772         catches a exception, don't propagate it after invoking the callback.
19773         Fixes bug #75336.
19775 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19777         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19779         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19781         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19783         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19785 2005-08-03  Ankit Jain  <jankit@novell.com>
19787         Fix #75683.
19788         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19789           PInvoke calling convention is 0.
19791 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19793         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19794         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19796 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19798         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19799         to handle threads not started by the GC (patch by Michael Meeks
19800         <michael.meeks@novell.com>).
19802 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19804         * reflection.c: Make buffer used in emitting types larger for some
19805         big generic types (patch by Michal Moskal).
19807 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19809         * mono-debug.c: Fix some (not all) alignment problems.
19811 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19813         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19814         Invoke mono_image_load_from_data_full passing the refonly
19815         parameter.
19817         * assembly.c
19818         (mono_assembly_open_from_bundle): Add the refonly argument, 
19819         in order to pass it to other methods it calls to.
19820         (do_mono_assembly_open): Add the refonly argument, in order 
19821         to pass it to other methods it calls to.
19822         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19823         the refonly parameter to it.
19825         * image.c: Add loaded_images_refonly_hash and
19826         loaded_images_refonly_guid_hash to cache the reflection
19827         only loaded images.
19828         (mono_images_init): Initialize the hash tables used for
19829         caching the reflection only images.
19830         (load_modules): Invoke mono_image_open_full passing the refonly
19831         parameter to load the modules the correct way.
19832         (build_guid_table): Add the refonly argument, to re-build the 
19833         correct hash table.
19834         (do_mono_image_open): Added the refonly argument, in order to
19835         define it for the loaded image.
19836         (mono_image_loaded_full): New function, which receives an
19837         additional parameter to look for the image in the refonly or
19838         non-refonly section.
19839         (mono_image_loaded): Updated, using mono_image_loaded_full.
19840         (mono_image_loaded_by_guid_full): The same case that happens
19841         with mono_image_loaded_full.
19842         (mono_image_loaded_by_guid): Likewise.
19843         (register_image): Use the ref_only variable inside MonoImage
19844         to decide in which hash table store the current image.
19845         (mono_image_open_from_data_full): Rename
19846         mono_image_open_from_data to mono_image_open_from_data_full,
19847         adding the refonly argument, to define the ref_only variable 
19848         inside MonoImage.
19849         (mono_image_open_from_data): Return 
19850         mono_image_open_from_data_full.
19851         (mono_image_open_full): Rename mono_image_open to
19852         mono_image_open_full, receiving the new refonly argument,
19853         to pass it to inner methods.
19854         (mono_pe_file_open): Update this function, to open
19855         a MonoImage as a non-refonly image.
19856         (mono_image_close): Use the refonly variable inside
19857         MonoImage to remove the image from the correct caches.
19859         * image.h: Add the signatures of mono_image_open_full,
19860         mono_image_open_from_data_full, mono_image_loaded_full,
19861         mono_image_loaded_by_guid_full.
19863         * metadata-internals.h: Add the ref_only field to 
19864         MonoImage.
19865         
19866 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19868         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19869         Fix the last behavior, which used to load the assemblies and
19870         extract MonoReflectionAssemblyName information, instead of
19871         extract it from the metadata tables. Needed for Reflection
19872         Only assemblies.
19873         
19874 2005-07-29  Martin Baulig  <martin@ximian.com>
19876         * mono-debug-debugger.c
19877         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19878         not initialized.
19880         * mono-debug.c
19881         (mono_debug_address_from_il_offset): Check whether we have
19882         debugging support before attempting to take the lock.
19883         (mono_debug_source_location_from_address): Likewise.
19884         (mono_debug_source_location_from_il_offset): Likewise.
19885         (mono_debug_il_offset_from_address): Likewise.
19886         (mono_debug_address_from_il_offset): Likewise.
19888 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19890         * class.c (mono_class_from_name_case): Add support for dynamic images.
19891         Fixes #75650.
19893         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19894         for #75479.
19896 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19897         
19898         * reflection.c (mono_method_get_object): Fix warning.
19900 2005-07-28  Martin Baulig  <martin@ximian.com>
19902         * mono-debug.c
19903         (mono_debug_add_wrapper): Also write the wrapper type.
19905 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19907         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19908         
19909         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19910         data indicates the class has none.
19912 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19914         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19915         loader lock with the debugger lock. Prevents deadlocks for beagle.
19917         Beagle can now run on an smp box for a weekend without any
19918         issues. Woohoo!
19920 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19922         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19923         in a module. Fixes #75629.
19925 2005-07-26  Martin Baulig  <martin@ximian.com>
19927         * mono-debug.c (mono_debug_add_wrapper): New static method.
19928         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19929         interncall or a wrapper.
19931         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19932         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19933         (MONO_DEBUGGER_VERSION): Bump to 51.
19935         * mono-debug-debugger.c
19936         (mono_debugger_add_type): Removed this empty function.
19937         (mono_debugger_add_method): Likewise.
19939 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19941         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19942         before accessing method->slot.
19944 2005-07-21  Jb Evain  <jbevain@gmail.com>
19946         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19947         Fixes #75010.
19949 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19951         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19952         #75587.
19954 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19956         * image.h image.c: Add mono_image_get_guid () API function.
19958 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
19960         There were issues when multiple threads tried to load
19961         assemblies. A deadlock was created between assemblies_mutex and
19962         mono_domain_assemblies_lock. This fixes the issue by making the
19963         assembly ref counting be lock free. See bug 75586.
19964         
19965         * image.c (mono_image_close): The add ref function here was using
19966         Interlocked operations while the unref was using a mutex and a
19967         --. I don't think this was ever a bug that would be exposed in a
19968         non-pendantic way (ie, by an embedder doing a ref on one thread
19969         and an unref on another), but for the sake of correctness, this is
19970         now Interlocked.
19972         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
19973         (mono_assembly_load_reference): Call mono_assembly_addref rather
19974         than touching the refcount ourselves.
19975         (mono_assembly_close): Use InterlockedDecrement to unref the
19976         assembly. Don't acquire the lock unless it is actually needed.
19978 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19980         * class.c (mono_class_layout_fields): Fix calculation of has_references
19981         for generic types.
19983 2005-07-12  Martin Baulig  <martin@ximian.com>
19985         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19987         * metadata.c
19988         (mono_type_hash): Provide better hashing for generic instances.
19989         (mono_generic_inst_hash): Improve hashing.
19990         (mono_generic_class_hash): Likewise.
19992         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19993         generic instances.
19995 2005-07-12  Martin Baulig  <martin@ximian.com>
19997         * reflection.c (mono_reflection_create_runtime_class): Remove the
19998         hack for generic type definitions and non-`Run' assemblies.
19999         (mono_reflection_bind_generic_parameters): Also use
20000         `klass->wastypebuilder' to check for TypeBuilders.
20002 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20004         * class.c (mono_class_layout_fields): Fix calculation of has_references
20005         for generic types.
20007         * class.c (inflate_generic_class): Fix a leak.
20008         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
20009         for generic types.
20011 2005-07-11  Martin Baulig  <martin@ximian.com>
20013         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
20014         on error.
20016 2005-07-11  Martin Baulig  <martin@ximian.com>
20018         * loader.c (find_method): Also lookup in
20019         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
20021 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20023         * appdomain.c (mono_domain_unload): Don't free the error message
20024         before passing it to mono_get_exception_...
20026         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
20027         
20028 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
20030         * threads.c: try to better guess an available RT signal (bug #75387).
20032 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20034         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
20035         and CACHE_OBJECT.
20037 2005-07-07  Martin Baulig  <martin@ximian.com>
20039         * class.c (mono_type_get_name_full): Return NULL for
20040         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
20041         fixes #75408.
20043 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20045         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
20046         exit the appdomain as well being aborted.
20048         * threadpool.c: Create all threadpool threads inside the root appdomain, and
20049         change back to the root domain after calling managed code. This enables
20050         appdomains using threadpools to be unloaded.
20052 2005-07-07  Martin Baulig  <martin@ximian.com>
20054         * class-internals.h
20055         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
20056         into `MonoDynamicGenericClass' since we only need it for dynamic
20057         types.
20059         * reflection.c (mono_class_bind_generic_parameters): We don't need
20060         to compute the `parent' here.
20062 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
20064         * culture-info-table.h : regenerated.
20066 2005-07-06  Martin Baulig  <martin@ximian.com>
20068         * icall.c
20069         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
20071         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
20073 2005-07-06  Martin Baulig  <martin@ximian.com>
20075         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
20076         we're doing a signature-only comparision; fixes #74945.
20078 2005-07-06  Martin Baulig  <martin@ximian.com>
20080         * class-internals.h (MonoGenericClass): Moved some things out into
20081         a new `MonoInflatedGenericClass' type.  
20082         (MonoInflatedGenericClass): New type; the `klass' of a
20083         `MonoGenericClass' is now computed lazyly in
20084         mono_get_inflated_generic_class().      
20086         * class.c (mono_get_inflated_generic_class): New public function.
20087         (mono_class_inflate_generic_method): Removed the unused
20088         `MonoClass *' argument.
20089         (setup_generic_vtable): Don't call mono_get_inflated_method() on
20090         all the methods.
20091         (mono_class_create_generic): Make this static and merge it with
20092         mono_class_create_generic_2(); we're now called automatically from
20093         mono_get_inflated_generic_class().
20095         * loader.c (mono_method_signature): Call
20096         mono_get_inflated_method() here.
20098 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
20100         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
20101         type of fields with RVA.
20103         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
20104         for this pseudo class.
20105         (my_mono_class_from_generic_parameter): Likewise.
20106         (mono_class_init): Allow interfaces to have cctors.
20108 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20110         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
20111         lazily for AOT methods.
20113 2005-07-05  Martin Baulig  <martin@ximian.com>
20115         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
20116         returns FALSE for a successful match, not TRUE.
20118 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20120         * loader.c (mono_method_get_index): Optimize this a bit.
20122 2005-07-04  Martin Baulig  <martin@ximian.com>
20124         * class.c
20125         (class_compute_field_layout): Move the check for generic type
20126         definitions into mono_class_layout_fields().  Fixes #74684.
20127         (mono_class_from_generic_parameter): Correctly compute
20128         `klass->parent'; fixes #75457.
20130         * reflection.c (register_assembly, register_module): Make sure
20131         `domain->rejobject_hash' is already created.
20133 2005-07-02  Martin Baulig  <martin@ximian.com>
20135         * class-internals.h
20136         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
20137         `MonoDynamicGenericClass'.      
20139 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
20141         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
20142         returned by a field getter is null, since null is a valid value.
20144 2005-07-01  Martin Baulig  <martin@ximian.com>
20146         * reflection.c (mono_reflection_generic_class_initialize): Update
20147         the `dgclass->fields [i].parent' to the correct class.
20148         (mono_image_get_fieldref_token): Use the declaring type, not the
20149         reflected type.
20151 2005-07-01  Martin Baulig  <martin@ximian.com>
20153         * loader.c (find_method): Also look in the interfaces; fixes #75429.
20155 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
20157         * threads.c (thread_cleanup): assert that thread != NULL
20158         (wait_for_tids_or_state_change): We were using the wrong variable
20159         when accessing wait->threads. `i' was always out of the bounds of
20160         the array.
20162 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20164         * loader.c: map user32 and kernel32 to libMonoSupportW
20166 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
20168         * appdomain.c (unload_thread_main): Mark this as WINAPI.
20170 2005-06-28  Martin Baulig  <martin@ximian.com>
20172         * loader.c (method_from_methodspec): Fix #75334.
20174 2005-06-28  Martin Baulig  <martin@ximian.com>
20176         Fix #74953 - Arrays now implement the generic IList<T> interface
20177         on the 2.0 platform.
20179         * class-internals.h (MonoDefaults): Added `generic_array_class'.
20181         * reflection.c (mono_class_bind_generic_parameters): New public
20182         function; similar to mono_reflection_bind_generic_parameters(),
20183         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
20185         * domain.c (mono_init_internal): Try to initialize.
20186         `mono_defaults.generic_array_class' here; this'll only succeed if
20187         we're using the 2.0 corlib.
20189         * icall.c
20190         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
20191         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
20192         (mono_lookup_internal_call): Added support for nested classes.
20194         * loader.c
20195         (mono_get_method_from_token): Set `result->signature->pinvoke' if
20196         we're an interncall and have generic arguments.
20198         * class.c
20199         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
20200         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
20201         instance of System.Array.InternalArray<T> for arrays, so they
20202         implement the generic IList<T> interface.
20204 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
20206         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
20207         (chastamar@yahoo.com). Fixes #75374.    
20209 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
20211         * culture-info-table.h: regenerated.
20213 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20215         * icall.c: handle spaces correctly for base64 strings.
20217 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
20219         * *.c: Kill some warnings.
20221 2005-06-23  Duncan Mak  <duncan@novell.com>
20223         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
20224         that this builds on Solaris 10 (x86).
20226 2005-06-23  Martin Baulig  <martin@ximian.com>
20228         * class.c
20229         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
20230         generic type definitions.
20232 2005-06-23  Martin Baulig  <martin@ximian.com>
20234         Fix #75331.
20236         * metadata.c (mono_class_get_overrides): Renamed to
20237         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
20238         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
20239         pass it to mono_get_method_full().
20241 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
20243         * reflection.c (mono_reflection_create_runtime_class): take the
20244         mono_domain_lock in this method. Prevents deadlocks
20246 2005-06-22  Martin Baulig  <martin@ximian.com>
20248         * loader.c (method_from_methodspec): Fix #75330.
20250 2005-06-22  Martin Baulig  <martin@ximian.com>
20252         * reflection.c (type_get_qualified_name): Use
20253         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
20254         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
20255         argument; use it if we don't have an assembly name.
20257 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
20259         * object.c: In mono_message_init, set "copy out" flag for in
20260         parameters with the [Out] flag.
20262 2005-06-21  Martin Baulig  <martin@ximian.com>
20264         * class.c
20265         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
20266         and MONO_TYPE_PTR.
20268 2005-06-21  Martin Baulig  <martin@ximian.com>
20270         * class.c (mono_class_init): Don't initialize `class->fields' for
20271         generic instances since they're initialized again in
20272         compute_field_layout(). 
20273         (compute_field_layout): Set the field's `generic_info' here; fix
20274         #75320. 
20276 2005-06-21  Martin Baulig  <martin@ximian.com>
20278         * class-internals.h
20279         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
20281         * metadata.c (mono_metadata_generic_method_equal): Also
20282         distinguish the `generic_class'; fixes #75334.
20284 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20286         * domain.c:
20287         * appdomain.c:
20288         * domain-internals.h:
20289         * reflection.c: 'domain_assemblies' field is now protected by its own
20290         lock. Don't call into managed code to run the AssemblyLoad event if we
20291         now there are no registered delegates for it.
20293 2005-06-20  Martin Baulig  <martin@ximian.com>
20295         * class.c (mono_class_is_assignable_from): Use a custom version of
20296         mono_class_has_parent() to make things work for generic instances;
20297         fix #75300.
20299 2005-06-20  Martin Baulig  <martin@ximian.com>
20301         * loader.c (method_from_methodspec): Apply a patch from
20302         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
20304 2005-06-20  Martin Baulig  <martin@ximian.com>
20306         * class.c (mono_class_init): Reverted Zoltan's last change; it
20307         breaks generics.
20309 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
20311         * threads.c (wait_for_tids_or_state_change): Add missing locking.
20313 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20315         * socket-io.c: fix the index in the socket array for writable/error
20316         sockets. Fixes bug #75306.
20318 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
20320         * class.c (mono_class_init): Allow interfaces to have static ctors.
20322 2005-06-17  Martin Baulig  <martin@ximian.com>
20324         * loader.c (method_from_methodspec): Use `context->container' when
20325         parsing the `gmethod->inst'.
20327 2005-06-17  Martin Baulig  <martin@ximian.com>
20329         * class.c (mono_type_get_name_recurse): Don't add the assembly
20330         name for type arguments.
20332 2005-06-15  Martin Baulig  <martin@ximian.com>
20334         * reflection.c (mono_image_get_inflated_method_token): Encode
20335         correct klass; fixes #75260.
20337 2005-06-13 Michal Moskal <malekith@nemerle.org>
20339         * icall.c: Make GetCorrespondingMethod/Constructor take
20340         MonoReflectionMethod method not MonoMethod. Removed
20341         MonoType.GetCorrespondingField, and make
20342         MonoGenericType.GetCorrespondingField take name not
20343         MonoClassField.
20345 2005-06-13  Michal Moskal <malekith@nemerle.org>
20347         * reflection.c (field_encode_signature, encode_locals):
20348          Make sizes of buffers for types larger (for big generic types).
20349          (create_generic_typespec,
20350          mono_reflection_sighelper_get_signature_local,
20351          mono_reflection_sighelper_get_signature_field):
20352          Add asserts for too small buffers.
20354 2005-06-15  Martin Baulig  <martin@ximian.com>
20356         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
20357         if our parent is not a dynamic type.
20359 2005-06-15  Martin Baulig  <martin@ximian.com>
20361         * class-internals.h (MonoTypeNameFormat): New enum.
20363         * class.c
20364         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
20365         (mono_type_get_full_name): Removed.
20366         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
20367         argument instead of the boolean's.
20369         * icall.c (ves_icall_System_MonoType_getFullName):
20370         Added `gboolean assembly_qualified'.    
20372         * reflection.h
20373         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
20375         * reflection.c (mono_reflection_parse_type): Parse the new type
20376         name format.
20378 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20380         * icall.c: no need to convert from utf16 to utf8 and then back again
20381         after the call to GetLogicalDrives.
20383 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20385         * icall.c: frombase64. Fix problems exposed by new tests.
20387 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20389         * icall.c: added internal calls for converting char [] and strings in
20390         base64 into byte [].
20392 2005-06-10  Martin Baulig  <martin@ximian.com>
20394         * class.c (mono_class_create_generic_2): Read the nested classes
20395         from the metadata rather than from `gklass->nested_classes' since
20396         `gklass' might not be initialized yet.
20398 2005-06-09  Duncan Mak  <duncan@novell.com>
20400         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
20401         all public headers. Fixes #74919.
20403 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
20405         * domain.c: The key for proxy_vtable_hash is now a pointer
20406         array. Added new GHashFunc and GCompareFunc functions for this.
20408         * class.h: The list of interfaces in MonoRemoteClass is known in
20409         advance and can't grow (we create a new MonoRemoteClass if needed),
20410         so now the interface array can be allocated together with
20411         MonoRemoteClass.
20412         
20413         * object.c: Added a new method create_remote_class_key.
20414         Fixed mono_remote_class so it does not depend on
20415         mono_upgrade_remote_class.
20416         Removed extend_interface_array.
20417         Added new method clone_remote_class(), which makes a copy of a remote
20418         class and adds a new interface or class to it.
20419         mono_upgrade_remote_class() now creates a new remote class (or gets
20420         it from the cache) if an vtable upgrade is needed. In this way
20421         we make sure that other objects sharing the same remote class
20422         don't get the new vtable with unwanted interfaces.
20423         
20424         * object-internals.h:
20425         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
20426         
20427         * marshal.c: Track changes in mono_upgrade_remote_class().
20429 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
20430         * icall.c: Add runtime methods for obtaining members of inflated
20431         class, which were created from supplied non-inflated members. It
20432         is used in internal Get{Method,Constructor,Field} methods in
20433         System.Type
20435 2005-06-09  Martin Baulig  <martin@ximian.com>
20437         * reflection.c
20438         (mono_reflection_bind_generic_method_parameters): Fix #75169.
20440 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20441         * reflection.c (mono_image_basic_init): Define
20442         Version in MonoDynamicAssembly. 
20443         
20444 2005-06-08  Martin Baulig  <martin@ximian.com>
20446         Fix #75136.
20448         * loader.c
20449         (mono_method_signature_full): New public method; takes a
20450         `MonoGenericContext *'.
20451         (find_method): Use mono_method_signature_full() and pass the
20452         klass'es context to it.
20454         * class.c (mono_class_is_inflated_method): Use
20455         mono_method_signature_full() and pass the context to it.
20457 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
20459         * object.c: add proper locking in mono_remote_class_vtable(),
20460         fixes possible memory corruption.
20462 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
20464         * marshal.c (mono_remoting_marshal_init): set
20465         initialized after initialization.
20467 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
20469         * locales.c : hush.
20471 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
20473         * object.c (extend_interface_array): fix really silly
20474         memory corrupting / comparison bug.
20476 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20478         * reflection.c: Functions added to support the creation
20479         of CustomAttributeData, which includes Attribute data
20480         used by ReflectionOnly methods.
20482         * reflection.h:  mono_reflection_get_custom_attrs_data and
20483          mono_custom_attrs_data_construct added (functions exposed).
20485          * icall.c: Added mono_reflection_get_custom_attrs_data
20486          as icall.
20487         
20488 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
20490         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
20491         lupus's request.
20493 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
20495         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
20497         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
20498         dynamic DllImportAttribute.
20500         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
20501         dynamic DllImportAttribute.
20503         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
20504         Fixes #75162.
20506 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20508         * threads.c: avoid segfault when an unstarted thread is aborted.
20510 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
20512         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
20513         Returns the name and version of the runtime for reporting.
20515 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20517         * appdomain.c: bump corlib version.
20518         * object-internals.h: new field in MonoReflectionAssembly.
20520 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20522         * object-internals.h: Carlos forgot to add this field.
20524 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20526         * icall.c: Added create_version to create instances
20527         of Version of MonoReflectionAssemblyName. This change helps
20528         the AssemblyName tests to keep running fine.
20529         
20530 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20531   
20532         * object.c (mono_method_return_message_restore): A somehow less
20533         intrusive fix for #75138.
20535 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20537         * object.c (mono_method_return_message_restore): Fix computation
20538         of expected number of out args.
20540 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20542         * reflection.c (mono_image_get_method_info): Fix the case when the
20543         charset is empty.
20545 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20547         * object.c: Added missing null check in
20548           mono_method_return_message_restore.
20550 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20552         * reflection.c (mono_image_get_method_info): Handle the case when
20553         dllentry is empty.
20555 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20557         * object.c: When creating the vtable for a proxy, take into account
20558         all inherited interfaces, not only the ones registered in
20559         iclass->interfaces. This fixs bug #74996.
20560         Also, in mono_method_return_message_restore, verify that the array
20561         of out args has the expected lengh.
20563 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20565         * socket-io.c: update the timeout in Poll when the call is interrupte.
20567 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20569         * socket-io.c: support abort/suspend in Select_internal after last
20570         change.
20572 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20574         * threadpool.c: remove warning.
20576 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20578         * icall.c:
20579         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20580         removing the 1024 limit from select(). Runtime part of the fix for
20581         bug #71203.
20583 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20585         * socket-io.c: when resolving the addresses for the same
20586         host returned by gethostname(), get the local IPs from the interface
20587         list. Loopback addresses are discarded if the are interfaces up with
20588         non-loopback ones. Fixes bug #63265.
20590 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20592         * appdomain.c, verify.c, object-internals.h, reflection.c:
20593         bumped corlib number to 36, and added new extra_flags field
20594         to ReflectionMethodBuilder and friends.  Fixes #75060.
20596 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20598         * gc.c: register a new weak link only if the object is non-null
20599         (fixes bug#75047).
20601 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20603         * culture-info.h : short time pattern too.
20605 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20607         * culture-info.h : expand long time pattern string length.
20609 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20611         * culture-info-table.h : update (more French date format; #72788).
20613 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20615         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20616         the method is static. Fixes #75029.
20618 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20620         * reflection.c: Update the table_idx field of method builders after
20621         saving the module, since it can change. This is a workaround for
20622         bug #74914. 
20624 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20626         * culture-info-table.h : update (additional French date format).
20628 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20630         * icall.c (ves_icall_type_Equals): Revert last change.
20631         
20632         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20634         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20636 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20638         * class-internals.h: Added executioncontext_class field to 
20639         MonoDefaults structure.
20640         * domain.c: Cache System.Threading.ExecutionContext class in 
20641         mono_defaults.
20642         * object.c: Capture the ExecutionContext for asynchroneous calls in
20643          mono_async_result_new.
20644         * object-internals.h: Added execution_context and original_context 
20645         fields to MonoAsyncResult. Added execution_context to MonoThread.
20646         * security-manager.c|.h: Added mono_get_context_capture_method to 
20647         return the capture method (if required by the security manager or by
20648         the framework version used).
20649         * threadpool.c: Apply capture (if present) ExecutionContext in 
20650         mono_async_invoke and revert to original context after it completes.
20652 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20654         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20656 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20658         * culture-info-table.h : zh-CHT related workaround.
20660 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20662         * marshal.c (emit_marshal_custom): Add some error checking and call the
20663         methods in the ICustomMarshaler interface. Fixes #74875.
20664         
20665         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20666         native->managed wrappers.
20668 2005-05-12  Martin Baulig  <martin@ximian.com>
20670         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20671         here and use the loader lock.
20673         * mono-debug.c: Properly lock when the debugger is not attached.
20674         (mono_debug_init): Release the initial lock if we're not running
20675         in the debugger.
20677 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20679         * marshal.c (emit_marshal_custom): Pass through NULL values without
20680         calling the custom marshalling routines.
20682         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20683         conversion in structures. Fixes #74882.
20685 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20687         * culture-info-table.h : zh-* cultures were missing.
20689 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20691         * threads.c: Added a new event background_change_event which is signaled
20692         when a thread changes its background mode.
20693         Moved here several checks previously done in managed code. The checks
20694         require the thread lock, and using the thread lock in managed code
20695         can result in deadlocks.
20696         Merged Start_internal and Thread_internal into a single method. Now 
20697         Thread_internal does all work of creating and starting a thread.
20698         Added icalls for setting and getting the state of the object. Moved from
20699         managed code to avoid locking there.
20700         Added wait_for_tids_or_state_change() which is called instad of
20701         wait_for_tids when waiting for non-backround threads to end. This method
20702         will return if one of the threads ends or the background_change_event
20703         is signaled.
20704         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20705         the background mode. This method signals the background_change_event
20706         event.
20707         * icall.c:
20708         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20709         removed Start_internal.
20710         
20711 2005-05-11  Martin Baulig  <martin@ximian.com>
20713         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20714         to order of some fields to get proper alignment on 64-bit machines.
20716 2005-05-11  Martin Baulig  <martin@ximian.com>
20718         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20719         changes as they're broken and completely fuck up the debugger.
20721         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20723 2005-05-10  Martin Baulig  <martin@ximian.com>
20725         * reflection.c (mono_reflection_generic_class_initialize): Don't
20726         call mono_class_setup_parent() here.
20728 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20730         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20731         send/receive timeout use an integer in milliseconds. We were using a
20732         struct timeval.
20734 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20736         * locales.c:
20737         (internal_get_cultures): reserve the first slot of the array for the
20738         InvariantCulture, which will be filled in managed code.
20740 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20742         * reflection.c (mono_image_fill_module_table): Initialize the
20743         GENERATION field as well.
20745 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20747         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20748         Monitor.Enter on the object.
20750 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20752         * threads.c: Enable the wait for running threads when exiting.
20753         * icall.c: Suspend all threads before exiting.
20755 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20757         * assembly.c (mono_assembly_load_reference): Fix warning.
20759 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20761         * threadpool.c: changed the default number of threads per cpu. From now
20762         on, the default will be 20 + (5 * number of cpus) instead of 50.
20764 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20766         * loader.c (mono_method_get_signature_full): Add locking here.
20768 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20770         * appdomain.c: Moved methods for parsing and freeing assembly
20771         names to assembly.c.
20772         * assembly.c, domain-internals.h: Created public methods for parsing
20773         assembly names. Fixed mono_assembly_load_with_partial_name:
20774         it now finds the best match, taking into account the version,
20775         token and culture specified in the partial name. Also return
20776         the latest version if no version information is specified.
20778 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20780         * threadpool.c: replace check for SocketAsyncCall class.
20782 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20784         * threadpool-internals.h:
20785         * Makefile.am: added threadpool-internals.h
20787         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20788         that happen in threadpool threads (tested on MS).
20789         (mono_thread_pool_remove_socket): new function that dispatch any pending
20790         AIO call on a socket that is closing. By now only epoll really needs it,
20791         as select/poll wake up when the socket closes.
20794         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20796 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20798         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20800 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20802         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20804 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20806         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20807         has an abort request, convert it into a suspend request.
20809 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20811         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20812         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20813         is not supported yet.
20815 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20817         * image.c: register assemblies loaded from data (bundles) in the loaded
20818         assemblies hash. Fixes bug #74772.
20820 2005-04-29  Martin Baulig  <martin@ximian.com>
20822         * class.c (mono_type_get_name_recurse): Update to the new naming
20823         schema from the latest .NET 2.x beta2.
20824         (mono_class_setup_vtable_general): If we're a generic instance,
20825         copy the vtable from our generic type definition and inflate all
20826         the methods in it.
20828         * loader.c (find_method): Update to the new naming schema from the
20829         latest .NET 2.x beta2.
20831 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20833         * class.c (mono_class_init): Add a mono_loader_unlock to the
20834         #74734 fix.
20836 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20838         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20839         suspend_all_other_threads () call for the time being, since it can hang.
20841         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20842         the background threads to exit, since it can also hang.
20844         * class.c (mono_class_init): Applied patch from Ankit Jain 
20845         (radical@gmail.com). Avoid pending init errors when a field refers
20846         to a nested class using a typeref. Fixes #74734.
20848         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20849         this for dynamic modules.
20851 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20853         * threads.c: don't wait for threads that are in the process of aborting
20854         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20855         and waiting for background threads to finish. This makes xsp and
20856         mod-mono-server exit without random length delays and/or hangs.
20858 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20860         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20862 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20864         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20865         dynamic types to prevent infinite loops. Fixes #74727.
20867         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20868         ..._is_assignable_to.
20870 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20872         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20874 2005-04-25  Martin Baulig  <martin@ximian.com>
20876         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20878         * domain.c
20879         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20881         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20883         * reflection.c (build_compressed_metadata): Set metadata header
20884         version to 2.0.
20886 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20888         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20889         number into an integral and a decimal part. Fixes #70473.
20891         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20893 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20895         * culture-info-table.h : reflected the latest locale-builder output.
20897 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20899         * threadpool.c: check for SuspendRequested too when deciding if
20900         mono_thread_interruption_checkpoint should be called.
20902 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20904         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20905         * threads.c: remove interruption_mutex and use Interlocked instead. When
20906         suspending all the threads, wait for all the suspended events at once.
20907         If we're shutting down and get an APC that is going to be queued,
20908         call mono_thread_execute_interruption immediately, as the thread might
20909         be sleeping on a pthread condition or mutex.
20911         * icall.c: call mono_runtime_set_shutting_down before suspending the
20912         threads.
20914         Fixes bug #74693. And now xsp is happier when exiting.
20916 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20918         * loader.c (mono_stack_walk): Fix #74690.
20920 2005-04-22  Martin Baulig  <martin@ximian.com>
20922         * mono-debug.h (MonoDebugMethodJitInfo): Added
20923         `MonoDebugMethodJitInfo *jit'.
20925         * mono-debug.c (mono_debug_read_method): Cache the
20926         MonoDebugMethodJitInfo in `address->jit'.
20927         (mono_debug_free_method_jit_info): New public method.
20929 2005-04-22  Martin Baulig  <martin@ximian.com>
20931         * class.c (mono_class_is_assignable_from): Disallow
20932         type parameter -> interface.
20934 2005-04-21  Dick Porter  <dick@ximian.com>
20936         * threads.c (mono_thread_create): Turn an assertion into an error.
20938 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20940         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20941         
20942         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20943         Fix some gcc 4.0 warnings.
20945 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20947         * file-io.c: fix alt dir separator char on unix systems
20948         and cleanup (fixes bug #71214).
20950 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20952         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20953         a call to a remote domain, since the method may be an
20954         interface method in the client domain. This fixes bug #74192.
20956 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20958         * threadpool.c: recv/send are now performed before going back to managed
20959         code to save one transition.
20961 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20963         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
20965         * metadata/threadpool.c: removed hack to workaround the bug above.
20967         Fixes bug #74618.
20969 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
20971         * reflection.c reflection.h: Fix handling of parameter defaults in
20972         dynamic methods. Also fixes handling of parameter attributes.
20973         Fixes #74609.
20975         * mono-debug.c (mono_debug_close_image): Fix warning.
20977 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20979         * socket-io.h: replaced old unused field with new 'blocking'.
20980         * threadpool.c: restore socket blocking state on windows(tm).
20982 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
20984         * icall.c: don't return the codebase in the AssemblyName[] returned by
20985         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
20986         * object-internals.h: Removed FIXME (fields were presents) and fixed
20987         versioncompat declaration.
20989 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20991         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20992         not closed, so don't cleanup when it happens.
20994 2005-04-13  Chris Toshok  <toshok@ximian.com>
20996         * mono-debug-debugger.h: change prototype for
20997         mono_debugger_lookup_type.
20999         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
21000         this function, although it should probably be named
21001         mono_debugger_init_type.
21003 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21005         * threadpool.c: fix non-AIO case.
21007 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
21009         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
21010         the built-in profiler to measure just JIT compilation times.
21012 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21014         * threadpool.c: the epollfd might be closed by another thread at
21015         any time, so ignore EBADF at treat it as a "we're closing" sign.
21017 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21019         * threadpool.c: release the semaphores with a count equals to the number
21020         of working threads in both IO and regular pools. Fixed typo that messed
21021         up the count of IO pool threads. Don't initialize the pipe handles if
21022         we're using epoll.
21024 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21026         * threadpool.c: some systems don't like a NULL when deleting the socket
21027         from epoll.
21029 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21031         * threadpool.c: fix semaphore allocation.
21033 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21035         * threadpool.c: added epoll() based implementation for asynchronous IO
21036         that is used instead of the default poll() when available.
21037         It can be disabled by setting MONO_DISABLE_AIO.
21039 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21041         * threadpool.c: windows needs 'closesocket' and instead of returning
21042         0 when the stream is closed while in select, it returns -1. Fixes bug
21043         #74573.
21045 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
21047         * class.c (class_compute_field_layout): Fix the regression caused by
21048         the previous try.
21050 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21052         * threadpool.c: separate pool for socket async. IO.
21053         * threadpool.h: mono_max_worker_threads is not a global any more.
21055 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
21057         * class.c (class_compute_field_layout): Fix #74549.
21059 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21061         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
21062         use 2 connected sockets instead.
21064 2005-04-08  Miguel de Icaza  <miguel@novell.com>
21066         * mono-config.c: Add new entry point for mkbundle
21067         mono_config_parse_memory. 
21069 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21071         * threadpool.c: removed another unused function.
21073 2005-04-08  Ankit Jain  <radical@corewars.org>
21075         * reflection.c (get_default_param_value_blobs): Add 'types'
21076         parameter to get the types encoded in the constant table.
21077         (mono_param_get_objects): Use the type from the constant table,
21078         not the type of the parameter, when creating default values.
21079         Handle null default values correctly.
21081 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21083         * file-io.c:
21084         * file-io.h:
21085         * threadpool.c:
21086         * threadpool.h:
21087         * icall.c:
21088         * socket-io.c: removed dead code for async IO.
21090 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21092         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
21094         * threadpool.c: intercept socket async. calls and pass them to a thread
21095         that is polling and dispatching the job items to the threadpool as
21096         socket become ready. Fixes bugs #71217, #71933.
21098         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
21099         between char and short/ushort arrays.
21101         * socket-io.c: remove dead code.
21103 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21105         * locales.c,
21106           icall.c : removed InternalToUpper_Comp() and
21107           InternalToLower_Comp().
21109 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21111         * char-conversions.h : The tables were incorrectly generated. Should
21112           be generated against invariant culture.
21114 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
21116         * object.c (mono_runtime_invoke_array): Fix return value when 
21117         passing pre-created valuetype objects to ctors.
21119         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
21120         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
21121         Fixes #74338.
21123 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
21125         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
21126         only used with --security and hides the wrong corlib version error.
21128 2005-03-30  Joshua Tauberer  <tauberer@for.net>
21130         * class.c: Changed mono_class_name_from_token so that types
21131         outside of a namespace don't have an initial period.  Improved
21132         the g_warning message used in _mono_class_get when loading
21133         fails.
21134         * assembly.c: In mono_assembly_load_reference, when an assembly
21135         can't be found, "No such file or directory" is misleading and
21136         unhelpful because a few paths were checked for the presence of
21137         the assembly.  When that happens (ENOENT), display a nicer
21138         message indicating the directories that were searched.  In all
21139         cases, the warning is made easier to read for non-hackers.
21141 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
21143         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
21144         project/solution.
21145         * appdomain.h|domain.c: Removed inline from functions.
21146         * appdomain.c: Reduced warnings when compiling on windows.
21147         * icall.c: Fixed output_debug declaration to gunichar2*.
21148         * mono-config.c: Reduced warnings when compiling on windows.
21149         * rand.c: Added missing "windows.h". Added missing return value.
21150         * rawbuffer.c: Added missing winsock2.h for windows.
21151         * sysmath.h: Added mono-compiler.h header to allow/ease 
21152         compilation with non-GCC compilers.
21153         * threads.c: Fixed declarations to compile with VS.NET C compiler.
21154         Removed cast warnings.
21156         Adapted from the work of J Lothian (for VC6).
21158 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
21160         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
21161         from default_path.
21163 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
21165         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
21166         the 2.0 profile.
21168 2005-03-27  Raja R Harinath  <harinath@gmail.com>
21170         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
21171         has to be in $(exec_prefix).  $(prefix) is for arch-independent
21172         stuff, and it would probably use $(prefix)/share rather than
21173         $(prefix)/lib.
21175 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21177         * console-io.c: added 2 includes that might be missing.
21179 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
21181         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
21182         profile.
21184         * reflection.c (create_custom_attr): Allocate the params array using
21185         alloca so it gets GC tracking.
21187 2005-03-23  Chris Toshok  <toshok@ximian.com>
21189         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
21190         out some spew.
21192 2005-03-24  Raja R Harinath  <rharinath@novell.com>
21194         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
21195         changes to pick up any changes in prefix, etc.
21197 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21199         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
21200         
21201         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
21202         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
21204 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21206         * class-internals.h object-internals.h class.c reflection.c: Extend the
21207         mono_lookup_dynamic_token () function to return the class of the
21208         token as well. 
21210         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
21211         well. Fixes #73848.
21213 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
21215         * security-manager.c: Skip inheritance checks for intra-corlib
21216         class inheritance and method overrides. This skips a lot of checks
21217         and (anyway) permissions cannot work until corlib is loaded.
21219 2005-03-23  Martin Baulig  <martin@ximian.com>
21221         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
21222         MONO_TYPE_GENERICINST.  
21224 2005-03-23  Martin Baulig  <martin@ximian.com>
21226         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
21228 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21230         * class.c: added locking comments to some functions.
21231         Cache the interface offsets arrays (saves about 20 KB
21232         of runtime memory in a typical app).
21233         Reduce the time overhead in mono_class_setup_supertypes ().
21235 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
21237         * icall.c: speedup and fix leaks in GetMethodsByName and
21238         GetPropertiesByName.
21240 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21242         * reflection.c: some locking fixes.
21244 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21246         * metadata.c: added missing break in case statement.
21248 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
21250         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21251         typedbyref return values. Fixes #73941.
21253 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
21255         * security-manager.c|h: Added demandunmanaged method and 
21256         suppressunmanagedcodesecurity class to MonoSecurityManager.
21257         Renamed aptc class to allowpartiallytrustedcallers.
21259 2005-03-17  Martin Baulig  <martin@ximian.com>
21261         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
21263 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21265         * file-io.c: disabled file async. IO using aio_*. It uses the
21266         threadpool now. Workaround for bug #73718.
21268 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21270         * assembly.h, mono-config.c: added code to deal with bundled configs
21271         for bundled assemblies.
21273 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
21275         * *.c, private.h: cleanup, removing old private.h header file.
21277 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
21279         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
21280         and throw_on_unmappable_char attributes.
21282 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
21284         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
21285         _ProcessName_internal.
21287 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
21289         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
21290         #73631.
21292         * icall.c threads.c threads-types.h: Remove slothash icalls as they
21293         are no longer used.
21295 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
21297         * object.c (compute_class_bitmap): Add support for generics. Fixes
21298         #73527.
21300 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21302         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
21304 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21306         * filewatcher.c: commented out the code for windows watcher, as we don't
21307         use it (we use the managed implementation instead).
21309 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21311         * object-internals.h (MonoThread): Remove 'unused1' field.
21313         * appdomain.c: Bump corlib version.
21315         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
21317         * reflection.c (mono_reflection_create_runtime_class): Remove the
21318         AssemblyBuilder.Save optimization since it causes too many problems.
21320 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
21322         * exception.c|h: Added mono_get_exception_reflection_type_load to
21323         create a ReflectionTypeLoadException object.
21324         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
21325         to return NULL is a InheritanceDemand fails during reflection. Updated
21326         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
21327         ReflectionTypeLoadException if an InheritanceDemand fails during 
21328         reflection. Added icall mapping for GetLinkDemandSecurity.
21329         * security-manager.c|h: Added ves_icall_System_Security_
21330         SecurityManager_GetLinkDemandSecurity internal call to return the
21331         class and methods permissions set for a LinkDemand. Removed unused
21332         fields in MonoSecurityManager.
21334 2005-03-10  Martin Baulig  <martin@ximian.com>
21336         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
21337         it's a generic instance.
21339 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
21341         * reflection.c (mono_get_object_from_blob): Applied patch from
21342         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
21344         * class.c (mono_class_is_assignable_from): Another try at fixing 
21345         #73469 without breaking anything.
21347 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
21349         * class.c: (mono_class_is_assignable_from): Revert the last changes
21350         since they don't work with generics.
21351         
21352         * class.c (mono_class_is_assignable_from): Fix build bustage.
21354         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
21355         the managed IsAssignableFrom method. Fixes #73469.
21357         * reflection.c (mono_reflection_call_is_assignable_from): New helper
21358         function.
21360 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
21362         * object.c (mono_load_remote_field_new): Fix returning uninitialized
21363         memory when the remoting callback does not sets the out arguments.
21364         Fixes #73007.
21366         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
21367         by mistake.
21369         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
21371         * object-internals.h (MonoStackFrame): Sync with managed object layout.
21373         * appdomain.c: Bump corlib version.
21375 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
21377         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
21378         function.
21380         * threads.c (mono_thread_attach): Detect threads which are not started
21381         by the GC pthread wrappers.
21383 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
21385         * icall.c: Added new icall for RNG.
21386         * rand.c|h: Added new icall to open the RNG. This allows to share a 
21387         single handle on Linux to access /dev/urandom and fix #73183.
21389 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
21391         * object.c: setting the new vtable in a transparent proxy object must
21392         not change the GC descriptor.
21394 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21396         * object.c: fixed compilation without GCJ support.
21397         * reflection.c: for runtime-created types ensure klass->has_references
21398         is correct (bug #73215).
21400 2005-03-02  Martin Baulig  <martin@ximian.com>
21402         * class.c (mono_class_is_assignable_from): Make this work if
21403         `oklass' is a generic instance; fixes #72831.
21405 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21407         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
21408         with hasthis set.
21409         
21410         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
21412         * marshal.c: Reorganize native->managed marshalling code to also use
21413         the emit_marshal_... functions.
21415 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21417         * object.c: typed allocs have issues with bitmap sizes > 30,
21418         so check for max_set >= 30.
21420 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21422         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
21423         managed code. Fixes #73012.
21425         * metadata.h (MonoMarshalSpec): Add elem_mult field.
21427         * metadata.c reflection.c: Load/Emit elem_mult as well.
21428         
21429         * metadata.h (MonoMarshalSpec): Add comment.
21431         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
21433         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
21434         num_elem to -1 if not given.
21436         * object-internals.h (MonoReflectionMarshal): Add has_size field.
21438         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
21439         given values.
21441 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
21443         * null-gc.c (mono_gc_free_fixed): Was not compilable.
21445 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
21447         * reflection.c (encode_marshal_blob): Encode param_num field as well.
21449         * object-internals.h (MonoReflectionMarshal): Add param_num field.
21451 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21453         * object.c: generalized the reference bitmap creation
21454         and added hooks for the new GC.
21455         * class-internals.c: removed the gc_bitmap field from MonoClass.
21457 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21459         * domain.c: help the compiler to produce better code
21460         in mono_jit_info_table_find ().
21462 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21464         * object.c: make all allocations look typed.
21466 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21468         * socket-io.c: load Mono.Posix if it's not loaded already
21469         (fixes bug#73033).
21471 2005-02-24  Martin Baulig  <martin@ximian.com>
21473         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
21474         * reflection.c (dup_type): Likewise.
21476 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
21478         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
21479         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
21481 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21483         * domain.c, threads.c, object-internals.h: make the critical thread
21484         local vars use the fast access mode (even when we're compiled in
21485         a lib). Provide accessors to be used by the jit during codegen.
21487 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21489         * appdomain.c: Changed hook functios behavior to include
21490         support for the reflection only assemblies. Some icalls were changed
21491         to support the mentioned assemblies too. Signatures of static methods
21492         try_assembly_resolve and real_load now have an additional parameter:
21493         refonly.
21495         * assembly.c: General changes to mono_assembly_ methods to support
21496         reflection only api. Functions mono_assembly_open, mono_assembly_load,
21497         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
21498         suffix, to support an additional gbool parameter to specify whether
21499         the assembli is reflection only or not. Created some new hook functions 
21500         to add support for reflection only assemblies. Signatures of static 
21501         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
21502         have now an additional parameter: refonly.
21504         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
21505         indicating whether the assembly is reflection only or not.
21507         * exception.c: Add mono_get_exception_invalid_operation.
21509         * icall.c: Throw an InvalidOperationException when trying to invoke
21510         a property/method/event, or trying to set/get the value of a field.
21511         Also add an icall to retrieve the ref_only flag to the
21512         MonoReflectionAssembly.
21514 2005-02-23  Chris Toshok  <toshok@ximian.com>
21516         Part of fix for #72827.
21517         * mono-debug.c (mono_debug_add_method): add lexical block data to
21518         the info we write.  Kind of a hack at the moment - we copy the
21519         lexical block info from the MonoDebugMethodInfo to the
21520         MonoDebugMethodJitInfo here, before writing it.
21521         (mono_debug_read_method): read the lexical block info.
21523         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
21525         * debug-mono-symfile.h: add lexical block support.
21527         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21528         support.
21530 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21532         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21534         * object.c (mono_runtime_free_method): Call mono_free_method () and
21535         put the TODOs there.
21537         * loader.c (mono_free_method): Free up most memory allocated for 
21538         dynamic methods.
21540 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21542         * reflection.c: properly flag a Type argument to a
21543         named custom attr value (bug #72248).
21545 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21547         * reflection.c: reduce code duplication in named custom
21548         attribute encoding.
21550 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21552         * reflection.c: properly encode custom attrs of type object
21553         (bug #72649).
21555 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21557         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21559 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21561         * socket-io.c: load System.dll if it's not loaded already
21562         (bug #72850 and #70477).
21564 2005-02-21  Martin Baulig  <martin@ximian.com>
21566         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21567         generic instances.
21569 2005-02-21  Martin Baulig  <martin@ximian.com>
21571         * reflection.c (mono_image_build_metadata): We also need to
21572         "fixup" the MethodImpl table after we computed the final method
21573         indices.  Call fixup_methodimpl() to do that.
21574         (fixup_methodimpl): New private method.
21576 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21578         * assembly.c: special case mscorlib.dll (bug#72536),
21579         patch from Carlos Alberto Cortez.
21581 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21583         * threads-types.h threads.c: Fix build bustage.
21585         * threads.c: Use a union for long<->double conversions.
21587         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21588         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21590         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21591         containing the checkpoint call with NOT_TAKEN.
21592         
21593         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21594         checkpoint before pushing the arguments, so they won't have to be
21595         spilled to stack.
21597 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21599         * domain.c, assembly.c, domain-internals.h: make some data
21600         const and relocation-free.
21602 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21604         * object.c, appdomain.c, class-internals.h: introduce the
21605         MonoClassRuntimeInfo structure to hold the info needed to
21606         use a class at runtime. Made mono_class_vtable() lock-free
21607         for all the appdomains.
21609 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21611         * metadata-internals.h, image.c: introduce a per-image mempool to
21612         be used for memory that has the same lifetime as the image.
21614 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21616         * domain.c: In mono_init_internal(), instead of selecting the first
21617         runtime version supported by an executable, get a list of all
21618         supported versions and select the one for which an mscorlib exists
21619         (since even if the runtime supports a given version, it doesn't mean
21620         that the framework for that version is installed).
21621         Modified get_runtimes_from_exe to support this behavior.
21622         In supported_runtimes, added information about additional system
21623         assembly versions.
21624         
21625         * assembly.c: Added support for more than one system assembly version
21626         per runtime version. Updated the assembly list.
21627         In mono_assembly_remap_version, removed the initial version check,
21628         since we don't know to which version we need to compare until we
21629         get the version set on which the assembly is based.
21630         Moved the code for loading corlib into the new method
21631         mono_assembly_load_corlib(), so it can be used by the initialization
21632         code.
21633         
21634         * domain-internals.h: Updated data structures and added declaration
21635         for mono_assembly_load_corlib.
21637 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21639         * reflection.c (resolve_object): Fix the creation of the signature in 
21640         the SignatureHelper case.
21642         * assembly.c (mono_assembly_remap_version): Fix binary search.
21643         
21644 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21646         * class.c: Added inheritance check when a method is overloaded (from a
21647         virtual method or when implementing an interface) and when a class is
21648         inherited. Added functions to set a failure for a class and to 
21649         retreive the exception from a failure.
21650         * class-internals.h: Added fields to MonoClass to keep the exception
21651         information status for inheritance (or other exceptions) to be thrown
21652         later (i.e. not at load time).
21653         * object.c: Throw the inheritance SecurityException when a type is to 
21654         be created with either class or method inheritance violations.
21655         * reflection.c|h: Fix when getting declsec from a class. Removed 
21656         unrequired code for class. Improved sanity in parameter naming.
21657         * security-manager.c|h: Added functions to check for class and method
21658         inheritance.
21660 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21662         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21663         and has_finalize in dynamic types as well.
21665 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21667         * culture-info-table.h : fixed currency format for en-GB (and so on).
21669 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21671         * gc.c: ensure the GC handles never have 0 as a value.
21673 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21675         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21676         a pointer to a struct to unmanaged code. Fixes #72625.
21678 2005-02-16  Martin Baulig  <martin@ximian.com>
21680         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21682 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21684         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21686 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21688         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21690         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21691         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21692         etc. Fixes #71471.
21694         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21696         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21698 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21700         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21701         changes to make the current context a field in MonoThread.
21703 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21705         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21706         the last change.
21707         
21708         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21709         extracted from mono_marshal_get_native_wrapper.
21711         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21712         to create wrappers around native functions.
21714         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21715         delegates for arbitrary function pointers. Fixes #71472.
21717 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21719         * threads.c: cleaned up the code a little.
21721 2005-02-15  Martin Baulig  <martin@ximian.com>
21723         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21724         the data table.
21726         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21727         allocate larger chunks if needed.
21729 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21731         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21732         in by mistake.
21734 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21736         * domain.c: keep the domains in an array and ensure the domain ids
21737         are kept small, so they can be used as indexes to domain-specific data
21738         with a small memory overhead.
21740 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21742         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21744 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21746         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21748 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21750         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21752         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21753         values.
21755         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21756         
21757 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21759         * domain-internals.h: add the hashtable here.
21761         * class-internals.h: Remove `info' from MonoMethod
21763         * domain.c: Add a new hashtable, jit_trampoline_hash
21765 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21767         * object.c: don't set the value of static fields
21768         (fixes bug#72494).
21770 2005-02-11  Martin Baulig  <martin@ximian.com>
21772         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21773         (mono_debug_add_method): Silently ignore the method if it's too big.
21774         (mono_debug_add_type): Likewise.
21776 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21778         * threads.c, appdomain.c: remove #ifdefs from the code.
21780 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21782         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21783         common security informations. This allows us to stay in unmanaged code
21784         when doing LinkDemand and it's special cases (except for the first 
21785         time for initialization). The flags a very much used with --security.
21786         * reflection.c|h: Added code to get declarative security attributes 
21787         for LinkDemand and InheritanceDemand. This required to refactor the
21788         existing code for Demand.
21789         * security-manager.c|h: Added new method fields for the special cases
21790         of LinkDemand.
21792 2005-02-10  Martin Baulig  <martin@ximian.com>
21794         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21795         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21797 2005-02-10  Martin Baulig  <martin@ximian.com>
21799         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21800         debugging code; this is almost a complete rewrite.
21802         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21804 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21806         * domain.c, object.h: expose mono_string_equal () and 
21807         mono_string_hash ().
21808         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21809         it's implemented in managed code.
21811 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21813         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21814         lo leak objects between appdomains.
21816 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21818         * assembly.c: old compilers compilation fix from 
21819         robertj@gmx.net (Robert Jordan).
21821 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21823         * class-internals.h: Little reminder for the future.
21825         * debug-helpers.c: Fix up wrapper_type_names
21827 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21829         * image.c, metadata-internals.h: when loading an image from a file,
21830         mmap all of it and use the same codepaths as when using a
21831         in-memory image: the code is simpler and we use less memory
21832         (both writable and readonly).
21834 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21836         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21837         API to alloc runtime data structures that need to be tracked by the
21838         GC and contain pointers.
21839         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21840         make the code more readable and eventually use a different GC.
21842 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21844         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21845         for out arguments.
21846         
21847 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21849         * object.c: In release_type_locks(), don't release the cctor lock
21850         if it has already been released. This fixes a crash in the
21851         thread5 test.
21853 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21855         * gc.c, marshal.c, icall.c: register a delegate for finalization
21856         only when the native function pointer has been allocated for it.
21858 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21860         * object.c: cleaned up some code, allocate objects that are
21861         pointer free with the atomic malloc variant. Allocate memory
21862         for static data from the mempool if it's pointer-free.
21863         Allocate the bounds array at the end of the array data, when needed.
21864         * object-internals.h, object.h: move a private function in a private
21865         header.
21866         * class.c: handle missing case in tracking references in fields.
21868 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21870         * class.c, class-internals.h: keep track if a type has
21871         reference fields in either the instance or static fields.
21873 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21875         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21876         and renamed to MonoRuntimeInfo. Added fields to store the expected
21877         framework assembly version. Changed mono_get_framework_version and
21878         mono_get_runtime_version for a single mono_get_runtime_info method.
21879         
21880         * assembly.c: Added method to remap system assembly versions to the
21881         current executing runtime version. Removed old mapping code.
21882         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21883         
21884         * icall.c, reflection.c: Track api changes.
21886 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21888         * loader.c (method_from_memberref): Improve error reporting,
21889         produce the class name instead of the typeref/typedef index. 
21891 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21893         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21895 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21897         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21898         stdcall and charset name mangling.  Reorganize the code and add
21899         some tracing stuff.
21901 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21903         * monodiet.c: More iters!
21905         * marshal.c: Iter usage.
21907         * icall.c: Iter usage.
21909         * object.c: Use iters.
21911         * debug-helpers.c: More iters
21913 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21915         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21916         under win32.
21918 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21920         * mono-debug-debugger.c: use iters
21922         * class.c, class-internals.h: mono_class_setup_events is static
21923         now
21925         * All callers: use iters
21927 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21929         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21930         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21932 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21934         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21936         * marshal.h: Add prototypes for ldfld/stfld_remote.
21938         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21939         this is called during startup.
21940         
21941 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21943         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21944         MonoThreadsSync struct private in monitor.c. Changed the way
21945         MonoThreadsSync is allocated so it's faster and there is no
21946         need to keep track of it with a finalizer and it uses less memory.
21947         This also finally allows us to allocate mono objects as ptrfree when
21948         there are no reference fields.
21950 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21952         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21953         disappearing link to the GC interface and use them to simplify
21954         the gchandles code.
21956 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21958         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
21959         stfld_remote which call mono_load/store_field_new. This allows methods
21960         calling ldfld/stfld wrappers to be AOTed.
21962         * console-io.c: Include sys/filio.h under solaris.
21963         
21964         * console-io.c: Include curses.h if needed correctly.
21966 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21967         
21968         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
21969         method->klass as well.
21971         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
21973         * class.c (mono_class_init): Switch on lazy initialization of 
21974         methods.
21976         * class.c (mono_class_get_finalizer): Handle the case when the 
21977         finalizer is inherited.
21979 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21981         * console-io.c: <curses.h> is needed by term.h on solaris.
21983 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
21985         * icall.c, class-internals.h, monodiet.c, class.c: Remove
21986         mono_class_setup_properties where possible. Remove this ftn from
21987         the header file, and make it static.
21989 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21991         * loader.c: Add missing setup_... call.
21993         * class.c: Add missing setup_... calls.
21995         * class.c (mono_class_init): Switch on lazy initialization of 
21996         the generic vtable.
21997         
21998         * class.c (mono_class_init): Fix generics broken by the recent changes.
22000         * monodiet.c (handle_type): Add missing setup_... calls.
22002         * class.c: Back out garbage in previous patch.
22003         
22004         * class.c: Add missing setup_... calls.
22006         * class.c (mono_class_get_method_from_name_flags): Avoid calling
22007         mono_class_setup_methods () if possible.
22009         * class-internals.h (MonoClass): Add 'has_cctor' flag.
22011         * class-internals.h (MonoCachedClassInfo): New structure.
22013         * class.c: Initialize properties and events fields of MonoClass lazily.
22015         * class.c: Add infrastructure for lazily initializing the methods and
22016         vtable fields of MonoClass. Not yet used.
22018         * class.c (mono_class_get_finalizer): New helper function.
22020         * class.c: Add infrastructure for loading some class related data from
22021         an AOT file.
22023         * object.c: Add infrastructure for initializing the vtable from data
22024         in the AOT file.
22026         * gc.c (run_finalize): Use mono_class_get_finalizer ().
22028         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
22029         appropriate initialization function before accessing parts of the
22030         MonoClass structure.
22032         * marshal.c: Fix warnings.
22033         
22034         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
22036         * mono-debug-debugger.c (get_exception_message): Use 
22037         mono_class_get_method_from_name_flags ().
22039 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
22041         * reflection.c, appdomain.c: Replace a few manual searches that
22042         Zoltan missed. (Paolo approved this part of my initial patch).
22044 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
22046         * profiler.c: disable recording statistical events at report time.
22048 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22050         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
22051         to byteswap arrays of enum values, too (bug #72080).
22053 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
22055         * appdomain.c (set_domain_search_path): Allow this to be called if
22056         domain->setup is not yet set.
22058         * loader.c (mono_method_get_index): New helper function.
22060         * loader.c reflection.c: Use mono_method_get_index ().
22062         * class.c (mono_class_get_method_from_name_flags): New helper method.
22064         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
22065         this.
22067         * class.c (mono_class_get_cctor): New helper method.
22069         * string-icalls.c object.c class.c marshal.c reflection.c: Use
22070         mono_class_get_method () to look up methods.
22072 2005-02-01  Miguel de Icaza  <miguel@novell.com>
22074         * console-io.c: Fix the build, this should work on Windows.
22076 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
22078         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
22079         be set to null to keep things valid
22081 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22083         * icall.c: added Console 2.0 icalls.
22084         * Makefile.am: added console-io.[ch]
22085         * console-io.[ch]: internal calls for Console 2.0 API.
22087 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22089         * class.c: make sure we consider all the interfaces
22090         when calculating max_interface_id (bug found by
22091         Jeroen Frijters running ikvm).
22093 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
22095         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
22096         valuetype fields to null.
22098         * object.c (set_value): Ditto. Fixes #71669.    
22100 2005-01-31  Martin Baulig  <martin@ximian.com>
22102         * metadata.c (mono_metadata_has_generic_params): New public
22103         function; checks whether something is a generic method.
22105 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
22107         * appdomain.c: fix infinite recursion when adding assemblies.
22109 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
22111         * object.c: Fix small typo to return all items for Environment.
22112         GetCommandLineArgs.
22114 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22116         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
22117         reflection.c: more domain and assembly-unload related fixes
22118         and memory leaks plugs.
22120 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
22122         * 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.
22124 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
22126         * loader.c (mono_method_signature): Make this method lazy
22127         (mono_get_method_from_token): Don't computate the signature here.
22129         Doing this saves quite a bit of memory. I got 90 kb on starting up
22130         monodoc. It should also save some disk reads on startup.
22132         * *: MonoMethod->signature might be NULL now. You *MUST* use
22133         mono_method_signature.
22135 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
22137         * object.c (mono_runtime_get_main_args): Return an array from the
22138         current domain here. Fixes #71938.
22140 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
22142         * monitor.c: formatting changes to comply with the
22143         mono coding style and remove #ifdefs from the code.
22145 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22147         * metadata.c, private.h: remove some unneeded data
22148         and use a more compact representation for table schemas.
22150 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
22152         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
22153         to get a better distribution in hash tables.
22154         * *.c: use mono_aligned_addr_hash() where appropriate.
22155         * assembly.c: make var static.
22157 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
22159         * domain-internals.h: Put MonoJitInfo on a diet.
22161         * domain.c: Fix a warning.
22163 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22165         * gc.c: rework the gc handles code to reuse handles
22166         when freed.
22168 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22170         * domain.c: fixed long standing bug in mono_string_equal() which
22171         was brought to light with the ldstr changes.
22173 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
22175         * reflection.c: Remove warning by adding missing include for marshal.h
22177 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22179         * domain.c, object.c: change the ldstr_table to hold
22180         MonoString* as keys: makes the runtime isinterned lookup
22181         faster and simplifies memory management.
22183 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
22185         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
22186         possible to add imperative security checks before calling the icall.
22187         * reflection.c: Return security attributes on the original MonoMethod
22188         (and not the wrapped one). This fix permissions on icalls.
22190 2005-01-25  Dick Porter  <dick@ximian.com>
22192         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
22193         the check for mktime() support actually test the mktime() return
22194         value.  "Fixes" bug 71682, though the output is still different to
22195         MS.
22197 2005-01-25  Martin Baulig  <martin@ximian.com>
22199         * class.c (mono_class_is_assignable_from): Make this work for
22200         generic instances.
22202 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
22204         * marshal.c (mono_string_utf8_to_builder)
22205         (mono_string_builder_to_utf16): We might not have ownership of the
22206         string. In thise case, we need to create a new buffer.
22208         * object-internals.h (mono_stringbuilder_capacity): sb->str might
22209         be null, in which case, use the default capacity.
22211 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22213         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
22214         GC events to the profiler.
22216 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22218         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
22219         if you don't want the GC to run.
22221 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
22223         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
22224         start providing a GC API and keeping different implementations in
22225         their own file.
22226         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
22228 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
22230         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
22231         mmap rather than allocating a huge buffer.
22232         (mono_debug_close_mono_symbol_file): Free the buffer allocated
22233         above.
22235 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
22237         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
22238         and CheckExecutionRights.
22239         * reflection.c|h: Keep the index of the declarative security to be 
22240         used, instead of the pointer, when AOT compiler is used. Also add 
22241         class initialization when requesting demands.
22242         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
22243         CheckExecutionRights. Both properties are now FALSE by default, and
22244         unmodifiable, unless the --security option is used.
22246 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22248         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
22249         reflection.c: properly refcount images and assemblies, many leaks fixed.
22251 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22253         * threadpool.c: increase the timeout for threads in the thread pool to
22254         10s.  Fixes bug #67159.
22256 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
22258         * class-internals.h: Sun's compiler insists on explicit
22259         signed on bit fields to handle then correctly.
22261 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
22263         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
22264         Make the size of the array fit only the number of invalid path
22265         chars that we have.
22267         * class.c (_mono_class_get): Improve the error reporting when a
22268         class referenced is not found, to assist debugging. 
22270 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
22272         * threads.c: fix off-by-one error.
22273         * domain.c: free data allocated in the domain.
22275 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22277         * reflection.c (mono_method_body_get_object): Fill out exception info
22278         as well.
22280         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
22281         structure.
22282         
22283 2005-01-19  Martin Baulig  <martin@ximian.com>
22285         * loader.c (mono_get_method_constrained): Make this work again.
22287 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22289         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
22290         guint16 to match the managed side.
22292         * reflection.c (mono_reflection_body_get_object): Fill out local
22293         variables array.
22295         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
22296         as well.
22298         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
22299         'local_var_sig_token'.
22301 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
22303         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
22304         System.Drawing.
22306         * reflection.c (mono_method_body_get_object): Handle abstract and
22307         runtime methods.
22309 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
22311         * marshal.c, loader.c, class-internals.h, reflection.c:
22312         store the emthod data for a wrapper in an array instead of a list.
22314 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
22316         * marshal.c: change the code to allocate memory more
22317         conservatively for method wrappers.
22319 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
22321         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
22322         fields from MonoClass to the marshal info structure where they belong.
22324 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22326         * class.c, object.c, class-internals.h, marshal.c: rearrange
22327         some fields and tweak some types to lower memory usage.
22329 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
22331         * threads.c (signal_thread_state_change): Handle the case when the
22332         target thread is the current thread.
22334         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
22336         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
22337         emit_ptr_to_object_conv. 
22339         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
22340         marshalling. Fixes #71352.
22342 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22344         * metadata.h, blob.h: move table enum to blob.h so it can be included
22345         in any header.
22346         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
22347         cut the size of MonoImage/MonoDynamicImage.
22349 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
22351         * profiler.c (mono_profiler_install_simple): Fix default arguments.
22353 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
22355         * reflection.c, reflection.h, icall.c: add a function to check
22356         if an attribute type is defined for a metadata object.
22358 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
22360         * object-internals.h: Added some needed fields from StringBuilder class.
22361         * marshal.c: Set the maxCapacity when creating a StringBuilder.
22363 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
22365         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
22366         threads before shutting down the runtime.
22368         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
22370 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22372         * object-internal.h, threads.c: implement stacksize and 
22373         parameterized thread start functionality (requires
22374         matching corlib). Marked broken code for later removal.
22376 2005-01-12  Martin Baulig  <martin@ximian.com>
22378         * class-internals.h (MonoGenericClass): Moved the `initialized'
22379         flag to MonoDynamicGenericClass, removed `init_pending'.
22380         (MonoGenericInst): Added `is_reference' flag.
22382 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
22384         * reflection.c (mono_image_create_pefile): Only set the pe_offset
22385         inside the MSDOS header. Fixes #71201.
22387         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
22388         gc thread.
22389         (mono_domain_finalize): Ditto.
22391 2005-01-12  Martin Baulig  <martin@ximian.com>
22393         * class.c (mono_get_shared_generic_class): Use the cache for
22394         non-dynamic generic classes.
22396         * class-internals.h (mono_class_create_generic_2): Removed
22397         function prototype, this function is now static inside class.c.
22399         * class.c (mono_class_create_generic_2): Made this static, only
22400         call it from mono_class_init() and mono_class_setup_parent().
22401         (collect_implemented_interfaces_aux): Call mono_class_init() on
22402         the interfaces we collect.
22403         (mono_class_setup_vtable): Call mono_class_init (class->parent).
22405 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22407         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
22408         it a real thread handle.
22410         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
22411         MonoJitExceptionInfo, since each catch clause needs its own variable.
22412         
22413 2005-01-11  Dick Porter  <dick@ximian.com>
22415         * image.c (mono_pe_file_open): New variant on mono_image_open()
22416         that does not set up the CLI metadata; used for FileVersionInfo so
22417         it can get the data for windows binaries too.
22418         
22419         * process.c (process_read_string_block): Don't read off the end of
22420         the StringTable block.
22422         These both fix bug 70766.
22424 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
22426         * gc.c: set some fields to NULL at GC cleanup time.
22427         * threads.c: if we quit the main thread, call exit ().
22429 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22431         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
22433 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
22435         * threads.h, threads.c, object.c: added accessor and settor for
22436         main_thread. Handle it specially when exiting from it: wait
22437         for other foreground threads to exit.
22439 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
22441         * process.c, verify.c: remove some bloat.
22443 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
22445         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
22446         the calling convention to cdecl under win32.
22448 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
22450         * object.c (mono_object_get_size): New function to get the size of
22451         an object instance.
22453         * profiler.c (simple_allocation): Use above.
22455 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
22457         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
22458         ves_icall_System_AppDomain_getRootDomain (as it's not required to
22459         get an appdomain by it's id and we can't assume the root's id is 0).
22460         * domain-internals.h: Change the function prototype to match.
22461         * icall.c: Change the icall table for AppDomain.
22463 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
22465         * locales.c (string_invariant_compare_char): Only compute
22466         GUnicodeTypes in the case where we need them.  Test for ordinality
22467         first and return if so.
22469         From the commit:
22471                 /*
22472                  * FIXME: here we must use the information from c1type and c2type
22473                  * to find out the proper collation, even on the InvariantCulture, the
22474                  * sorting is not done by computing the unicode values, but their
22475                  * actual sort order.
22476                  */
22478 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22480         * loader.c: for P/Invoke methods, allow the "Internal" shared
22481         library name to refer to the calling process symbol namespace.
22483 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
22485         * Makefile.am: Add the security manager to the build.
22486         * security-manager.c|h: New. Initialization of the security manager.
22488 2005-01-07  Dick Porter  <dick@ximian.com>
22490         * threads.c: 
22491         * monitor.c: Update thread state during Monitor and WaitHandle
22492         waits.  Fixes bug 71031.
22494 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
22496         * reflection.c (property_encode_signature): Correctly handle when the
22497         property has no methods.
22499 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
22501         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
22502         
22503         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
22504         fields from mb, not rmb. Fixes #71017.
22506         * marshal.c (emit_ptr_to_str_conv): Add support for 
22507         ByValTStr -> string conversion. Fixes #71015.
22509         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
22511         * mempool.c (mono_mempool_contains_addr): New helper function.
22513 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22515         * metadata.c (mono_metadata_compute_size): Fix size calculation of
22516         HasSematics encoded fields.
22517         
22518         * metadata.c (mono_type_to_unmanaged): Improve error message for 
22519         invalid string marshalling.
22521         * metadata.c: Fix warnings.
22522         
22523 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22525         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22526         profiler support.
22528 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22530         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22531         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22532         tests.
22534 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22536         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22537         so methods containing these can be AOTed.
22539 2005-01-03  Martin Baulig  <martin@ximian.com>
22541         * loader.c (find_method): Removed the hack for generic instances.
22542         (method_from_memberref): If our parent is a generic instance, pass
22543         its generic type definition to find_method() and then inflate the
22544         method.
22545         (mono_get_method_constrained): Pass the generic type definition to
22546         find_method() and inflate the method later.
22548         * class-internals.h (MonoStats): Added `generic_class_count'.
22550         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22551         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22553         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22554         generic type definitions.
22556 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22558         * loader.c icall.c: Fix warnings.
22560 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22562         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22563         blittable types. Fixes #70864.
22565 2004-12-29  Martin Baulig  <martin@ximian.com>
22567         * icall.c
22568         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22570         * reflection.c (mono_method_get_object): Create a
22571         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22572         call mono_get_inflated_method().
22574         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22576 2004-12-27  Martin Baulig  <martin@ximian.com>
22578         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22579         (MonoMethodInflated): Added `inflated' field.
22581         * class.c (mono_class_inflate_generic_method): Don't really
22582         inflate the method here; just set the `is_inflated' flag in the
22583         MonoMethod.
22584         (mono_class_get_inflated_method): Actually inflate the method here
22585         if it's not already inflated; we use the MonoMethodInflated's new
22586         `inflated' field as a cache.
22588 2004-12-26  Martin Baulig  <martin@ximian.com>
22590         * class.c
22591         (inflate_generic_class): Moved some code out of inflate_generic_type().
22592         (mono_class_inflate_generic_method): If we're already inflated,
22593         inflate the context and use the declaring method; ie. make sure
22594         the declaring method of an inflated method is always the generic
22595         method definition.
22596         (mono_class_create_from_typedef): Create
22597         `class->generic_container->context->gclass'.
22599 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22601         * metadata-internals.h, marshal.c, reflection.c: More
22602         MonoGHashTable->GHashTable.
22604         * domain-internals.h, class.c: Change MonoGHashTable's into
22605         GHashTables for some cases where no gc stuff is used
22607         All users: update apis
22609 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22611         * metadata.c (builtin_types): Make this `const'. Makes this get
22612         put into the shareable section.
22613         (mono_metadata_init): Casts to make gcc happy.
22615 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22617         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22619 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22621         * icall.c: Added an internal call to retrieve the position and length
22622         of assembly-level declarative security attributes (RequestMinimum, 
22623         RequestOptional and RequestRefuse). This is used by the Assembly class
22624         to re-create the corresponding permission sets.
22626 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22628         * marshal.c: fix the stelemref wrapper to be type correct
22629         (and faster).
22631 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22633         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22634         to do key & 0x7fffffff. Hashtable already does this. It just
22635         results in longer code.
22637 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22639         * appdomain.c: Bump corlib version.
22640         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22641         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22642         * reflection.c|h: Add functions to get declarative security infos
22643         (blob position and length) for assemblies, classes and methods.
22645 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22647         * reflection.c: sort the constant table (bug #70693).
22649 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22651         * object-internals.h, threads.c, domain.c: add accessors for
22652         the MonoThread and MonoDomain tls keys.
22654 2004-12-18  Martin Baulig  <martin@ximian.com>
22656         * class.c (inflate_generic_type): If we're inflating a generic
22657         instance, set `ngclass->context->container = context->container';
22658         ie. the container we inflated into.
22660         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22661         inflate_generic_type() changes.
22663 2004-12-17  Martin Baulig  <martin@ximian.com>
22665         * class-internals.h
22666         (MonoGenericClass): Replaced `MonoType *generic_type' with
22667         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22668         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22669         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22671 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22673         * exception.c (mono_exception_from_token): New helper function.
22675 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22677         * assembly.c (mono_assembly_load_with_partial_name): Call 
22678         mono_assembly_loaded before invoking the preload hooks. Fixes
22679         #70564.
22681         * object-internals.h (MonoThread): Change culture_info and 
22682         ui_culture_info into an array.
22684         * threads.c: Cache culture info objects from more than one appdomain.
22686         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22687         current UI culture.
22689 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22691         * threads.h threads.c appdomain.c: Clear the culture_info field of
22692         all threads during unloading if they point to an object in the dying
22693         appdomain.
22695 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22697         * culture-info.h (TextInfoEntry): New struct
22698         * object-internals.h: sync with managed
22699         * locales.c: fill the `text_info_data' field
22700         * culture-info-tables.h: update
22702 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22704         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22705         collector.
22707 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22709         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22710         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22712 2004-12-12  Martin Baulig  <martin@ximian.com>
22714         * mono-debug-debugger.c (write_type): If we're an enum and the
22715         builtin types have already been initialized, call mono_class_init().
22717 2004-12-11  Martin Baulig  <martin@ximian.com>
22719         * metadata.c (mono_metadata_load_generic_params): Added
22720         `MonoGenericContainer *parent_container' argument; automatically
22721         compute `container->is_method'; pass the correct owner to
22722         get_constraints().      
22724         * reflection.c (compare_genericparam): Sort the GenericParam table
22725         according to increasing owners. 
22727 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22729         * profiler.c: allow disabling the default profiler.
22731 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22733         * decimal.c, icall.c: allow disabling System.Decimal support.
22735 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22737         * reflection.c: Add support for null attribute arguments.
22739 2004-12-09  Martin Baulig  <martin@ximian.com>
22741         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22742         names to get rid of compiler warnings.
22744 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22746         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22747         mono_marshal_load_type_info (). Fixes #69625.
22748         (mono_marshal_get_ptr_to_struct): Likewise.
22750 2004-12-08  Martin Baulig  <martin@ximian.com>
22752         * mono-debug.h: Bumped version number to 47.
22754         * mono-debug-debugger.c
22755         (mono_debugger_event_handler, mono_debugger_event): Take two
22756         guint64 arguments insteed of a gpointer and a guint32.  
22758 2004-12-08  Martin Baulig  <martin@ximian.com>
22760         * debug-mono-symfile.h
22761         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22762         `address' to `native_offset'.
22764 2004-12-08  Martin Baulig  <martin@ximian.com>
22766         * class.c (mono_class_create_from_typespec): Only inflate if we
22767         either have `context->gclass' or `context->gmethod'.
22769 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22771         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22773         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22775         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22777         * reflection.c (mono_assembly_get_object): Remove the workaround put
22778         in for the release.
22779         
22780         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22782         * appdomain.c: Bump corlib version.
22784         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22785         be visible in other appdomains.
22787 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22789         * threads.c: Interlocked inc and dec for longs were messed up,
22790         use a KISS based impl for this. Fixes 70234
22792 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22794         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22796 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22798         * icall.c: fix to follow policy not to allow struct
22799         arguments in icalls.
22801 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22803         * process.c: make the patch that handles spaces in file paths work
22804         on mono/windows too.
22806 2004-12-06  Martin Baulig  <martin@ximian.com>
22808         * class.c (mono_class_create_generic): Call
22809         mono_class_setup_supertypes() if we're dynamic.
22810         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22812 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22814         * object-internals.h: Add new fields to MonoThread.
22816         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22818         * icall.c threads-types.h threads.c: Add new icalls.
22820         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22822         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22823         managed side.
22825         * appdomain.c: Bump corlib version.
22827         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22828         internal assemblies. Fixes #69181.
22830 2004-12-05  Martin Baulig  <martin@ximian.com>
22832         * class.c (mono_class_inflate_generic_signature): Make this a
22833         no-op if `context' is NULL or we don't have any type parameters;
22834         also copy `sentinelpos'.        
22836 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22838         * image.c: Add unbox_wrapper_cache.
22840         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22842         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22843         function generator.
22844         
22845         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22846         Fixes #70173.
22848         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22849         
22850 2004-12-04  Martin Baulig  <martin@ximian.com>
22852         * loader.c (mono_method_get_signature_full): New public function;
22853         like mono_method_get_signature(), but with an additional
22854         `MonoGenericContext *' argument.
22856         * class.c (mono_class_inflate_generic_signature): Formerly known
22857         as inflate_generic_signature(); make this public.
22859 2004-12-04  Martin Baulig  <martin@ximian.com>
22861         * metadata.c
22862         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22863         instead of a `MonoGenericContainer *'.  
22864         (mono_metadata_parse_array_full): Likewise.
22865         (mono_metadata_parse_signature_full): Likewise.
22866         (mono_metadata_parse_method_signature_full): Likewise.
22867         (mono_metadata_parse_generic_inst): Likewise.
22868         (mono_metadata_parse_generic_param): Likewise.
22869         (mono_metadata_parse_mh_full): Likewise.
22870         (mono_type_create_from_typespec_full): Likewise.
22872 2004-12-03  Martin Baulig  <martin@ximian.com>
22874         * class-internals.h (MonoGenericContainer): Replaced the
22875         `MonoGenericContext * pointer with a `MonoGenericContext'
22876         structure and made it the first element.
22878 2004-12-03  Martin Baulig  <martin@ximian.com>
22880         * class.c
22881         (inflate_generic_type): Set the `context->container' when creating
22882         a new MonoGenericContext.
22883         (mono_class_inflate_generic_method): Likewise.
22884         (mono_class_create_from_typespec): Just use `context->container'
22885         to get the container.
22887         * loader.c (method_from_methodspec): Set `context->parent' from
22888         `context->container' - and if that's a method container, use its
22889         parent.  Also set the `context->container' when creating a new
22890         MonoGenericContext.
22891         (mono_get_method_from_token): Use just `context->container' to get
22892         the container.
22894         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22895         `gclass->context->container'.
22897         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22898         the `context->container' when creating a new MonoGenericContext.
22900 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22902         * reflection.c (compare_genericparam): Sort params with identical
22903         owner by their number. Fixes gen-111 on sparc.
22905 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22907         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22908         around the domain changes.
22910         * appdomain.c (mono_domain_unload): Handle the case when the thread
22911         calling Unload is itself being aborted during unloading. Fixes #70022.
22913         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22915         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22916         checkpoint_func as an icall so it gets a wrapper.
22917         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22918         in the cross-appdomain wrappers too.
22920         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22922         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22924         * reflection.c: Fix some memory leaks.
22925         
22926 2004-12-02  Martin Baulig  <martin@ximian.com>
22928         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22930         * metadata.c (generic_class_cache): New static hashtable.
22931         (mono_metadata_lookup_generic_class): New public method.
22933 2004-12-02  Martin Baulig  <martin@ximian.com>
22935         * class.c (mono_class_create_from_typedef): Call
22936         mono_class_setup_parent() and mono_class_create_mono_type() before
22937         parsing the interfaces.
22939 2004-12-02  Martin Baulig  <martin@ximian.com>
22941         * metadata.c (generic_inst_cache): New static hashtable.
22942         (mono_metadata_lookup_generic_inst): New public function.
22943         (mono_metadata_inflate_generic_inst): New public function.
22944         (mono_metadata_parse_generic_inst): New public function.
22945         (do_mono_metadata_parse_generic_class): Use the new
22946         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22947         since this'll also use the cache.
22949         * reflection.c (mono_reflection_bind_generic_method_parameters):
22950         Use mono_metadata_lookup_generic_inst() to use the new cache.
22952         * class.c (inflate_mono_type): Use
22953         mono_metadata_inflate_generic_inst() to inflate a generic
22954         instance; this'll also use the new cache.
22956         * loader.c (method_from_methodspec): Use
22957         mono_metadata_parse_generic_inst() and
22958         mono_metadata_inflate_generic_inst() rather than parsing it
22959         manually, so we can use the new cache.
22961 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22963         * threads.c (wait_for_tids): Do not incorrectly free threads when 
22964         the wait times out.
22966 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22968         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
22969         iter->args based on whether parameters are passed in registers (i.e.
22970         MONO_ARCH_REGPARMS is defined)
22972 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
22974         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
22975         the exception message. Fixes #70070.
22976         (method_from_methodspec): Fix warnings.
22978 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22980         * process.c: (complete_path) return the path quoted
22982 2004-12-01  Martin Baulig  <martin@ximian.com>
22984         * class-internals.h (MonoGenericInst): New structure.
22985         (MonoGenericClass): Replaced `type_argc', `type_argv' and
22986         `is_open' with `MonoGenericInst *inst'.
22987         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
22988         `is_open' with `MonoGenericInst *inst'.
22990 2004-11-30  Martin Baulig  <martin@ximian.com>
22992         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22994         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22995         to `generic_class_cache'.
22997         * metadata.c
22998         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22999         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
23000         (mono_generic_inst_is_valuetype): Renamed to
23001         mono_generic_class_is_valuetype().
23003         * class-internals.h
23004         (MonoGenericInst): Renamed to MonoGenericClass.
23005         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
23006         (MonoClass): Renamed `generic_inst' to `generic_class'.
23007         (MonoGenericContext): Renamed `ginst' to `gclass'.
23009         * object-internals.h
23010         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
23012         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
23013         mono_reflection_generic_class_initialize().
23015         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
23016         now known as "System.Reflection.MonoGenericClass".
23017         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
23019 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
23021         * class-internals.h: Added a flag field to MonoClass to cache the
23022         declarative security attributes actions associated with the class.
23023         * domain-internals.h: Added booleans to MonoJitInfo to cache the
23024         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
23025         applicable to the JITted method.
23026         * reflection.c|h: Added functions to extract (as flags) which security
23027         actions are available (declaratively) for a method, class or assembly.
23028         * metadata.c|h: Added functions to search the declarative security
23029         table in the metadata.
23030         
23031 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
23033         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
23034         EXPORTEDTYPES are already in the class name cache, so there is no
23035         need to add extra code here to look at them. Just removes a bit of
23036         cruft.
23038         (ves_icall_System_Environment_get_TickCount): No need for #if
23039         WINDOWS. We already have the code in io-layer.
23041 2004-11-28  Martin Baulig  <martin@ximian.com>
23043         * loader.c
23044         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
23045         Fixes gen-112.cs.
23047 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
23049         * assembly.c (do_mono_assembly_open): Instead of having a
23050         conditional WITH_BUNDLE, incorporate support for bundles here, by
23051         having a global `bundles' variable holding a pointer to the actual
23052         bundles. 
23054         (mono_register_bundled_assemblies): New API call used by the
23055         bundle code. 
23057         See mkbundle.1 for details.
23058         
23059 2004-11-27  Martin Baulig  <martin@ximian.com>
23061         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
23062         the vtable for generic methods.
23064 2004-11-26  Martin Baulig  <martin@ximian.com>
23066         * metadata.c
23067         (mono_metadata_generic_method_hash): New public function.
23068         (mono_metadata_generic_method_equal): Likewise.
23070         * class-internals.h
23071         (MonoGenericContainer): Added `GHashTable *method_hash'.
23073         * reflection.c (ReflectionMethodBuilder): Added
23074         `MonoGenericContainer *generic_container'.
23075         (reflection_methodbuilder_to_mono_method): Don't create a new
23076         MonoGenericContainer each time we're called.
23077         (mono_reflection_bind_generic_method_parameters): Use
23078         `container->method_hash' to cache the results so we don't create a
23079         different method if we're called several times with the same
23080         arguments.
23082         * loader.c (method_from_methodspec): Use the new
23083         `container->method_hash' here, too.
23085 2004-11-26  Martin Baulig  <martin@ximian.com>
23087         * class.c (inflate_generic_signature): Correctly compute
23088         `res->has_type_parameters'.
23089         (mono_class_vtable): Use the `has_type_parameters' flag to
23090         determine whether we're a generic method.
23092         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
23094 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
23096         * object.c (mono_runtime_run_main): Fix a small memory leak.
23098 2004-11-25  Martin Baulig  <martin@ximian.com>
23100         * class.c (set_generic_param_owner): Fixed the loop.
23102 2004-11-25  Martin Baulig  <martin@ximian.com>
23104         * object.c (mono_class_vtable): Don't create any JIT wrappers for
23105         generic methods.
23107 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
23109         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
23110         names. Fixes #69787.
23112 2004-11-24  Martin Baulig  <martin@ximian.com>
23114         * class.c (mono_class_create_generic_2): If we don't have a
23115         `ginst->parent', inflate `gklass->parent' to get our parent.
23117 2004-11-24  Martin Baulig  <martin@ximian.com>
23119         * reflection.c (compare_genericparam): Correctly sort the
23120         GenericParam table; fixes #69779.
23122 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
23124         * reflection.c: When writing a PE file, don't create a huge
23125         buffer in memory. Just write the arrays we have to the file.
23126         This reduces memory usage.
23128         * metadata-internals.h: MonoDynamicStream pefile is no longer used
23129         globally.
23131 2004-11-17  Martin Baulig  <martin@ximian.com>
23133         * class.c (mono_class_init): Don't setup `class->parent' for
23134         dynamic instances; moved this to mono_class_generic_2().
23135         (mono_class_create_generic): Also set `klass->inited' for dynamic
23136         generic instances.
23137         (mono_class_create_generic_2): Don't do anything for dynamic
23138         generic instances.  Set `klass->parent' here and also call
23139         mono_class_setup_parent() here. 
23141         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
23142         `MonoType *parent' argument; set `ginst->parent' before calling
23143         mono_class_create_generic_2(), so we set the correct parent.
23145 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
23147         * reflection.c: allow getting attributes from ModuleBuilder
23148         (used by ikvm).
23150 2004-11-17  Martin Baulig  <martin@ximian.com>
23152         * class.c (mono_class_create_from_typedef): If a type parameter is
23153         inherited from an outer class, set its owner to that class.
23155 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
23157         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
23158           for (int*) written size. This fixes bug #69592.
23160 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
23162         * icall.c: Added IsAuthenticodePresnet internal call.
23163         * image.c|h: New function that check a MonoImage for an Authenticode
23164         signature in the certificate PE data directory.
23165         * security.c|h: New internal call to ask the runtime if an 
23166         Authenticode signature seems referenced in the PE header.
23168 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
23170         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
23172         * reflection.c (mono_image_create_pefile): Free the assembly streams
23173         after writing out the assembly file.
23175         * object.c (mono_runtime_run_main): Fix small memory leak.
23177         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
23178         property access modifiers. Fixes #69389.
23180 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
23182         * domain.c, object.c, object-internals.h, domain-internals.h,
23183         object.h, marshal.c: keep dynamic code info per domain.
23185 2004-11-15  Martin Baulig  <martin@ximian.com>
23187         * class.c (mono_type_get_name_recurse): Put type arguments in
23188         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
23189         see bug #68387.
23191 2004-11-15  Martin Baulig  <martin@ximian.com>
23193         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
23194         (mono_class_setup_vtable): When computing `the_cname' for a
23195         generic instance, don't include the namespace since we'd otherwise
23196         add it twice.
23198 2004-11-15  Martin Baulig  <martin@ximian.com>
23200         * class.c (mono_class_create_generic): Changed return type to void.
23201         (mono_class_create_generic_2): New public function; setup
23202         `class->method', `class->field' and `class->interfaces' here
23203         instead of in mono_class_init().
23205         * class.h (mono_class_create_generic): Moved to class-internals.h.
23207 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
23209         * reflection.c (mono_image_create_pefile): take a file HANDLE.
23210         rather than writing to memory, write to this file. Right now,
23211         we are just writting into a buffer, and copying that. However
23212         we can avoid the buffer later.
23214         (mono_dynamic_stream_reset): new function
23216         * icall.c, object-internals.h: update for the above.
23218 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
23220         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
23221         have been using gc'd memory. First it is slower, unlikely
23222         the comment in the source code said, secondly, it increases
23223         our footprint to do it in the gc.
23225         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
23226         the method so that it does not have to copy to managed code.
23228 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
23230         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
23232 2004-11-12  Martin Baulig  <martin@localhost>
23234         * reflection.c (mono_image_create_token): Allow generic method
23235         definitions here, since they may appear in an `.override'; see
23236         gen-98/gen-99 for an example.
23238 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
23240         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
23241         #69365.
23243         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
23244         descriptive.
23246 2004-11-11  Martin Baulig  <martin@ximian.com>
23248         * class.c (mono_class_setup_vtable): In an explicit interface
23249         implementation, the method name now includes the arity.
23251 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
23253         * object.c (mono_array_full_copy): Fix warning.
23255 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
23257         * appdomain.c: Removed look_for_method_by_name(). Use the new method
23258         mono_class_get_method_from_name() instead.
23259         
23260         * class-internals.h: Added two new types of wrappers. 
23261         Added MonoRemotingTarget enum. Added new trampoline function type, which
23262         takes an additional MonoRemotingTarget value as parameter, so it is
23263         possible to request a trampoline for a specific target.
23264         
23265         * class.c: Added new mono_class_get_method_from_name() method.
23266         
23267         * class.h: In MonoRemoteClass, we can have now to vtables, one for
23268         general remoting sinks and one specific for cross domain calls.
23269         
23270         * debug-helpers.c: Added new wrapper names.
23271         
23272         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
23273         of a remote class.
23274         
23275         * image.c: Porperly delete value objects form the remoting invoke hashtable.
23276         
23277         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
23278         with several other methods (mono_marshal_get_xappdomain_dispatch,
23279         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
23280         and others) can generate a fast remoting wrapper for cross domain calls.
23281         More information can be found in docs/remoting.
23282         Other changes: Removed mono_find_method_by_name, and used
23283         mono_class_get_method_from_name instead.
23284         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
23285         is stored in the remoting invoke hashtable.
23286         
23287         * marshal.h: published the new method for getting the xdomain wrapper,
23288         and also added a method for getting the adequate wrapper for a given
23289         method and target.
23290         
23291         * object-internals.h, object.c: Added a couple of methods for capying and
23292         cloning arrays.
23293         Modified mono_install_remoting_trampoline, which takes the new remoting
23294         trampoline that has a remoting target as parameter.
23295         mono_class_proxy_vtable now also takes a remoting target as parameter, and
23296         will return the most suitable vtable for the target.
23297         Added mono_remote_class_vtable, which returns the vtable of a remote class
23298         (which can be the normal remoting vtable or the xdomain vtable).
23299         
23300         * threads.c: the xdomain invoke and dispatch wrappers must also be
23301         protected against interruptions.
23303 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23305         * icall.c: use memmove in BlockCopyInternal when the source and
23306         destination arrays are the same.
23308 2004-11-09  Martin Baulig  <martin@ximian.com>
23310         * class-internals.h (MonoGenericContainer): Removed `method' and
23311         `signature', replaced them with `is_method' and `is_signature'
23312         flags.  Added `context'.
23314         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
23315         instead of a `MonoGenericContainer *'.
23317         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
23318         for dynamic type parameters.
23319         (mono_metadata_load_generic_params): Setup `container->context'.
23321         * reflection.c (mono_reflection_setup_generic_class): Setup
23322         `tb->generic_container->context'.
23323         (do_mono_reflection_bind_generic_parameters): Use
23324         mono_class_inflate_generic_type() to correctly inflate types,
23325         rather than using our own hack just for MONO_TYPE_VAR.
23327 2004-11-09  Martin Baulig  <martin@ximian.com>
23329         * class.c (mono_class_inflate_generic_method): Small fix; don't
23330         crash here.
23332         * icall.c
23333         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
23334         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
23335         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
23336         (ves_icall_Type_BindGenericParameters): Likewise.
23337         (ves_icall_Type_get_IsGenericInstance): Likewise.
23338         (ves_icall_Type_GetGenericParameterPosition): Likewise.
23339         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
23340         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
23341         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
23343 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
23345         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
23346         assembly versions and public key tokens. Fixes #69113.
23348 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
23350         * metadata.c: fix bug introduced with the type cache changes
23351         on 2004-11-06.
23353 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
23355         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
23356         the MonoClass pointer instead of the token in exception clauses.
23357         * reflection.c: updates for the above and make the code not depend
23358         on the structure of MonoExceptionClause.
23360 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
23362         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23363         Add support for dynamic assemblies. Fixes #69114.
23365         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
23367 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
23369         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
23370         since most only those methods use it. the code member of
23371         MonoMethodPInvoke was dead, so that can be removed too. Also,
23372         remove inline_count (again, not used), and move slot so that it
23373         can share bits with some other flags. This saves 8 bytes in the
23374         structure and gives us about 50 kb back for mcs helloworld.cs
23376         * *.[ch]: Do naming changes for the above.
23378         * loader.c (mono_method_get_header): Lazily init the header
23379         on first access.
23380         (mono_get_method_from_token): don't init the header here
23381         (mono_free_method): the header may never be allocated
23383         Overall, this saves 150 kb of unmanaged allocations
23384         for mcs helloworld.cs. That accounts for 10% of the unmanaged
23385         memory at runtime.
23386         
23387         * loader.c, loader.h (mono_method_get_header): new accessor.
23389         * *.[ch]: use the above method. Prepares us to lazily load
23390         the header.
23392         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
23393         three warnings, which are actual bugs (see 69206).
23395         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
23396         unused. Saves a cool 4 bytes / method.
23398 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
23400         * metadata.c (builtin_types): Add types for System.Object here.
23401         (mono_metadata_parse_type_full): Cache MonoType*'s that are
23402         for a class or valuetype from klass->this_arg or klass->byval_arg.
23404         On mcs for a hello world, this gets us down from 21836 MonoType's
23405         to 14560.
23407         (mono_metadata_free_type): Account for the above change.
23409 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
23411         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
23412         exception instead of asserting if name is null.
23413         (ves_icall_System_AppDomain_GetData): Ditto.
23415 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
23417         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
23418         EnumBuilder.
23420         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
23421         Return NULL when the domain does not have entry_assembly set.
23423         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
23424         Add a 'resource_modules' argument.
23425         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
23427         * reflection.c (mono_reflection_create_runtime_class): Move setting
23428         of wastypebuilder here, so mono_get_type_object () returns a MonoType
23429         for enums too.
23431         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
23432         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
23433         Throw an ArgumentNullException if 'ptr' is null.
23435         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
23436         assemblies here. Fixes #69020.
23438 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
23440         * reflection.c (build_compressed_metadata): Fix the previous patch for
23441         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
23442         the stack.
23444 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
23446         * assembly.c (mono_assembly_names_equal): Allow a match if one of
23447         the cultures is false. Fixes #69090.
23449         * reflection.c (build_compressed_metadata): Fix invalid memory read 
23450         detected by valgrind.
23451         
23452         * reflection.c (mono_reflection_get_type): Avoid triggering a 
23453         TypeResolve multiple times for the same type. Fixes #65577.
23455 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
23457         * marshal.c: Avoid using ldftn to call managed functions. It is
23458         much slower than just a call.
23460         * reflection.c (mono_module_get_object): free the basename we
23461         allocate here from glib.
23462         
23463         * reflection.c (ensure_runtime_vtable): make sure to free
23464         overrides.  Also, we were allocating an array of MonoMethod not an
23465         array of MonoMethod*.
23467         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
23469         * image.c (mono_image_close): free image->guid here.
23471 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
23473         * reflection.c: Fix some spec conformance issues with the PE file
23474         structures so mcs compiled apps run on the Net 2.0 beta.
23476 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
23478         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
23479         Implement this. Fixes #67264.
23481         * debug-helpers.h debug-helpers.c marshal.c: Move 
23482         mono_find_method_by_name to debug-helpers.c.
23484 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
23486         * object.c (mono_release_type_locks): type_initialization_hash is
23487         a GHashTable.
23489         * reflection.c object.c object-internals.h: Fix warnings.
23491         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
23492         without accessors. Fixes #61561.
23494         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
23495         application base from the root domain if not set. Fixes #65641.
23496         (mono_runtime_init): Fix warning.
23498 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23500         * appdomain.c: call mono_thread_pool_init.
23501         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
23502         of worker threads based on the number of CPUs and the environment
23503         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
23504         for non-windows (windows) systems.
23506 2004-10-27  Chris Toshok  <toshok@ximian.com>
23508         * mono-debug-debugger.c (write_class): don't call mono_class_init
23509         here, as even with the check for (!klass->init_pending), we get
23510         into a situation where we're hitting cycles in class
23511         initialization.  Fixes #68816.
23513 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
23515         * image.c: Avoid overwriting values in the loaded_images_hash when an
23516         assembly is loaded multiple times. Fixes #61152.
23518         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
23519         so multiple satellite assemblies for the same name can be loaded.
23520         Fixes #68259.
23522         * mono_domain_assembly_preload: Actually return the loaded assembly, 
23523         not NULL.
23525         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23526         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23528         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23529         pending finalizers are not invoked after the appdomain has been 
23530         unloaded. Fixes #67862.
23532 2004-10-22  Martin Baulig  <martin@ximian.com>
23534         * mono-debug-debugger.c
23535         (mono_debugger_runtime_invoke): Don't box valuetypes.
23537 2004-10-22  Chris Toshok  <toshok@ximian.com>
23539         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23540         don't hide private methods.
23542 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23544         * icall.c: Allows the runtime to "share" (when known) the public key
23545         token of an assembly. This avoid the need to recalculate the token 
23546         (from the public key) in managed code.
23548 2004-10-21  Chris Toshok  <toshok@ximian.com>
23550         * debug-helpers.c (append_class_name): argh, revert last patch.
23551         
23552 2004-10-21  Chris Toshok  <toshok@ximian.com>
23554         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23555         not '/', so that it matches what the debugger uses to look up
23556         methods.
23558 2004-10-21  Martin Baulig  <martin@ximian.com>
23560         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23561         public method; this is called each time an exception is thrown and
23562         allows the debugger to use exception catch points.
23564 2004-10-21  Martin Baulig  <martin@ximian.com>
23566         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23567         the stack pointer and the exception object in some struct and pass
23568         that to the debugger.
23570 2004-10-21  Chris Toshok  <toshok@ximian.com>
23572         * mono-debug-debugger.c (do_write_class): add instance/static
23573         event support.  We don't expose "raise" or "other" yet.
23574         (event_is_static): new method.
23576 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23578         * mono-debug-debugger.c
23579         (mono_debugger_handle_exception): Remove
23580         bogus return value for fussy compilers.
23582 2004-10-20  Martin Baulig  <martin@ximian.com>
23584         * mono-debug-debugger.c
23585         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23586         (mono_debugger_handled_exception): Likewise.
23588 2004-10-20  Martin Baulig  <martin@ximian.com>
23590         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23591         MONO_DEBUGGER_EVENT_EXCEPTION.
23593         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23594         public function to send the debugger a notification for an
23595         exception and inform it about a catch/finally clause.
23597 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23599         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23600         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23601         fix 2.95 build. 
23603         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23605 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23607         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23608         marshalled as [In,Out]. Fixes #58325.
23610 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23612         * reflection.c (mono_method_body_get_object): Implement some fields.
23614 2004-10-12  Martin Baulig  <martin@ximian.com>
23616         * reflection.c (mono_reflection_bind_generic_parameters): Small
23617         fix, correctly retrieve our parent from a generic instance.
23619 2004-10-12  Martin Baulig  <martin@ximian.com>
23621         * metadata.c (mono_metadata_generic_param_equal): We always have
23622         an owner.
23624         * class.c
23625         (mono_class_from_generic_parameter): We need to have an owner.
23626         (my_mono_class_from_generic_parameter): Likewise.
23628         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23629         mono_reflection_create_generic_class() and added a new
23630         mono_reflection_setup_generic_class().  
23631         (mono_reflection_initialize_generic_param): If we're a nested
23632         generic type and inherited from the containing class, set our
23633         owner to the outer class.
23635 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23637         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23639         * reflection.c (mono_method_body_get_object): New function to create
23640         a MethodBody object.
23642         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23644 2004-10-11  Martin Baulig  <martin@ximian.com>
23646         * metadata.c (_mono_metadata_type_equal): Renamed to
23647         do_mono_metadata_type_equal() and made static.
23649 2004-10-11  Martin Baulig  <martin@ximian.com>
23651         * appdomain.c: Bump corlib version number to 28.
23653 2004-10-10  Martin Baulig  <martin@ximian.com>
23655         * class-internals.h
23656         (MonoGenericInst): Added `MonoGenericContainer *container'.
23657         (MonoGenericMethod): Likewise.
23658         (MonoGenericContext): Likewise.
23659         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23661         * metadata.c
23662         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23663         (do_mono_metadata_parse_generic_inst): Likewise.
23664         (mono_metadata_parse_type_full): New public method.  This is the actual
23665         mono_metadata_parse_type() implementation - with an additional
23666         `MonoGenericContainer *' argument.
23667         (mono_metadata_parse_array_full): Likewise.
23668         (mono_metadata_parse_signature_full): Likewise.
23669         (mono_metadata_parse_method_signature_full): Likewise.
23670         (mono_metadata_parse_mh_full): Likewise.
23671         (mono_type_create_from_typespec): Likewise.
23672         (mono_metadata_interfaces_from_typedef_full): New public method;
23673         this is similar to the other _full() methods, but we take a
23674         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23675         (mono_metadata_parse_generic_param): Take an additional
23676         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23677         from that container.
23678         (mono_metadata_generic_param_equal): New static method to compare
23679         two type parameters.
23680         (_mono_metadata_type_equal): New static method; takes an
23681         additional `gboolean signature_only' argument - if true, we don't
23682         compare the owners of generic parameters.
23683         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23684         with a TRUE argument - do a signature-only comparision.
23686         * loader.c: Use the new _full() methods and pass the
23687         MonoGenericContainer to them.
23689         * object-internals.h (MonoReflectionTypeBuilder): Added
23690         `MonoGenericContainer *generic_container' field.
23691         (MonoReflectionMethodBuilder): Likewise.
23693 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23695         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23696         case initial images of dynamic assemblies.
23698         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23700         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23702         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23703         length of event->other array.
23704         (typebuilder_setup_events): Ditto.
23706         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23707         'assembly_by_name' and add an 'assemblies' list.
23709         * assembly.h assembly.c: Add a new search hook for determining whenever
23710         an assembly is already loaded. Use this instead of searching in the
23711         loaded_assemblies list.
23713         * domain.c appdomain.c: Implement the new search hook so loaded 
23714         assemblies are now scoped by appdomain. Fixes #67727.
23716 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23718         * threads.c (mono_thread_attach): Initialize synch_lock field so
23719         mono_thread_detach works again.
23721         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23722         'lib' too. Fixes #63130.
23724 2004-10-06  Jackson Harper  <jackson@ximian.com>
23726         * culture-info-tables.h: regenerated.
23728 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23730         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23731         implemented by other interfaces in the result. Fixes #65764.
23732         
23733         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23734         Handle unloadable modules without crashing.
23736         * image.c (load_modules): Revert the previous patch since modules must
23737         have a fixed index inside the array.
23738         
23739         * image.c (load_modules): Don't include native modules in the modules
23740         array.
23742 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23744         * reflection.h: Add param_defaults field.
23746         * reflection.c: Add support for parameter defaults in dynamic methods.
23747         Fixes #64595.
23749         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23750         an empty string when a type has no namespace. Fixes #64230.
23752 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23754         * tabledefs.h: Added "internal" security actions to support non-CAS
23755         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23756         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23758 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23760         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23761         constructor of abstract class. Fixes #61689.
23763 2004-10-04  Martin Baulig  <martin@ximian.com>
23765         * class-internals.h (MonoGenericContainer): New type.
23766         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23767         `MonoGenericContainer *generic_container'.
23768         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23769         `MonoGenericContainer *generic_container'.
23771         * metadata.c (mono_metadata_load_generic_params): Return a
23772         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23773         removed the `num' argument.
23775 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23777         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23778         for dynamic images.
23780         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23781         machine fields.
23783         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23785         * reflection.c: Save pe_kind and machine values into the generated
23786         image file.
23788         * appdomain.c: Bump corlib version number.
23790         * object-internals.h: Reorganize layout of LocalBuilder.
23792         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23793         New helper function.
23795         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23796         created MonoType for dynamic types. Fixes #66180.
23798 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23800         * threadpool.c: the ares hashtable needs a critical section around it.
23801         this prevents some nasty segfaults
23803 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23805         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23806         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23807         bug 67324).
23808         
23809 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23811         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23812         
23813 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23815         * image.c: Always canonicalize image file names, to avoid loading
23816         the same assembly twice when referenced using a relative path.
23818 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23820         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23822         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23824         * marshal.c: Fix warnings.
23826 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23828         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23829         attempting to marshal the delegate_trampoline as the method_addr.
23830         This patch has a static hashtable of marshalled delegates so that 
23831         we can map delegate_trampoline addresses back to delegates.  This
23832         allows a delegate passed to managed code to be passed back into native
23833         code.  Fixes #67039
23835 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23837         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23839         * reflection.c (method_encode_code): Align method headers properly.
23840         Fixes #66025.
23842 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23844         * marshal.c: In the runtime invoke wrapper, reset the abort
23845         exception if it is cached. This avoids the automatic rethrowal of 
23846         the exception after the catch of the wrapper. Also check for pending
23847         interruptions before calling the managed method. This is done using
23848         the new method emit_thread_force_interrupt_checkpoint, since the
23849         normal checkpoint method is ignored when running the invoke wrapper.
23850         * object.c: If the abort exception is rethrown, set the abort_exc
23851         field of the thread, so it will be rethrown aftere every catch.
23852         * threadpool.c: Only run an interruption checkpoint if what has been
23853         requested is a stop of the thread (aborts will be ignored).
23854         * threads.c: By default, a thread will now never be interrumped while
23855         running the runtime invoke wrapper (this ensures that runtime_invoke
23856         will always return to the caller if an exception pointer is provided).
23857         There is a new special method mono_thread_force_interruption_checkpoint()
23858         to force an interruption checkpoint even if running a protected
23859         wrapper, which is used by the same runtime invoke wrapper to do a check
23860         at a safe point.
23862 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23864         * object.c, object-internals.h: Implemented mono_release_type_locks,
23865         which releases the cctor locks held by a thread.
23866         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23867         by a thread. Added mono_thread_exit() method to be used to safely stop
23868         a thread.
23870 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23872         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23873         Move null check before dereference.  Avoid indexing beyond the end
23874         of the 'modules' array.
23876 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23878         * metadata-internals.h (MonoImage): Add module_count field.
23879         * image.c (load_modules): Set image->module_count.
23880         (mono_image_load_file_for_image): Use image->module_count.
23881         * reflection.c (mono_image_load_module): Append to image->modules array 
23882         of dynamic assembly.
23883         (mono_module_get_object): Fix loop to actually increment index.
23884         Use image->module_count.
23885         * assembly.c (mono_assembly_load_references): Use image->module_count.
23886         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23887         Likewise.
23889 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23891         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23892         Avoid assert on generic types.
23894 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23896         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23898         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23900         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23901         function to convert a MarshalSpec structure to its managed counterpart.
23903         * reflection.c: Fix warnings.
23904         
23905         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23906         field.
23908         * icall.c (mono_create_icall_signature): Fix build.
23910 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23912         * icall.c: Add MakePointType icall.
23914         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23915         warnings.
23917 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23919         * threadpool.c: reuse allocated slots in the queue.
23921 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23923         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23925         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23927         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23928         previous change.
23930         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23931         ThrowOnUnmappableChar.
23933         * icall.c (ves_icall_Type_GetPacking): New icall.
23935 2004-09-24  Martin Baulig  <martin@ximian.com>
23937         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23939 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23941         * appdomain.c:
23942         (mono_domain_set): allow setting a domain that is being unloaded.
23943         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23944         being unloaded.
23946 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23948         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23949         the GetCustomAttributes icall.
23951 2004-09-23  Martin Baulig  <martin@ximian.com>
23953         * object-internals.h (MonoReflectionGenericParam): Replaced
23954         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23955         with `guint32 attrs'.
23957 2004-09-23  Martin Baulig  <martin@ximian.com>
23959         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
23961 2004-09-23  Martin Baulig  <martin@ximian.com>
23963         * object-internals.h (GenericParameterAttributes): New enum.
23965 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23967         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
23968         
23969         * class.c (init_events): Fill out event->other field.
23971         * class.c: Fix warnings.
23973         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
23975 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23977         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
23978         walk which doesn't supply the IL offset.
23980 2004-09-22  Martin Baulig  <martin@ximian.com>
23982         * reflection.c (mono_reflection_setup_internal_class): If we're
23983         System.ValueType, System.Object or System.Enum, set
23984         `klass->instance_size' and create the vtable.
23985         (mono_reflection_create_internal_class): If we're an enum type,
23986         get the base class from our current corlib.
23988 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
23990         * reflection.h (MonoResolveTokenError): New type.
23992         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23993         icall.
23995         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23997 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23999         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
24000         Support also calling constructors, but only for already allocated objects.
24002 2004-09-17  Geoff Norton <gnorton@customerdna.com>
24004         * reflection.c (type_get_qualified_name): If the klass is null
24005         return the typename to avoid a NullRefEx.
24006         (encode_cattr_value): Get the qualified name of the boxed type,
24007         not the underlying enumtype.  Fixes #62984.
24009 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
24011         * marshal.c: Fix problems with previous checkin.
24013 2004-09-21    <vargaz@freemail.hu>
24015         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
24016         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
24018         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
24020 2004-09-21  Geoff Norton <gnorton@customerdna.com>
24022         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
24023         should only return a type for pointers, arrays, and passbyref types.
24024         Fixes bug #63841.
24026 2004-09-21  Martin Baulig  <martin@ximian.com>
24028         * domain.c (mono_debugger_check_runtime_version): New public
24029         function.
24031         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
24033 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
24035         * reflection.c: Added missing sort to the declarative security 
24036         attributes table. MS implementation stops seeing the attributes if the
24037         token number regress in the table (as shown by ildasm and permview).
24039 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
24041         * object-internals.h (MonoReflectionModule): Add 'token' field.
24042         
24043         * reflection.c (mono_reflection_get_token): Add support for Module
24044         and Assembly.
24045         (mono_module_get_object): Set 'token' field.
24046         (mono_module_file_get_object): Set 'token' field.
24048         * icall.c: Add new Assembly and Module icalls.
24050         * appdomain.c: Bump corlib version.
24052 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
24054         * loader.h loader.c class.h class.c: Add helper functions for obtaining
24055         tokens of metadata objects.
24057         * reflection.h reflection.c (mono_reflection_get_token): New function
24058         to obtain the token of a metadata object.
24060         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
24062 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
24064         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
24065         
24066         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
24068 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
24070         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
24071         * object-internals.h: Added 3 MonoArray* members to MonoReflection
24072         AssemblyBuilder to access the permissions set in the class lib.
24073         * reflection.c: Added security attributes encoding step in 
24074         mono_image_build_metadata.
24075         * tabledefs.h: Added new security actions defined in 2.0:
24076         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
24078 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24080         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
24081         macro parameter.
24083 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24085         * locales.c: nullify the ICU_collator member of CompareInfo when it is
24086           finalized. There where random SIGSEVs at program termination, when
24087           an object being finalized was trying to do a string comparison and
24088           the current culture was already finalized.
24090 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24092         * threads.c: call thread_cleanup before finishing the thread if we get
24093         there.
24095 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
24097         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
24098         assemblies from the parent. Fixes #65665.
24100 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
24102         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
24103         modifiers.
24105 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
24107         * reflection.h: add prototype for mono_get_dbnull_object
24108         * reflection.c: add prototypes for get_default_param_value_blobs 
24109         and mono_get_object_from_blob for fussier compilers
24111 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
24113         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
24114         false deadlock checks in class initialization.
24116 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
24118         * image.c (mono_image_addref): Fix comment.
24120         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
24121         possible.
24123 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
24125         * reflection.c (mono_param_get_objects): Modified to return
24126         ParameterInfo.DefaultValue object.
24128         (get_default_param_value_blobs):
24129         (mono_get_object_from_blob):
24130         (mono_get_dbnull_object): New helper routines. 
24132         * object.c (mono_get_constant_value_from_blob): New helper routine
24133         carved out from get_default_field_value ()
24135         * object-internals.h (mono_get_constant_value_from_blob): Added
24136         function declaration.
24138 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
24140         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
24141         referenced assemblies. Fixes #62135.
24143         * exception.h exception.c (mono_get_exception_file_not_found2): New
24144         helper function.
24146 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
24148         * class.h class.c: Add mono_type_get_underlying_type ().
24150 2004-09-09  Geoff Norton <gnorton@customerndna.com>
24152         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
24153         Fix GetTypes() to support dynamically created assemblies.
24155 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
24157         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
24158         
24159         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
24160         previous patch.
24162         * reflection.h reflection.c loader.c: Allow dynamic construction of
24163         pinvoke methods. Fixes #65571.
24164         
24165         * reflection.c (mono_reflection_get_type): Revert previous change since
24166         it causes regressions.
24168 2004-09-08  Martin Baulig  <martin@ximian.com>
24170         * class.c (class_compute_field_layout): Don't call
24171         mono_class_layout_fields() for open generic instances.
24173 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
24174         * threads.c appdomain.c: fix typo in GC macro
24176 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24178         * threads.c: don't call mono_thread_detach() in start_wrapper(),
24179         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
24181 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
24183         * image.c (mono_image_close): Applied patch from 
24184         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
24185         assembly is loaded multiple times from data.
24186         
24187         * image.c (mono_image_open): Fix warning.
24189 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24191         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
24192         once. Fixes #58334.
24193         
24194         * reflection.c (mono_reflection_create_runtime_class): Initialize
24195         klass->nested_classes. Fixes #61224.
24197 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24199         * threads.c: sched_yield() on exit, to allow threads to quit.
24201 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24203         * object.c (mono_unhandled_exception): Remove leftover debug code.
24205 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
24207         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
24209 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24211         * marshal.c (emit_marshal_array): Really null terminate string arrays.
24212         
24213         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
24215 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24217         * marshal.c (emit_marshal_array): Null terminate string arrays.
24218         
24219         * marshal.c (raise_auto_layout_exception): Fix warning.
24221         * reflection.c (mono_param_get_objects): Initialize the default value
24222         with DBNull.Value, not null. Fixes #62123.
24224 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
24226         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
24227         throw an exception with a cute explanation.
24229 2004-09-06  Dick Porter  <dick@ximian.com>
24231         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
24232         Close the new process's thread handle, as we don't use it.  The
24233         handle stays around forever otherwise.
24235 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24237         * object.c (arith_overflow): Fix warning.
24239         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
24240         calling conventions in method refs. Fixes #65352.
24242         * reflection.c: Fix warnings.
24244 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24246         * icall.c: Add a new icall for Array.Clear
24248 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24250         * object.c: When allocating an array, we have to throw
24251         an overflow exception if any of the lengths are < 0.
24253 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24255         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
24256         properly. Also move implementation of string array marshalling to 
24257         managed code. Fixes #42316.
24259 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24261         * assembly.c: provide more information when loading an assembly fails.
24263 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24265         * filewatcher.c: don't expect the development fam package to be
24266         installed.
24268 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
24270         * marshal.c: Make a copy of the signature cookie since it will be
24271         freed by the caller.
24272         
24273         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
24275         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
24277         * metadata.c (mono_metadata_free_marshal_spec): New function to free
24278         marshal specs.
24280         * marshal.c: More refactoring.
24281         
24282         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
24283         smaller functions.
24285 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
24287         * object.c: In mono_message_invoke, fill the output parameter array after
24288           calling the managed method (it was done before the call). This fixes
24289           bug #59299.
24291 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24293         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
24294         as well.
24296 2004-09-02  Martin Baulig  <martin@ximian.com>
24298         * class.c (mono_class_instance_size): Don't allow generic type
24299         definitions or open generic instances.
24300         (mono_class_array_element_size): If we're a value type, call
24301         mono_class_instance_size() on the original class.
24303         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
24304         handle generic instances.
24306         * mono-debug-debugger.c (write_type): Handle generic instances
24307         like classes.
24309 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24311         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
24312         the allocation request fails. Fixes #65089.
24314         * object.c (mono_runtime_free_method): Do not call mono_free_method.
24315         
24316         * object.c (mono_runtime_free_method): New function to free a dynamic
24317         method.
24319         * marshal.c (mono_delegate_free_ftnptr): New function to free the
24320         delegate trampoline.
24322         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
24323         with hasthis as dynamic,
24325         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
24327         * domain.c (mono_jit_info_table_remove): New function to remove an
24328         entry from the jit info table.
24330         * class-internals.h (MonoMethod): Add 'dynamic' field.
24332         * loader.c: Fix warnings.
24334 2004-09-01  Martin Baulig  <martin@ximian.com>
24336         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
24337         instead of mono_debugger_lock() because the latter one is a no-op
24338         unless running in the debugger.
24340 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24342         * class.c (class_compute_field_layout): Classes with auto-layout or
24343         reference fields are not blittable.
24344         
24345 2004-09-01  Dick Porter  <dick@ximian.com>
24347         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
24348         mono_image_get_filename() to get the assembly location.
24350         * icall.c:
24351         * metadata.h: Fix compile warnings
24353 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24355         * class.c (class_compute_field_layout): System.Object is blittable.
24357         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
24358         as in/out. Fixes #59909.
24360 2004-09-01  Martin Baulig  <martin@ximian.com>
24362         * metadata.h (MONO_TYPE_ISREFERENCE): Call
24363         mono_metadata_generic_inst_is_valuetype() if we're a generic
24364         instance to check whether our underlying type is a reference type.
24366 2004-09-01  Martin Baulig  <martin@ximian.com>
24368         * metadata.c (mono_type_size): If we're a generic instance, call
24369         mono_class_value_size() for value types.
24371 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
24373         * marshal.c: Implement more custom marshalling functionality. Fixes
24374         #64915.
24376 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24378         * mono-debug.c, debug-mono-symfile.c: add some locking love.
24380 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
24382         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
24384         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
24386         * icall.c: Fix some warnings.
24388         * threads.c (abort_appdomain_thread): Fix unref errors.
24389         (mono_thread_current): Fix THREAD_DEBUG define.
24391 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
24393         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
24395         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
24397 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
24399         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
24400         string arrays.
24402 2004-08-28  Martin Baulig  <martin@ximian.com>
24404         * metadata.c
24405         (mono_metadata_generic_inst_is_valuetype): New public function.
24407         * metadata.h (MONO_TYPE_ISSTRUCT): Call
24408         mono_metadata_generic_inst_is_valuetype() if we're a generic
24409         instance to check whether our underlying type is a valuetype.
24411 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
24413         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
24414         #63768.
24416 2004-08-25  Martin Baulig  <martin@ximian.com>
24418         * loader.c (mono_get_method_from_token): Abstract methods can also
24419         be generic and thus have type parameters.
24421         * metadata-internals.h
24422         (MonoDynamicImage): Added `GPtrArray *gen_params'.
24424         * reflection.c (mono_image_get_generic_param_info): Don't create a
24425         metadata row, just add an entry to the `gen_params' array.
24426         (build_compressed_metadata): Sort the `gen_params' array and then
24427         actually create the metadata.
24429 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24431         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
24433 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
24435         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
24437 2004-08-24  Martin Baulig  <martin@ximian.com>
24439         * class.cs (mono_class_is_subclass_of): Like an interface, a
24440         generic instance also derives from System.Object.
24442 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
24444         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
24445         custom modifiers to be in any order. Fixes #61990.
24447 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
24449         * object.c: Register mono_object_new_fast icall.
24450         
24451         * object.c (mono_class_get_allocation_ftn): Return to calling
24452         mono_object_new_fast, since it seems faster to compute the object 
24453         size in unmanaged code than passing it as a parameter.
24455         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
24457         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
24458         this function with Boehm as the oom handler, so we don't have to check
24459         the result of GC_malloc.
24461         * object.c: Remove checks for oom.
24463         * object.h object.c (mono_class_get_allocation_ftn): New function to
24464         return the icall which can be used to allocate an instance of a given
24465         class. 
24467         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
24469         * class-internals.h: Add 'enabled' field.
24471 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
24473         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
24475 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
24476         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
24477         value 0x0010.
24479 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
24481         * appdomain.c: use the Tls function for appdomain too,
24482         at Zoltan's request. Actually return in mono_context_get
24484         * appdomain.c, profiler.c, threads.c: use __thread
24486 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
24488         * appdomain.c threads.c: Call GC_CreateThread on windows.
24490         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
24491         multiple libraries since this don't work on windows.
24493 2004-08-18  Martin Baulig  <martin@ximian.com>
24495         * class-internals.h
24496         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
24497         MonoMethodHeader.
24499         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
24500         MonoMethodNormal since we also need it for abstract and interface
24501         methods.
24503         * reflection.c
24504         (build_compressed_metadata): Sort the GenericParam table.
24505         (mono_image_create_token): Added `gboolean create_methodspec'
24506         argument; this is false when generating a MethodImpl token.
24507         (reflection_methodbuilder_to_mono_method): Abstract and interface
24508         methods may also have generic parameters.
24510 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
24512         * appdomain.c: thread local alloc
24514 2004-08-17  Martin Baulig  <martin@ximian.com>
24516         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
24518         * icall.c
24519         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
24520         argument.
24522         * class.c (mono_type_get_full_name): New public function.
24523         (mono_type_get_name): Don't include the type arguments.
24525 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24527         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24528         for inclusion into the mono executable.
24530 2004-08-16  Martin Baulig  <martin@ximian.com>
24532         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24533         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24535 2004-08-14  Martin Baulig  <martin@ximian.com>
24537         * class.c (dup_type): Also copy the `byref' field.
24539 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24541         * reflection.c (create_dynamic_mono_image): Revert the last change 
24542         since it breaks bootstrap.
24544 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24546         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24548         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24549         not free them with g_free.
24551 2004-08-11  Martin Baulig  <martin@ximian.com>
24553         * reflection.c (mono_reflection_setup_internal_class): Also call
24554         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24556 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24558         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24559         called during default (first) AppDomain creation. Keep track of
24560         Evidence when loading assemblies.
24562 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24564         * opcodes.c, opcodes.h: reduce runtime relocations.
24566 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24568         * culture-info.h, locales.c: fixes and chages to sue the new
24569         optimized format of the locale data.
24570         * culture-info-tables.h: regenerated.
24572 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24573         
24574         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24576 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24578         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24579         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24580         * domain-internals.h: icall declaration.
24581         * icall.c: icall registration.
24582         * object-internals.h: New fields in MonoAssembly for CAS.
24584 2004-08-05  Duncan Mak  <duncan@ximian.com>
24586         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24587         CEE_LDELEM_ANY.
24589 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24591         * reflection.c: fix to deal with object[] arrays in custom ctors
24592         (bug #62550).
24594 2004-08-05  Martin Baulig  <martin@ximian.com>
24596         * class.c (mono_class_array_element_size): Added support for
24597         generic instances and correctly handle "recursive" types.
24599 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24601         * assembly.c: Fix warnings.
24603 2004-08-04  Martin Baulig  <martin@ximian.com>
24605         * class.c
24606         (mono_type_get_name_recurse): Added `gboolean include_arity'
24607         argument specifying whether or not we should include the generic
24608         arity in the type name.
24609         (_mono_type_get_name): New static function.
24610         (mono_class_setup_vtable): If we're a generic instance, don't
24611         include the generic arity in the names of explicit method
24612         implementations.        
24614 2004-08-03  Martin Baulig  <martin@ximian.com>
24616         * class.c (mono_type_get_name_recurse): Enclose the generic type
24617         arguments in `<', '>'.
24619 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24621         * gc.c: make GC warning messages use the trace API, they are just
24622         noise to most of the users.
24624 2004-08-03  Martin Baulig  <martin@ximian.com>
24626         * debug-mono-symfile.c (read_string): Correctly read the string.
24628 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24630         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24631         
24632         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24633         icalls.
24634         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24636 2004-07-30  Martin Baulig  <martin@ximian.com>
24638         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24639         Reflect latest symbol writer changes.   
24641 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24643         * object.c: always create an object if null is passed
24644         to Invoke() where a valuetype is expected.
24646 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24648         * marshal.c (mono_marshal_init): make managed
24649         signatures match native ones better for 64bits.
24651 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24653         * appdomain.c: hack to build correctly the private bin path on windows.
24654         Fixes bug #61991.
24656 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24658         * assembly.c: Load mscorlib from the correct framework directory
24659           (mono/<version>/mscorlib.dll).
24660         * appdomain.h: Added prototypes for new functions.
24661         * internals.h: Added some prototypes.
24662         * domain.c: When initializing the runtime, get from the executable and
24663           the configuration files the runtime version that the app supports.
24664           Added support methods for reading app.exe.config. Added list of versions
24665           supported by the JIT. Added two new methods: mono_init_from_assembly,
24666           which initializes the runtime and determines the required version from
24667           the provided exe file, and mono_init_version, which initializes
24668           the runtime using the provided version.
24669         * icall.c: Get machine.config from version-specific directory.
24670         * reflection.c: When generating an image, embed the version number
24671           of the current runtime.
24673 2004-07-28  Dick Porter  <dick@ximian.com>
24675         * socket-io.c
24676         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24677         returned sockaddr size before creating the remote address object.
24678         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24679         61608.
24681 2004-07-28  Dick Porter  <dick@ximian.com>
24683         * locales.c (string_invariant_compare_char): Fix invariant char
24684         compares between upper and lower cases.  Fixes bug 61458.
24686 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24687         
24688         * marshal.c: actually cache stelem.ref wrappers.
24689         
24690 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24692         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24693         sections and remove the mono_cli_rva_map () function.
24695 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24697         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24698         by Geoff Norton (<gnorton@customerdna.com>).
24700 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24702         * class.c: fix class loads for pointer types (typeof(int) !=
24703         typeof(int*)).
24705 2004-07-27  Martin Baulig  <martin@ximian.com>
24707         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24708         reading the debugging information from an external ".mdb" file.
24710 2004-07-24  Martin Baulig  <martin@ximian.com>
24712         * reflection.c (mono_image_get_type_info): Only write a class
24713         layout entry if we actually have a size or a packing size.
24715 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24717         * reflection.c (type_get_fully_qualified_name): 
24718         insert cast to get type checking of ?: with non-gcc compilers
24720 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24722         * rand.c: use g_getenv for both lookups of
24723         MONO_EGD_SOCKET
24725 2004-07-17  Martin Baulig  <martin@ximian.com>
24727         * reflection.c (mono_reflection_bind_generic_method_parameters):
24728         Set `gmethod->reflection_info'.
24730 2004-07-17  Martin Baulig  <martin@ximian.com>
24732         * class.c (mono_class_create_from_typedef): Insert the newly
24733         created class into the hash table before computing the interfaces
24734         since we could be called recursively.
24736 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24738         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24739         function to implement stelem.ref in managed code
24740         * class-internals.h, debug-helpers.c: a new wrapper type
24741         for the above.
24743 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24745         * gc.c: allow GC handles to work even when no GC is compiled in.
24746         Fix part of bug #61134 (GetAddrOfPinnedObject).
24748 2004-07-13  Peter Williams  <peter@newton.cx>
24750         * process.c (complete_path): Make sure we don't attempt to execute
24751         directories.
24753 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24755         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24756           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24757           and will add/subtract the hour if needed
24759 2004-07-12  Martin Baulig  <martin@ximian.com>
24761         * reflection.c (mono_field_get_object): If we have
24762         `field->generic_info', take the attributes from
24763         `field->generic_info->generic_type'.    
24765 2004-07-12  Martin Baulig  <martin@ximian.com>
24767         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24768         This function must be called before initializing the runtime.
24769         (mono_debug_init_1): New function; call this after initializing
24770         the runtime, but before loading the assembly.  It tells the
24771         debugger to load corlib and the builtin types.
24773         * mono-debug-debugger.c: Did some larger changes in the debugging
24774         code; support recursive class declarations, make sure we actually
24775         add all classes.
24777 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24779         * debug-helpers.c: undo my previous patch and fixed the real issue in
24780         ../mini/exceptions-x86.c
24782 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24784         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24785         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24786         called from other .cctors.
24788 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24790         * loader.c: Removed the mono_loader_wine_init hack now that we are
24791         doing a managed version of Windows.Forms.
24793 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24795         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24796         threadpool.c, threads.c: remove static data from rootset.
24798 2004-07-09  Dick Porter  <dick@ximian.com>
24800         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24801         Don't do any more processing if the matched length was 0.  It was
24802         increasing the size of the string before.  Fixes bug 61167.
24804 2004-07-09  Dick Porter  <dick@ximian.com>
24806         * socket-io.h:
24807         * socket-io.c
24808         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24809         Add support for SO_PEERCRED if its available.
24811 2004-07-09  Peter Bartok <pbartok@novell.com>
24812         * loader.c: winelib.exe.so error message is now only displayed if
24813         MONO_DEBUG is set. To help us avoid questions when people are trying
24814         out the new Managed.Windows.Forms.
24816 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24818         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24819         for isinst and castclass wrappers.
24821         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24822         to libmetadata from the JIT, so they could be used by the marshalling
24823         code and the interpreter.
24825         * marshal.c: Register marshalling related JIT icalls here instead of
24826         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24827         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24829         * metadata.h: Remove unneeded marshalling conversions.
24831         * opcodes.c: Update for new opcodes.
24832         
24833 2004-07-08  Martin Baulig  <martin@ximian.com>
24835         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24836         (mono_debug_get_domain_data): Make this function static.
24838 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24840         * gc.c, object.h: add nice GC handle API for embedders.
24842 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24844         * reflection.c: more changes for the new api
24846         * object.c: When we reflect on a field w/ a constant value, it
24847         will not have a memory location, so we must access metadata. Also,
24848         allow easier reading of strings so that we can read them from
24849         the constant data.
24851         * class.c (mono_class_layout_fields): no need for literal fields here.
24853         * class-internals.h: api changes for const fields
24855         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24857 2004-07-06  Martin Baulig  <martin@ximian.com>
24859         * mono-debug.h: Increment version number to 44.
24861         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24862         now a gpointer, rewrote this whole method.
24864         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24865         function.  Add information about the wrapper in a new "misc table".
24867         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24868         for the new misc table.
24870 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24872         * metadata-internals.h image.c: Add a cache for helper signatures.
24874         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24876 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24878         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24879         delegates from a delegate. Fixes #61033.
24880         
24881         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24882         marshalling of stringbuilder arrays. Fixes #59900.
24884 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24886         * icall.c: Add EnumBuilder:setup_enum_type icall.
24888 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24890         * icall.c: Added a new icall for the property version of
24891         OffsetOfStringData.
24893 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24895         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24896         it has a constant size across platforms.
24898         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24899         stack trace.
24901 2004-06-29  Martin Baulig  <martin@ximian.com>
24903         * mono-debug.c (mono_debug_add_method): Protect the whole function
24904         in mono_debugger_lock(), not just parts of it.
24906 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24908         * reflection.c: make sure padding bytes in heaps are zeroed.
24910 2004-06-24  David Waite  <mass@akuma.org>
24912         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24913         image.c, loader.c, locales.c, marshal.c, metadata.c,
24914         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24915         string-icalls.c, threads.c: change to C90-style comments from C99 /
24916         C++ -style
24918 2004-06-24  Dick Porter  <dick@ximian.com>
24920         * threads.c
24921         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24922         return createdNew.  Fixes bug 60412.
24924         * threads-types.h: 
24925         * icall.c: Add createdNew parameter to CreateMutex icall
24927 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24929         * reflection.c, object-internals.h: save default value in params.
24931 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24933         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24934         no need to build a new path combining that with the application base.
24935         Fixes bug #60442.
24937 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24939         * reflection.c: fixed minor standard compliance issues.
24941 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24943         * reflection.c: fixed issue with encoding some custom attributes
24944         (arrays in properties and fields, bug #60411).
24946 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24948         * reflection.c: fix start address when copying the public key token.
24950 2004-06-23  Martin Baulig  <martin@ximian.com>
24952         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24953         the `exc' object in a static object to put it into the GC's root set.
24955 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
24957         * reflection.c: make mono_reflection_setup_internal_class ()
24958         callable a second time to setup a new parent class.
24960 2004-06-23  Dick Porter  <dick@ximian.com>
24962         * threads.c: Check for WAIT_IO_COMPLETION return values.
24964 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
24966         * appdomain.c: Removed the g_free on the public key token. Now copy 
24967         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
24968         * assembly.c: Added public key token string value when loading 
24969         assemblies. Fix bug #60439.
24970         * icall.c: Added missing informations (like public key) in 
24971         GetReferencedAssemblies. Fix #60519.
24972         * image.h: Changed definition for public key token from const char*
24973         public_tok_value to guchar public_key_token [17];
24974         * reflection.c: Updated for changes to public key token.
24976 2004-06-22  Lluis Sanchez Gual
24978         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
24979         for the field in base classes.
24981 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24983         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
24984         mark headers as not supported, they are installed only for use by the
24985         debugger.
24987 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
24989         * *.c, *.h: avoid namespace pollution in public headers.
24991 2004-06-21  Martin Baulig  <martin@ximian.com>
24993         * exception.c (mono_get_exception_security): It's in
24994         "System.Security", not in "System".
24996         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24997         the exception classes.
24999 2004-06-21  Martin Baulig  <martin@ximian.com>
25001         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
25002         Protect the exception object from being finalized.
25004 2004-06-21  Martin Baulig  <martin@ximian.com>
25006         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
25007         public function.
25009 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
25011         * reflection.c: Load the assembly in mono_reflection_type_from_name,
25012         if it was not loaded before. Fix parts of #60439.
25014 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
25016         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
25017         code that was broken since Ben's change: wrappers are now
25018         dependent on the method signature only again.
25020 2004-06-21  Martin Baulig  <martin@ximian.com>
25022         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
25023         added interface support.
25025 2004-06-21  Martin Baulig  <martin@ximian.com>
25027         * class.c (mono_vtable_get_static_field_data): New public method.
25029 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
25031         * filewatcher.c : Windows build fix to be compliant with API changes.
25033 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25035         * class.h, class.c: more accessors.
25036         * metadata.h, metadata.c: prepare for hiding MonoType and
25037         MonoMethodSignature: people should use the accessors from now on
25038         outside of the tree.
25040 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25042         * *.c, *.h: more API cleanups.
25044 2004-06-18  Jackson Harper  <jackson@ximian.com>
25046         * assembly.c: Trace loading assemblies.
25047         * loader.c: Trace loading native libraries.
25048         * mono-config.c: Trace loading config files.
25049         
25050 2004-06-18  Dick Porter  <dick@ximian.com>
25052         * locales.c: Tell ICU the lengths of strings, it can cope with
25053         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
25055 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
25057         * image.c: swapped name/filename;
25059 2004-06-18  Martin Baulig  <martin@ximian.com>
25061         * mono-debug-debugger.c (write_class): Write the parent class at
25062         the end of the header.
25064 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25066         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
25068 2004-06-17  Raja R Harinath  <rharinath@novell.com>
25070         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
25071         (bundle_obj): New conditional define.
25072         (BUILT_SOURCES): Remove.
25073         ($(bundle_srcs)): Make parallel-make safe.
25074         (libmonoruntime_la_LIBADD): Make unconditional.
25075         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
25076         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
25078 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
25080         * culture-info-tables.h: It was inconsistent with the latest
25081           supp info files.
25083 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
25085         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
25086         be loaded.
25088         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
25089         with gcc 2.95.
25091 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25093         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
25094         cleaned up public header threads.h.
25096 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25098         * Makefile.am, *.c, *.h: more API cleanups.
25100 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
25102         * Makefile.am: removed monosn from compilation.
25103         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
25104         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
25105         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
25106         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
25107         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
25108         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
25110 2004-06-15  Jackson Harper  <jackson@ximian.com>
25112         * assembly.c: Make locales lower case when searching the GAC for
25113         assemblies. gacutil will always make locales lowercase when
25114         installing so this effectively makes them case insensitive.
25115         
25116 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
25118         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
25119         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
25120           parameter which allows to choose whether the wait can be interrupted or 
25121           not. Also added the method mono_monitor_enter(), which locks the monitor
25122           using an infinite wait and without allowing interruption.
25123           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
25124           interrupted.
25125         * object.h: Added new fields in MonoThread. suspend_event holds the event
25126           used to susped/resume the thread. synch_lock is the lock object to use for
25127           modifying the thread state.
25128         * threads.c: Use the new synch_lock object for locking, instead of "this",
25129           which can generate deadlocks.
25130           Moved thread state change in Thread.Sleep and Thread.Join from managed
25131           to unmanaged code. This avoids a deadlock when the thread was suspended
25132           just after acquiring the thread lock.
25133           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
25134           Implemented Thread.Suspend using an event instead of ThreadSuspend,
25135           which is not fully implemented in the io-layer.
25136         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
25138 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
25140         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
25141         threads-types.h: more API cleanups.
25143 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25145         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
25146         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
25147         threadpool.c, threads.c: first pass at the exported API cleanup.
25149 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
25151         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
25153 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25155         * icall.c: added internalGetHome.
25157 2004-06-14  Dick Porter  <dick@ximian.com>
25159         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
25160         possible to return successfully when '.' or '..' were the only
25161         entries in a directory, but were skipped.  The MonoIOStat was not
25162         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
25163         Fixes bug 59574.
25165 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25167         * reflection.c: make binaries run on .Net 1.1 by default.
25169 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25171         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
25173 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
25175         * marshal.c: keep track of struct size with explicit layout
25176         (bug #59979).
25178 2004-06-12  Martin Baulig  <martin@ximian.com>
25180         * mono-debug-debugger.c: Comment out a debugging g_message().
25182 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25184         * reflection.c, reflection.h: do not free custom attrs that are cached.
25185         * icall.c: use braces to make code clearer.
25187 2004-06-11  Martin Baulig  <martin@ximian.com>
25189         * class.h (MonoInflatedField): New type.
25190         (MonoClassField): Replaced `MonoType *generic_type' with
25191         `MonoInflatedField *generic_info'.
25193         * icall.c
25194         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
25196 2004-06-11  Martin Baulig  <martin@ximian.com>
25198         * reflection.c (mono_image_create_method_token): Correctly encode
25199         varargs methods.
25201 2004-06-11  Martin Baulig  <martin@ximian.com>
25203         * metadata.c (mono_metadata_parse_method_signature): When parsing
25204         a MethodDef which has VarArgs, also set sentinelpos if we don't
25205         have any parameters.
25207 2004-06-11  Martin Baulig  <martin@ximian.com>
25209         * verify.c (mono_method_verify): In CEE_CALL, use
25210         mono_method_get_signature() to get the method's signature, unless
25211         we're a PInvoke method.
25213 2004-06-10  Jackson Harper  <jackson@ximian.com>
25215         * assembly.c: Use <path>/lib/mono/gac for the extra paths
25216         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
25217         logical name as the supplied path is just a prefix to the gac not
25218         the direct path to it.
25219         
25220 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
25222         * reflection.c: make the token for a created method match
25223         the token of the MethodBuilder it was created from
25224         (IKVM requires this behaviour now).
25226 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
25228         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
25229         reflection.c, socket-io.c: leak fixes.
25231 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
25233         * icall.c: handle sentinel pos in vararg methods in position different
25234         from 0.
25236 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25238         * culture-info-tables.h: freshly generated.
25240 2004-06-09  Martin Baulig  <martin@ximian.com>
25242         * loader.c (mono_get_method_constrained): Call `mono_class_init
25243         (constrained_class)'.   
25245 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
25247         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
25248         any methods. Fixes #59629.
25250 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25252         * culture-info-tables.h: reflecting locale-builder updates.
25254 2004-06-08  Dick Porter  <dick@ximian.com>
25256         * object.h:
25257         * locales.c: Fixed compile warnings, including a real bug in
25258         CompareInfo_internal_compare.
25259         
25260 2004-06-08  Dick Porter  <dick@ximian.com>
25262         * locales.c
25263         (ves_icall_System_Globalization_CompareInfo_internal_index):
25264         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25265         Double-check the resuls of usearches, because ICU currently
25266         ignores most of the collator settings here.  Fixes bug 59720.
25267         
25268 2004-06-08  Dick Porter  <dick@ximian.com>
25270         * locales.c
25271         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25272         Fix memory leak and segfault-causing typo.  No idea how this one
25273         lasted so long without being noticed.
25275 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
25277         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
25278         any methods. Fixes #59629.
25280 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25282         * assembly.c:
25283         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
25284         own the critical section before). Removed dead code (that's done
25285         in the preload hook).
25287         (mono_assembly_load_with_partial_name): call the preload hook.
25289 2004-06-08  Martin Baulig  <martin@ximian.com>
25291         * metadata.c (mono_metadata_signature_alloc): Default
25292         `sentinelpos' to -1.
25294         * reflection.c (mono_image_get_array_token): Likewise.
25296 2004-06-08  Martin Baulig  <martin@ximian.com>
25298         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
25300         * metadata.c (mono_metadata_parse_method_signature): When parsing
25301         a MethodDef which has VarArgs, set sentinelpos.
25303         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
25304         `gint16' since we're using -1 for non-varargs methods.
25306         * reflection.c
25307         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
25308         (method_encode_signature): Added varargs support.
25309         (method_builder_encode_signature): Likewise.
25310         (mono_image_get_varargs_method_token): New static method.
25311         (mono_image_create_method_token): New public method; this is
25312         called via an icall instead of mono_image_create_token() when
25313         calling a varargs method.       
25315 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
25317         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
25319 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25321         * culture-info-tables.h : Reflecting the latest locale-builder that
25322           fixed empty array representation ({} to {0}).
25324 2004-06-07  Jackson Harper  <jackson@ximian.com>
25326         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
25327         looking up extra gac paths. This allows MONO_GAC_PATH to act
25328         exactly like a prefix.
25329         
25330 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25332         * reflection.c (mono_reflection_type_from_name): Make a copy of the
25333         type name before modifying it. Fixes #59405.
25335 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25337         * culture-info.h: added fields for "all datetime patterns".
25338         * locales.c: (  ves_icall_System_Globalization_CultureInfo
25339           _construct_datetime_format ()): fill xxx_patterns fields.
25340         * object.h: added fields for "all datetime patterns" to
25341           MonoDateTimeFormatInfo.
25342         * culture-info-tables.h: reflecting locale-builder updates.
25344 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25346         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
25347         the event has no add and remove methods. Fixes #59629.
25349 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
25351         * object.c: Fixed possible integer overflow when allocating large
25352         strings.
25354 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25356         * culture-info-tables.h: reflecting locale-builder updates.
25358 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25360         * culture-info-tables.h: reflecting locale-builder updates.
25362 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
25364         * culture-info-tables.h: reflecting locale-builder updates.
25366 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
25368         * threads.c: Made Thread.Sleep abortable.
25370 2004-06-02  Martin Baulig  <martin@ximian.com>
25372         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
25374         * debug-mono-symfile.h: Bumped symbol file version number to 37.
25376 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
25378         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
25380 2004-05-30  Jackson Harper  <jackson@ximian.com>
25382         * reflection.c: Do not hardcode assembly versions or public key
25383         tokens anymore. All of this except the corlib section was dead
25384         code anyways.
25385         
25386 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
25388         * object.c (mono_runtime_invoke_array): Automatically create boxed
25389         objects for byref valuetypes if needed. Fixes #59300.
25390         
25391         * object.c (mono_method_return_message_restore): Handle 
25392         MONO_TYPE_OBJECT as well.
25394 2004-05-28  Jackson Harper  <jackson@ximian.com>
25396         * reflection.c: The modified type encoding was causing build
25397         problems. Reverted for now.
25398         
25399 2004-05-28  Jackson Harper  <jackson@ximian.com>
25401         * reflection.c/h: Take an assembly ref so that we dont create
25402         fully qualified names when encoding types in the same assembly as
25403         the custom attribute being emitted.
25404         * appdomain.c: Increment version number.
25405         
25406 2004-05-26  Duncan Mak  <duncan@ximian.com>
25408         * icall.c
25409         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
25410         Set the full version number (major, minor, build, revision).
25412 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
25414         * marshal.c (emit_struct_conv): increment src/dst after blit
25415         (mono_marshal_get_managed_wrapper,
25416         mono_marshal_get_native_wrapper): make sure we have marshalling
25417         info before marshalling params (info computation affects
25418         blittable)
25420         * class.c (class_compute_field_layout): correctly deal with
25421         blittable
25422         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
25423         value types (as per what windows dows by default)
25424         (mono_class_setup_mono_type): System.ValueType is blittable
25425         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
25426         blittable
25428         * marshal.c (mono_marshal_load_type_info): flag types  as
25429         non-blittable if the native layout doesn't match the managed
25430         layout
25432 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25434         * appdomain.c: don't add stuff in the private search path that is
25435         above the application base. If application base is not set, there's
25436         no private search path.
25438 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
25440         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
25441         byref struct arguments in native->managed marshalling.
25443 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
25445         * marshal.c (mono_marshal_get_runtime_invoke): correctly
25446         cache methods using signature (special case for methods
25447         that are value type or string class)
25448         
25449         * image.c (mono_image_close): clean up allocated GSList's
25450         in runtime_invoke_cache.
25452 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25454         * mono-config.c: set the correct path for mono_cfg_dir on windows when
25455         there's no MONO_CFG_DIR environment variable defined.
25457 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25459         * threads.c: windows version must be >= 0x0500 to include OpenThread.
25461 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
25463         * threadpool.c: Really wait for 500ms after the async call, even if the wait
25464           is interrumped.
25465         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
25466           before waiting for it, and call CloseHandle after the wait to unref it.
25467           This will make sure that handles are not disposed too early.
25469 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25471         * appdomain.c:
25472         * appdomain.h:
25473         * icall.c: removed
25474         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
25475         needed now.
25477         * object.c: se the application_base only for the domain that runs
25478         Main. Fixes bug #59216,
25480 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25482         * appdomain.c:
25483         * object.c: only the domain in which Main is run have
25484         SetupInformation.ConfigurationFile set, so moved a few lines from
25485         appdomain.c to object.c.
25487 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25489         * appdomain.c: we tried to load [name].(dll|exe), but according
25490         to bug #57710, we must also try [culture]/[name].(dll|exe) and
25491         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
25492         There's a test case attached to bug #58922.
25494 2004-05-27  Dick Porter  <dick@ximian.com>
25496         * icall.c:
25497         * file-io.c: Implemented icalls for locking and unlocking regions
25498         in a file.
25499         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
25500         FALSE on error (fixes both compiler warning and real bug.)
25502 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
25504         * culture-info-tables.h: reflecting locale-builder updates.
25506           (Added missing ChangeLog entry for 05/26)
25508 2004-05-27  Jackson Harper  <jackson@ximian.com>
25510         * locales.c: Fix some cut and paste errors.
25511         
25512 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25514         * mono-config.c: set the correct path for config. directory on windows.
25516 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25518         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
25519           on win32.
25521 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25523         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
25524         from pinvoke functions.
25525         
25526         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25528 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25530         * culture-info-tables.h: reflecting locale-builder updates.
25532 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25534         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25535         #59086.
25537 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25539         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25540         * icall.c: Modified icalls for RNG.
25541         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25542         Windows (CryptoAPI).
25544 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25546         * locales.c: Fix build.
25548 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25550         * culture-info-tables.h: reflecting locale-builder updates.
25552 2004-05-25  Jackson Harper  <jackson@ximian.com>
25554         * locales.c: When creating the current culture use the $LANGs
25555         specific culture. So DateTimeFormat and NumberFormat entries are created.
25556         
25557 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25559         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25560         a char array as parameter.
25562 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25564         * image.c: In mono_image_open(), always use an absolute path name to
25565           look for already loaded images.
25567 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25569         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25570         missing in the windows build (like older cygwin include files).
25572 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25574         * icall.c: Fixed check for possible integer overflow in Buffer_
25575         BlockCopy icall. Replaced comments style // by /* */.
25577 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25579         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25580         
25581         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25582         check after MONO_VTADDR. Fixes pinvoke2.exe.
25584         * marshal.h marshal.c metadata.h: Add beginnings of support for
25585         ftnptr -> delegate marshalling.
25587 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25589         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25590         * threads.c: Fix warnings.
25592 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25594         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25595         * icall.c: Registered icalls for Suspend and Resume.
25596         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25597           Thread.Abort.
25598         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25599         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25600         * process.c: Use WaitForSingleObjectEx.
25601         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25602           checkpoints.
25603         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25604           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25605           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25606           background threads. Added basic support for Abort in Windows.
25607           Start new threads using a managed delegate invoke wrapper. This wrapper
25608           has an interruption checkpoint that is needed since an interruption
25609           can be requested before the thread leaves the unmanaged code that starts 
25610           the thread.
25611         * marshal.c: Added interruption checkpoint after every native call, and
25612           also before managed calls for wrappers called from unmanaged code to
25613           go into managed code.
25614         * object.h: Added new field in MonoThread to keep track of interruption
25615           requests.
25617 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25619         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25620         calls.
25622 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25624         * appdomain.c:
25625         * assembly.c:
25626         * gc.c:
25627         * locales.c:
25628         * mono-config.c:
25629         * rand.c: getenv -> g_getenv (windows!)
25631         * process.c: complete_path is also used on non-windows platforms.
25633 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25635         * icall.c: new signature for Process_Start.
25637         * process.[ch]: new signature for Process_Start. If we're on windows
25638         and UseShellExecute is false, we have to search for the program by
25639         ourselves if we don't get a full path.
25641 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25643         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25644         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25646 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25648         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25649         Fixes bug #58373.
25651 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25653         * process.c: use double quotes to quote program name and arguments on
25654         windows. Fixes bug #58575.
25656 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25658         * file-io.c: don't return "." and ".." when using windows Find*File.
25660 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25662         * marshal.c: Don't pass wrappers to message init because method 
25663         addressed used to lookup metadata. part of remoting[2|3] fix.
25665 2004-05-15  Jackson Harper  <jackson@ximian.com>
25667         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25668         path is essentially the same as MONO_PATH except that it points to
25669         GACs instead of lib directories.
25670         * loader.h: The user gac is gone so we dont need function to
25671         enable/disable it.
25672         * mono-config.c: user gac option is now gone.
25673         
25674 2004-05-15  Jackson Harper  <jackson@ximian.com>
25676         * culture-info.h: Make defines more consistent, add calendar data
25677         to the culture info table.
25678         * culture-info-tables.h: Add basic calendar data. Basically
25679         everyone gets default gregorian until all the data is
25680         updated.
25681         * locales.c: Use the new consistent defines. Set calendar data for
25682         culture info objects.
25683         * object.h: add a field for calendar data to CultureInfo
25684         
25685 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25687         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25688         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25689         a signature.
25690         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25691         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25692         an extra param that is the pointer of the method to invoke. The IL for
25693         the invoke method is no longer specific to the method, but to the
25694         signature of the method. Thus, we can share the same code for multiple
25695         methods. This reduces the number of methods that have to be compiled.
25697 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25699         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25701         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25703         * icall.c: Optimize Buffer.BlockCopy.
25705 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25707         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25708         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25709         quote). Changed them to "MMMM yyyy".
25711 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25713         * rand.c
25714         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25716 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25718         * reflection.h: Updated after changes to managed structures.
25720         * appdomain.c: Bump corlib version.
25722 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25724         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25725         windows.
25727 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25729         * Makefile.am: link to ../os/libmonoos.la on windows.
25731         * assembly.c:
25732                 -If MONO_DEBUG, warn about non-existing directories in
25733                 MONO_PATH.
25734                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25735                 compile time variable.
25736                 -Removed init_default_path and call mono_set_rootdir from
25737                 libmonoos.a instead (windows only).
25739         * assembly.h: declare mono_assembly_getrootdir().
25741         * domain.c:
25742         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25744         * loader.c: s/getenv/g_getenv/
25746 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25748         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25750         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25752         * metadata.h: Add new marshalling conversions.
25754         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25755         function.
25757         * reflection.c (mono_reflection_get_type): Lookup the type in all
25758         modules of a multi-module assembly. Fixes #58291.
25760 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25762         * threads.c: Before aborting a background, set the StopRequested
25763         state.  This avoids throwing the Abort exception.
25764         In mono_thread_manage, don't continue with the shutdown until all
25765         aborted threads have actually stopped.
25767 2004-05-10  Jackson Harper  <jackson@ximian.com>
25769         * locales.c: Remove the modifier from culture names.
25770         
25771 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25773         * Makefile.am: monosn is not installed any more. It has been deprecated
25774         in favor of sn.
25776 2004-05-07  Jackson Harper  <jackson@ximian.com>
25778         * locales.c
25779         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25780         Fix array construction, add bailout if the length is 0.
25782 2004-05-07  Dick Porter  <dick@ximian.com>
25784         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25785         machine doesn't have a DNS entry.  Patch by Urs Muff
25786         (umuff@quark.com), fixes bug 57928.
25788 2004-05-06  Jackson Harper  <jackson@ximian.com>
25790         * reflection.c: Handle null PublicTokens properly. alloc mem for
25791         assembly names culture so we dont crash when freeing it.
25792         
25793 2004-05-06  Jackson Harper  <jackson@ximian.com>
25795         * assembly.c: Check the usergac when loading with partial names.
25796         
25797 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25799         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25800         does nothing for now (not required for Linux/Windows) but the class
25801         library can call it (and a newer or modified runtime could need it).
25802         * icall.c: Registred icall.
25804 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25806         * loader.c: prints a message on module loading error we set MONO_DEBUG
25807         environment variable.
25809 2004-05-05  Jackson Harper  <jackson@ximian.com>
25811         * appdomain.c: Handle PublicKeyToken=null properly.
25812         
25813 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25815         * environment.c|h: Added icall ves_icall_System_Environment_
25816         GetOSVersionString to get the current OS version as a string.
25817         * icall.c: Registred icall.
25819 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25821         * object.c: in mono_object_get_virtual_method(), take into account that
25822         non-virtual methods don't have a slot in the vtable. Check needed when
25823         the object is a proxy.
25825 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25827         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25828         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25830         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25832         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25833         passed when a valuetype is expected.
25835         * object.c (mono_unhandled_exception): Only set the exit code if the
25836         exception happens in the main thread. Fixes thread5.exe.
25838         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25839         invalid names. Fixes #58047.
25841 2004-05-03  Jackson Harper  <jackson@ximian.com>
25843         * assembly.c: This line was committed accidently and is unneeded.
25844         
25845 2004-05-03  Jackson Harper  <jackson@ximian.com>
25847         * icall.c: Add new icall for Assembly::LoadWithPartialName
25848         * assembly.c/.h: new function that probes the GAC to load partial
25849         assembly names by Paolo Molaro.
25850         
25851 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25853         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25854         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25855         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25856         full type name.
25858 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25860         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25861         * reflection.c: fix bug when parsing a full type name and Version is not
25862         the last thing in the string.
25864 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25866         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25867         crashes when it is freed.
25869 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25871         * assembly.c: print the compat warning to stderr.
25873 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25875         * assembly.c (mono_assembly_load_references): Add a compatibility
25876         hack to run old applications that might be still referencing the
25877         3300-based assemblies, only do this for System.xxx.
25879 2004-05-01  Jackson Harper  <jackson@ximian.com>
25881         * appdomain.c: If the culture is neutral we set it to "".
25882         
25883 2004-04-29  Jackson Harper  <jackson@ximian.com>
25885         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25887 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25889         * string-icalls.c: added low overhead function for copying chars
25890         * icall.c: added needed icall for the above function
25892 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25894         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25895         Environment.GetLogicalDrives.
25897 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25899         * rand.c: try and talk to egd or prngd
25900         for random bytes if opening devices fail.
25902 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25904         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25905         alignment for the type using the native alignment of its members 
25906         instead of using klass->min_align.
25908         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25910 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25912         * file-io.c:
25913         * socket-io.c: added check for sys/aio.h.
25915 2004-04-28  Dick Porter  <dick@ximian.com>
25917         * threads.c: Don't abort a thread thats already aborting, when
25918         terminating everything.
25920 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25922         * icall.c: added 2 new async calls for Socket.
25924         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25925         IO on *nix systems.
25927         * threadpool.c: removed unused variable.
25929 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25931         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25933 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25935         * locales.c: put back string_invariant_tolower () and
25936         string_invariant_toupper ().
25938 2004-04-26 David Waite <mass@akuma.org>
25940         * file-io.h:
25941         * socket-io.h:
25942         * threads.h:
25943         * unicode.h: remove comma from end of enumeration declarations
25945 2004-04-26 David Waite <mass@akuma.org>
25947         * debug-mono-symfile.h:
25948         * decimal.c:
25949         * mono_debug.h:
25950         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25953 2004-04-26  Jackson Harper  <jackson@ximian.com>
25955         * appdomain.c: Increment version number.
25956         
25957 2004-04-26  Jackson Harper  <jackson@ximian.com>
25959         * appdomain.c: Set assembly references public token value when
25960         PublicKeyToken is specified, not the hash_value. Free public token
25961         values when free assembly name data. Previously the public key
25962         token was hex decoded, however we are using hex encoded public key
25963         tokens, so this is not neccasary.
25964         * assembly.c: Lookup assemblies in the gac if their public token
25965         value is set. Add function to allow enabling user gac
25966         lookups. Specify whether or not the assembly was loaded from the
25967         GAC. Compare full assembly names when checking the cache for
25968         assemblies (Temporarily disabled see comment in code). Remove
25969         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
25970         specifies trace-loader they get extra info to stdout on the
25971         loading of assemblies.
25972         * image.h: Add a field for an assembly references public token
25973         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
25974         whether an assembly has been loaded from the GAC.
25975         * image.c: Remove a corlib -> mscorlib name mapping.
25976         * loader.h: Add function to enable/disable the user gac.
25977         * mono-config.c: Check if the usergac is enabled in the config
25978         file.
25979         * icall.c: New icall to determine whether or not an assembly has
25980         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
25981         * tabldefs.h: Add constant for assemblyref flag that specifies a
25982         full public key is used instead of a public token.
25983         * reflection.c: Remove mscorlib -> corlib mappings. Set
25984         PublicTokenValue instead of hash value. This value is a hex
25985         string so it does not need to be expanded.
25987 2004-04-26  Martin Baulig  <martin@ximian.com>
25989         * mono-debug-debugger.c (mono_debugger_initialize): Set
25990         `mono_debugger_initialized' before calling mono_debug_lock().
25992 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25994         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25995           InternalToUpper/InternalToLower.
25996         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25997           removed invariant culture shortcut.  This is now done in managed code.
25998         * locales.c: (string_invariant_toupper/tolower) removed.
26000 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26002         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
26003         Added Poll internal call.
26005         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
26006         call for Poll. Select was too heavy for polling a single socket.
26008         * threadpool.[ch]: added mono_threadpool_cleanup.
26009         * threads.c: use it. Don't use Thread_Abort on windows.
26011 2004-04-23  Martin Baulig  <martin@ximian.com>
26013         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
26015 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
26017         * icall.c: Registred new icalls for key pair protection and added an
26018         icall for Environment.GetFolderPath on Windows.
26019         * security.c|h: Added new icalls for key pair protection.
26021 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26023         * socket-io.c: don't display the non-supported family warning for known
26024         families. Now this is not displayed on windows when checking support
26025         for IPv4/IPv6.
26027 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26029         * class.c: don't display the layout warning for static fields.
26031 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
26033         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
26034         * locales.c, locales.h: Added new icalls for culture-specific
26035         Char.ToLower and Char.ToUpper.
26037 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26039         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
26040         by David Waite.
26042 2004-04-20  Martin Baulig  <martin@ximian.com>
26044         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
26045         of the type name before passing it to mono_reflection_type_from_name().
26047 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
26049         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
26050         encodings here. Fixes #56965.
26052 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
26054         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26055         fix test on strstr result not that I can see anything that
26056         relies on the result.
26058 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
26060         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
26061         Fixes #57081.
26063         * marshal.c (mono_marshal_get_string_encoding): New helper function.
26065         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
26066         function to determine which marshalling to use for strings. Fixes
26067         #56965.
26069         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
26071         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
26073 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
26075         * icall.c: #include mono-config.h
26077 2004-04-15  Jackson Harper  <jackson@ximian.com>
26079         * culture-info-tables.h: Fix date formats for en-US culture.
26080         
26081 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
26083         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
26084         ThreadPool.SetMinThreads.
26085         * threadpool.c: Implemented ThreadPool.GetMinThreads and
26086         ThreadPool.SetMinThreads.
26088 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26090         * mono-config.c: also load the .config file in the directory
26091         where the assembly was found.
26093 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
26095         * assembly.c: load per-assembly config files.
26096         * icall.c: decrapified code to get the config dir and moved to
26097         mono-config.c.
26098         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
26099         per-assembly config files. When doing a dll map lookup give precedence
26100         to the per-assembly data.
26102 2004-04-14  Martin Baulig  <martin@ximian.com>
26104         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
26105         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
26106         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
26108         * mono-debugger-debugger.c: While the debugger is locked, remember
26109         whether the symbol tables have changes and send one single
26110         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
26112 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
26114         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
26116         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
26117         function.
26119         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
26120         account when marshalling string arrays. Fixes #56965.
26122 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
26124         * icall.c: Add new icalls mapping for security.
26125         * security.c|h: Add internal calls for WindowsIdentity,
26126         WindowsImpersonationContext and WindowsPrincipal.
26128 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
26130         * class.c: Added comment to ensure the System.MonoDummy class
26131         is removed when no longer necessary
26133 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
26135         * appdomain.c: Pass arguments to the bootstraping exceptions to
26136         minimize JITed methods at boot
26138         * metadata.c (mono_exception_from_name_two_strings): Allow for the
26139         second string to be null.
26141         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26142         Change the protocol to minimize the JIT methods at startup.  Now
26143         it Returns the internal codepage, if the value of "int_code_page"
26144         is 1 at entry, and we can not compute a suitable code page
26145         number, returns the code page as a string.
26147 2004-04-13  Jackson Harper  <jackson@ximian.com>
26149         * culture-info-tables.h: Fix number of decimal digits for all
26150         english locales.
26152 2004-04-13  Jackson Harper  <jackson@ximian.com>
26154         * icall.c: Clairfy out of sync error message. It is not always
26155         your corlib that is out of sync.
26157 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
26159         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
26160         properties when only the set accessor is overriden. Fixes #55874.
26162 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
26164         * assembly.c (mono_assembly_load_references): Make this thread safe.
26165         Fixes #56327.
26167 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
26169         * monosn.c: Add missing initialization calls.
26171 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
26173         * locales.c:
26174         ves_icall_System_Globalization_CultureInfo_construct_number_format
26175         Fix g_assert so it compiles on fussier compilers re int/ptr
26176         mismatch
26178 2004-04-08  Dick Porter  <dick@ximian.com>
26180         * socket-io.h:
26181         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
26182         53992.  Also rearrange the code so that the internal calls return
26183         an error value and exceptions are thrown from managed code.
26185         * icall.c: Add type info to the socket icalls.
26187 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26189         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
26190         owes me a beer.
26192 2004-04-07  Martin Baulig  <martin@ximian.com>
26194         * class.c (mono_class_from_generic_parameter): Don't default
26195         `klass->parent' to `mono_defaults.object_type'.
26197 2004-04-07  Martin Baulig  <martin@ximian.com>
26199         * reflection.c (mono_reflection_initialize_generic_parameter): Set
26200         `param->pklass->reflection_info'.       
26202 2004-04-07  Jackson Harper  <jackson@ximian.com>
26204         * culture-info-tables.h: Fix date separator symbol.
26205         
26206 2004-04-07  Martin Baulig  <martin@ximian.com>
26208         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
26209         from System.Type to System.MonoType.
26211 2004-04-07  Martin Baulig  <martin@ximian.com>
26213         * reflection.h
26214         (MonoReflectionGenericParam): Added `has_reference_type' and
26215         `has_value_type' fields.
26217         * reflection.c (mono_image_get_generic_param_info): Encode the
26218         correct flags if we have the `class' or `struct' constraint.
26220 2004-04-07  Martin Baulig  <martin@ximian.com>
26222         * reflection.h
26223         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
26225 2004-04-07  Jackson Harper  <jackson@ximian.com>
26227         * appdomain.c: Revert extra patches, just wanted to bump the
26228         version number.
26229         
26230 2004-04-07  Jackson Harper  <jackson@ximian.com>
26232         * Makefile.am: Add culture-info private headers.
26233         * icall.c: Add new icalls for contructing locales.
26234         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
26235         * locales.h: Declare new culture info construction methods.
26236         * object.h: Add new fields used to avoid the CultureMap to
26237         MonoCultureInfo.
26238         * culture-info.h: Definition of structs used in the culture info
26239         tables.
26240         * culture-info-tables.h: Autogenerated tables that contain culture
26241         info data. This file was generated with the locale-builder tool.
26242         * appdomain.c: Incement corlib version number.
26243         
26244 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
26246         * appdomain.c: (mono_runtime_init) move mono_thread_init
26247         to before mono_object_new calls so critical sections
26248         are initialized before use.
26250 2004-04-07  Martin Baulig  <martin@ximian.com>
26252         * icall.c
26253         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
26254         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
26255         (ves_icall_MonoGenericParam_initialize): Removed.
26256         (monogenericparam_icalls): Removed.
26257         (generictypeparambuilder_icalls): Added new table for
26258         System.Reflection.Emit.GenericTypeParameterBuilder.
26260         * reflection.c
26261         (mono_reflection_define_generic_parameter): Removed.
26262         (mono_reflection_initialize_generic_parameter): This is now called
26263         from GenericTypeParameterBuilder's .ctor.
26265 2004-04-06  Martin Baulig  <martin@ximian.com>
26267         * class.c (mono_class_init): Don't inflate nested classes in a
26268         generic instance.
26269         (mono_type_get_name_recurse): Include the generic arguments for
26270         generic instances and generic type declarations.
26271         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
26272         (_mono_class_get_instantiation_name): Removed.
26273         (mono_class_create_generic): Always use `gklass->name' as our name.
26275         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
26277         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
26278         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
26279         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
26280         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
26281         closed generic methods here.
26283         * reflection.c
26284         (mono_reflection_generic_inst_get_nested_types): Removed.
26285         (inflate_mono_method): Copy the generic parameters from the
26286         MonoMethodHeader into out MonoGenericMethod.
26288 2004-04-06  Martin Baulig  <martin@ximian.com>
26290         * row-indexes.h
26291         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
26293         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
26295         * reflection.c (build_compressed_metadata): If we have any entries
26296         in the GenericParam, MethodSpec or GenericParamConstraint tables,
26297         set the header version to 1.1.
26299 2004-04-06  Martin Baulig  <martin@ximian.com>
26301         * class.c (mono_class_init): If we're a generic instance,
26302         initialize our nested classes, too.
26303         (_mono_class_get_instantiation_name): Deal with the new `!%d'
26304         suffix. 
26306 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26308         * process.c: quote the argument passed to the shell on windows.
26310 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
26312         * threads.c (mono_alloc_special_static_data): Allow this to be
26313         called during startup.
26315 2004-04-02  Martin Baulig  <martin@ximian.com>
26317         * icall.c
26318         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
26320 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
26322         * icall.c: Fix build.
26324 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
26326         * Makefile.am: Added security.c|h.
26327         * icall.c: Added icall for get_UserName;
26328         * security.c: New file for security related icalls. Added function
26329         get_UserName for System.Environment (fix #56144).
26330         * security.h: New. Header file for security.c
26332 2004-04-02  Dick Porter  <dick@ximian.com>
26334         * icall.c: Deleted the icalls that were obsoleted some time ago
26335         by the ICU string code, and which were mixed into the icall
26336         rearranging.  Fixes bug 55969.
26338         * string-icalls.h: 
26339         * string-icalls.c: Deleted the code that those icalls reference.
26341 2004-04-01  Martin Baulig  <martin@ximian.com>
26343         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
26345         * class.c (mono_class_from_generic_parameter): Don't set 
26346         TYPE_ATTRIBUTE_INTERFACE.
26347         (my_mono_class_from_generic_parameter): Likewise.
26349 2004-04-01  Martin Baulig  <martin@ximian.com>
26351         * loader.c (find_method): Added an optional `MonoClass *ic'
26352         argument to search in a specific interface.
26353         (mono_get_method_constrained): New public function.
26355 2004-04-01  Martin Baulig  <martin@ximian.com>
26357         * reflection.c (mono_image_get_generic_field_token): Use the
26358         `handleref' cache here.
26360 2004-04-01  Martin Baulig  <martin@ximian.com>
26362         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
26364         * reflection.c (create_generic_typespec): Use the `typespec' hash
26365         here, not the `typeref' one.    
26367 2004-04-01  Martin Baulig  <martin@ximian.com>
26369         * class.c (mono_class_inflate_generic_type): Moved the
26370         functionality into a new static inflate_generic_type() which
26371         returns NULL if it didn't do anything.  Only increment the
26372         `mono_stats.inflated_type_count' if we actually inflated
26373         something.
26374         (mono_class_get_full): Check the classes type to see whether we
26375         need to inflate it; also inflate MONO_TYPE_(M)VAR.
26377 2004-04-01  Jackson Harper  <jackson@ximian.com>
26379         * reflection.c: Set culture for assembly references.
26380         
26381 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
26383         * reflection.[ch], icall.[ch], Fix support for pinning variables.
26385 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26387         * assembly.c:
26388         (do_mono_assembly_open): the critical section also covers
26389         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
26391 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26393         * threads.c:
26394         (mono_manage_threads): abort the background threads when finishing.
26395         Fixes bug #47232.
26397 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26399         * gc.c: only close the done_event handle if there was no timeout.
26400         C-ified comments.
26402 2004-03-30  Martin Baulig  <martin@ximian.com>
26404         * icall.c (icall_entries): It's called "System.Activator", not
26405         "System.Activation".    
26407 2004-03-30  Martin Baulig  <martin@ximian.com>
26409         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
26410         (mono_class_create_from_typespec): Likewise.
26412 2004-03-30  Martin Baulig  <martin@ximian.com>
26414         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
26415         `has_ctor_constraint' and `initialized'.
26417 2004-03-30  Martin Baulig  <martin@ximian.com>
26419         * reflection.c (encode_new_constraint): New static function to add
26420         the constructor constraint attribute to a type parameter.
26421         (encode_constraints): Call encode_new_constraint() if necessary.
26423         * reflection.h
26424         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
26426         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
26427         
26428 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
26430         * reflection.c, icall.c: add support for pinning variables. 
26432 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
26434         * marshal.c (mono_marshal_get_managed_wrapper):
26435         init bool local with zero rather than null.
26437 2004-03-29  Martin Baulig  <martin@ximian.com>
26439         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
26440         the "official" behavior here.
26441         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
26443 2004-03-29  Martin Baulig  <martin@ximian.com>
26445         * icall.c: Reflect latest API changes.
26447 2004-03-29  Martin Baulig  <martin@ximian.com>
26449         * loader.c (mono_get_method_from_token): Also call
26450         mono_metadata_load_generic_params () for abstract and interface
26451         methods; replace the type arguments in the method signature with
26452         the ones which are loaded from the metadata.
26454 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
26456         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
26457         of the lock is not the current thread. MS.NET don't do it, in spite of
26458         what the documentation says. See bug #56157.
26460 2004-03-28  Martin Baulig  <martin@ximian.com>
26462         * class.c (mono_class_init): Don't call init_properties() and
26463         init_events() for generic instances; set `prop->parent' when
26464         inflating properties.
26466         * reflection.c (mono_generic_inst_get_object): Call
26467         `mono_class_init (ginst->klass)'.
26468         (mono_type_get_object): Only create a MonoGenericInst if your
26469         generic type is a TypeBuilder.
26470         (do_mono_reflection_bind_generic_parameters): Only set
26471         `ginst->is_dynamic' if our generic type is a TypeBuilder.
26473 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
26475         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
26476         Fixes #56091.
26478 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26480         * icall.c: added Kill_internal icall.
26481         * process.[ch]: added Kill_internal icall.
26483 2004-03-25  Martin Baulig  <martin@ximian.com>
26485         * class.h (MonoStats): Added `generic_instance_count',
26486         `inflated_method_count', `inflated_type_count' and
26487         `generics_metadata_size'.       
26489 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26491         * reflection.c: no warnings now.
26493 2004-03-25  Martin Baulig  <martin@ximian.com>
26495         * class.c (mono_class_get_full): New public function; does a
26496         mono_class_get(), but also takes a `MonoGenericContext *'.
26498         * loader.c (mono_field_from_memberref): Renamed to
26499         `field_from_memberref', made static and added `MonoGenericContext *'
26500         argument.
26501         (mono_field_from_token): Added `MonoGenericInst *' argument.
26502         (method_from_memberef): Likewise.
26503         (mono_get_method_from_token): Likewise.
26504         (mono_get_method_full): New public function; does a
26505         mono_get_method(), but also takes a `MonoGenericContext *'.
26507         * verify.c (mono_method_verify): Get the method's generic context
26508         and pass it to mono_field_from_token(), mono_get_method_full() and
26509         mono_class_get_full().
26511 2004-03-25  Martin Baulig  <martin@ximian.com>
26513         * class.c (mono_class_inflate_generic_type): Take a
26514         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
26515         `MonoGenericMethod *'.
26517 2004-03-25  Martin Baulig  <martin@ximian.com>
26519         * loader.h (MonoMethodInflated): Store the MonoGenericContext
26520         instead of the MonoGenericMethod here.
26522 2004-03-25  Martin Baulig  <martin@ximian.com>
26524         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
26525         each time we create a new MonoGenericInst, we also create a new
26526         context which points back to us.
26528         * class.c (inflate_method): Use `ginst->context' instead of
26529         creating a new context.
26531         * loader.c (method_from_memberref): Use
26532         `klass->generic_inst->context' instead of creating a new context.
26534 2004-03-25  Martin Baulig  <martin@ximian.com>
26536         * class.h (MonoGenericContext): New struct.
26537         (MonoGenericMethod): Removed `generic_inst'.
26539         * class.c (mono_class_inflate_generic_method): Take a
26540         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26542 2004-03-25  Martin Baulig  <martin@ximian.com>
26544         * loader.h (MonoMethodInflated): New typedef.
26546         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26547         `generic_param_count' consume just 30 bits, added `is_inflated'
26548         and `has_type_parameters' flags (one bit each).
26550         * class.c (mono_class_inflate_generic_method): Create a
26551         MonoMethodInflated instead of a MonoMethodNormal and set
26552         `is_inflated' in the method signature.
26554         * class.h (MonoGenericMethod): Removed `generic_method'.
26556 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26558         * image.c: Make sure the name of a MonoImage is always an absolute path.
26559           This fixes bug #54415.
26561 2004-03-24  Martin Baulig  <martin@ximian.com>
26563         * class.c (mono_class_setup_vtable): If we're a generic instance,
26564         use our generic type's vtable size.
26566 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26568         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26569         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26570         problems.
26572 2004-03-23  Martin Baulig  <martin@ximian.com>
26574         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26575         `MonoEvent *events'.
26577         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26578         (typebuilder_icalls): Added "get_event_info"; calls
26579         mono_reflection_event_builder_get_event_info(). 
26581         * reflection.c (mono_reflection_generic_inst_initialize): Added
26582         `MonoArray *events'.
26583         (mono_reflection_event_builder_get_event_info): New function.
26585 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26587         * object.h: add mono_type_initialization_init
26589         * object.c (mono_runtime_class_init): 
26590         implement class constructor synchronization rules
26591         to cope with threading issues.  
26592         add mono_type_initialization_init
26594         * appdomain.c (mono_runtime_init): call 
26595         mono_type_initialization_init
26597         * class.h: removing initializing field from MonoVTable
26599 2004-03-23  Martin Baulig  <martin@ximian.com>
26601         * class.c (my_mono_class_from_generic_parameter): Use
26602         `param->name' if it's not NULL. 
26604 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26606         * class.c: do not insert non-virtual methods in the vtable.
26607         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26608         that means the method is non-virtual. This never would have
26609         happened before.
26611 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26613         * profiler.c: Added lock for accessing coverage_hash.
26615 2004-03-22  Martin Baulig  <martin@ximian.com>
26617         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26618         `method->method->signature->generic_param_count != 0' to make it
26619         work for interface methods.
26621 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26623         * process.c: quote the string passed to the shell using g_shell_quote.
26625 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26627         * threads.c:
26628         (mono_threads_manage): don't remove the finalizer thread and self
26629         from the threads hash table so that mono_thread_manage can be called
26630         more than once.
26632 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26634         * process.c: quote the arguments when UseShellExecute is true. Fixes
26635         bug #55790.
26637 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26639         * threads.c: set mono_thread_detach as a cleanup routine for every
26640         thread. This way it's always executed upon thread termination, either
26641         aborted or finished normally. No more xsp hangs!
26643 2004-03-17  Martin Baulig  <martin@ximian.com>
26645         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26646         `int count_nested' and a `MonoType **nested'.
26648         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26649         most of the functionality into a new static
26650         do_mono_reflection_bind_generic_parameters() and don't take a
26651         `MonoType *nested_in' argument any more.  Don't compute nested
26652         types here.
26653         (mono_reflection_generic_inst_get_nested_types): New public method
26654         to get nested types.
26656         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26657         we're a nested class.
26659         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26660         mono_reflection_generic_inst_get_nested_types() to compute the
26661         nested types.
26663 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26665         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26666         descriptive error message under windows.
26667         
26668 2004-03-17  Martin Baulig  <martin@ximian.com>
26670         * class.c (dup_type): Added `const MonoType *original' argument;
26671         copy the attrs from the original type.
26673 2004-03-17  Martin Baulig  <martin@ximian.com>
26675         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26676         `m->generic_inst_cache' here.
26678 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26680         * exception.h exception.c: Add stack_overflow_exception.
26682 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26684         * threadpool.c:
26685         (overlapped_callback): call SetEvent *after* invoking the callback.
26686         No need to call CloseHandle.
26688 2004-03-16  Martin Baulig  <martin@ximian.com>
26690         * reflection.c (mono_image_get_fieldref_token): Take a
26691         `MonoReflectionField *' instead of a `MonoClassField *' and a
26692         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26694 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26696         * appdomain.c: don't add the culture to the filename we're looking for
26697         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26699 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26701         * locales.c: don't ignore symbols when doing case insensitive compares.
26702         Thanks Dick! Fixes bug #54046.
26704         * threads.c: surround 'threads' usage with enter/leave in
26705         mono_thread_manage.
26707 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26709         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26710         implicitly marshalled as [Out]. Fixes #55450.
26712         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26713         an exception.
26715 2004-03-16  Martin Baulig  <martin@ximian.com>
26717         * class.c (mono_class_from_generic_parameter): Use the actual
26718         parameter name. 
26720 2004-03-16  Martin Baulig  <martin@ximian.com>
26722         * reflection.c (type_get_signature_size): New static function.
26723         Compues the size of the type in a method signature.
26724         (method_get_signature_size): New static function; calls
26725         type_get_signature_size() to compute the actual size of the
26726         method's signature.
26727         (method_encode_signature): Use method_get_signature_size() to get
26728         the signature's size rather than using `nparams * 10'.
26730 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26732         * file-io.h: define here WapiOverlapped on windows. I don't want the
26733         regular OVERLAPPED one.
26735         * file-io.c:
26736         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26737         Disabling AIO on windows.
26739 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26741         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26742         bug #55385.
26744 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26746         * appdomain.c: upgraded corlib version.
26748         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26749         and BeginWrite. Allow opening files for asynchrnous operations.
26751         * file-io.h: new struct that maps FileStreamAsyncResult.
26752         * icall.c: added new icalls.
26753         * process.[ch]: support setting child process environment variables
26754         and use the SHELL or COMSPEC when UseShellExecute is true.
26756         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26757         callback for async. IO is here and also BindHandle.
26759         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26760         from here.
26762 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26764         * reflection.c (create_custom_attr): Allow len == 0.
26766         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26767         computation on big-endian machines.
26769 2004-03-13  Martin Baulig  <martin@ximian.com>
26771         * class.h (MonoGenericInst): Added `int count_ifaces'.
26773         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26774         `ginst->count_ifaces' instead `klass->interface_count' since we
26775         may get called before the vtable is created.
26777         * loader.c (mono_method_get_param_names): If we're a generic
26778         instance, return and don't initialize the class.
26780         * reflection.c (mono_reflection_setup_generic_class): Don't call
26781         ensure_runtime_vtable().
26782         (mono_reflection_bind_generic_parameters): Set
26783         `ginst->count_ifaces'.
26785 2004-03-11  Jackson Harper <jackson@ximian.com>
26787         * icall.c:
26788         * unicode.c:
26789         * unicode.h: Remove unused System.Char icalls.
26790         
26791 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26793         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26794         code when we P/Invoke the first library in Windows.Forms, instead
26795         of when we first open the assembly.
26797         * assembly.c: Drop the lookup from here.
26799 2004-03-10  Martin Baulig  <martin@ximian.com>
26801         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26802         class for properties, fields and events.  Finally fixes #54945.
26804 2004-03-10  Martin Baulig  <martin@ximian.com>
26806         * metadata.c (mono_metadata_class_equal): New static function;
26807         checks whether two generic instances or two generic parameters are
26808         equal.
26809         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26810         compare classes.        
26812 2004-03-10  Martin Baulig  <martin@ximian.com>
26814         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26816         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26817         argument and write it into the `reflection_info' field.
26819         * icall.c
26820         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26821         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26823 2004-03-09  Jackson Harper  <jackson@ximian.com>
26825         * char-conversions.h: use 8 bits for numeric data its all we need
26826         * icall.c: numeric data is only 8 bits now.
26828 2004-03-09  Martin Baulig  <martin@ximian.com>
26830         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26832         * class.c (init_properties, init_events): Initialize the new
26833         `parent' field.
26835         * reflection.c (typebuilder_setup_properties): Likewise.
26836         (typebuilder_setup_events): Likewise.
26838         * reflection.h (MonoEventInfo): Replaced `parent with
26839         `declaring_type' and `reflected_type'.
26841         * icall.c (ves_icall_get_property_info): Distinguish between
26842         declaring and reflected type.
26843         (ves_icall_get_event_info): Likewise.
26845 2004-03-09  Martin Baulig  <martin@ximian.com>
26847         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26848         (ves_icall_Type_GetField): Correctly set field->klass.
26850 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26852         * loader.h: Fix warning.
26854 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26856         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26857         library routine if present.  Notice that it will still continue
26858         executing even if its missing, for those working on the Gtk#
26859         edition of Windows.Forms.
26861         * assembly.c (do_mono_assembly_open): If loading the
26862         System.Windows.Forms call mono_loader_wini_init.
26864 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26866         * class.h: Added MonoRemoteClass struct.
26867         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26868         function for MonoStrings.
26869         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26870         Added internal call for getting the proxy type.
26871         * marshal.c: Get the type of transparent proxies from its remote_class.
26872         Added methods that generate the IL for type checks and casts:
26873         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26874         mono_marshal_get_proxy_cancast.
26875         * marshal.h: Declaration of the previous new methods.
26876         * object.c: Added new moethods for creating and updating MonoRemoteClass
26877         instances: mono_remote_class, mono_upgrade_remote_class, 
26878         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26879         * verify.c: FIx transparent_proxy_fields layout.
26880         * appdomain.c: Bump corlib version.
26882 2004-03-04  Jackson Harper  <jackson@ximian.com>
26884         * icall.c: Add icall to access char conversion tables.
26885         * char-conversions.h: Character conversion tables.
26886         * Makefile.am: Add char-conversions.h private header file.
26887         
26888 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26890         * appdomain.c (unload_thread_main): Increase unloading timeout to
26891         10 sec as a temporary workaround for Nant problems.
26893 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26895         * gc.c: Add checks for GC_enable and GC_disable.
26897         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26898         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26899         (bug #54988).
26900         
26901 2004-02-27  Martin Baulig  <martin@ximian.com>
26903         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26904         `MonoReflectionType *' instead of a `MonoType *'.
26906 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26908         * gc.c (run_finalize): Avoid finalizing the object representing the
26909         finalizer thread.
26910         (finalizer_thread): Fix warning.
26912 2004-02-25  Martin Baulig  <martin@ximian.com>
26914         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26915         argument for nested types.
26916         (mono_class_create_generic): Added support for nested generictypes.
26918         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26919         `GList *nested'.
26921         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26923         * reflection.c (method_encode_signature): Increase the minimum
26924         value of `size' from 10 to 11.
26925         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26926         and `MonoType **types' arguments instead of the `MonoArray
26927         *types'; added `MonoType *nested_in'.  Recursively instantiate
26928         nested classes. 
26930 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26932         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26933         stack_overflow_ex members which are used by exception handling.
26935         * appdomain.c (mono_runtime_init): Initialize the new members.
26937         * gc.c (mono_gc_enable): New helper function.
26938         * gc.c (mono_gc_disable): New helper function.
26940 2004-02-23  Martin Baulig  <martin@ximian.com>
26942         * icall.c: I must have been really stupid - make it actually work
26943         this time ;-)
26945 2004-02-23  Martin Baulig  <martin@ximian.com>
26947         * loader.c (method_from_memberref): Only inflate the method if
26948         it's in another klass.
26950 2004-02-23  Martin Baulig  <martin@ximian.com>
26952         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26953         (mono_class_init): If we're a generic instance and an interface,
26954         compute `class->interface_id'; also create `class->interfaces'
26955         here and inflate them.
26957         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
26958         `ginst->is_open'.
26959         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
26961         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
26963 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
26965         * reflection.c (method_encode_code): Improved the error message
26966         generated by the exception.
26968 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26970         * icall.c: Martin did not do what he said in the ChangeLog for
26971         2004-02-18, but put back the changes for properties and events.
26972         Commenting those changes out again and adding comment to bug #54518.
26973         
26974         * process.c: removed warning.
26976 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
26978         * marshal.c (emit_struct_conv): Print an error message instead of
26979         asserting when a type does not have the StructLayout attribute.
26981 2004-02-20  Martin Baulig  <martin@ximian.com>
26983         * reflection.c (mono_type_get_object): Also use the cache for
26984         generic instances.
26985         (mono_reflection_bind_generic_parameters): Always compute
26986         `ginst->ifaces'.        
26988 2004-02-20  Martin Baulig  <martin@ximian.com>
26990         * class.h (MonoGenericMethod): Removed `klass'.
26992         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26993         *klass' argument.
26995 2004-02-20  Martin Baulig  <martin@ximian.com>
26997         * reflection.c (method_encode_methodspec): Actually use the
26998         uninflated signature for the memberref.
27000 2004-02-20  Martin Baulig  <martin@ximian.com>
27002         * class.h (MonoGenericMethod): Removed `declaring'.
27004         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
27005         is NULL, compute it here.
27007 2004-02-20  Martin Baulig  <martin@ximian.com>
27009         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
27011         * metadata.c (mono_metadata_generic_inst_hash): New method.
27012         (mono_metadata_generic_inst_equal): New method.
27014         * reflection.c (mono_reflection_bind_generic_parameters): Use the
27015         `klass->image->generic_inst_cache' cache to avoid creating
27016         duplicate MonoGenericInst's.
27018         * class.c (mono_class_inflate_generic_type): Use the cache.
27020 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
27022         * object.c: fixed gc descriptor calculation for embedded valuetypes.
27024 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27026         * icall.c: added Socket.WSAIoctl icall.
27028         * socket-io.[ch]: implemented
27029         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
27031 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
27033         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
27035 2004-02-18  Urs C Muff  <umuff@quark.com>
27037         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
27038         this work on PPC and other big-endian architectures.
27040         * debug-mono-symfile.h: Prepended the names of all the `guint32'
27041         fields with an underscore to make sure they're only accessed by
27042         the read32() macro.
27044 2004-02-18  Martin Baulig  <martin@ximian.com>
27046         * icall.c: Put the klass->refclass changes back for methods and
27047         fields, but not for properties and events.  We're currently not
27048         distinguishing between DeclaringType and ReflectedType for
27049         properties and events, that's what caused the regressions.
27051 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27053         * object.c:
27054         (mono_async_result_new): the handle can be NULL.
27056         * threadpool.c: Use an event instead of a semaphore, don't initialize
27057         it until needed. This saves quite a few semaphores from being created
27058         when using the threadpool.
27060 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
27062         * object.c (mono_string_is_interned_lookup): Fix interning of long
27063         strings. Fixes #54473.
27065         * domain.c (ldstr_equal): Optimize if the two strings are equal.
27067         * icall.c: Revert the klass->refclass changes since they introduce
27068         regressions (bug #54518).
27070 2004-02-18  Martin Baulig  <martin@ximian.com>
27072         * class.c (mono_class_init): If we're a generic instance and don't
27073         come from a TypeBuilder, inflate our members here.
27074         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
27075         (mono_class_create_generic): New public method.
27076         (mono_class_initialize_generic): Removed.
27077         (get_instantiation_name): Renamed to
27078         _mono_class_get_instantiation_name() and made it public.
27080 2004-02-18  Martin Baulig  <martin@ximian.com>
27082         * class.c (mono_class_inflate_generic_type): Clear the new
27083         instance's `nginst->klass' when inflating a generic instance.
27084         (mono_class_is_subclass_of): Added (basic) support for generic
27085         instances.
27087 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
27089         * appdomain.h, domain.c: use a MonoCodeManager instead of a
27090         MonoMempool to hold compiled native code.
27092 2004-02-17  Martin Baulig  <martin@ximian.com>
27094         * class.h (MonoDynamicGenericInst): Added `count_properties' and
27095         `properties'.
27097         * reflection.c (mono_reflection_generic_inst_initialize): Added
27098         `MonoArray *properties' argument.
27100         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
27102 2004-02-17  Martin Baulig  <martin@ximian.com>
27104         * icall.c (ves_icall_Type_GetFields): Renamed to
27105         ves_icall_Type_GetFields_internal() and added a
27106         `MonoReflectionType *rtype' argument; pass it to
27107         mono_field_get_object() to set the field's "reflected" type.
27108         (ves_icall_Type_GetConstructors): Likewise.
27109         (ves_icall_Type_GetEvents): Likewise.
27110         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
27111         argument; pass it to mono_method_get_object() to set the method's
27112         "reflected" type.       
27114 2004-02-17  Martin Baulig  <martin@ximian.com>
27116         * class.h (MonoDynamicGenericInst): New type.
27117         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
27119         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
27120         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
27121         (ves_icall_MonoGenericInst_GetFields): New interncall.
27123         * class.c (mono_class_from_generic): Don't call
27124         mono_class_initialize_generic() if this is a dynamic instance;
27125         ie. it's being created from a TypeBuilder.
27126         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
27127         `class->byval_arg.type'.
27129         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
27130         to `inflate_method' and made static.
27131         (mono_reflection_inflate_field): Removed.
27132         (mono_reflection_generic_inst_initialize): New public method.
27134         * reflection.h (MonoReflectionGenericInst): Removed `methods',
27135         `ctors' and `fields'; added `initialized'.
27137 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
27139         * debug-helpers.c (mono_method_full_name): Fix output for empty
27140         namespaces.
27142 2004-02-12  Martin Baulig  <martin@ximian.com>
27144         * class.h (MonoClassField): Added `MonoType *generic_type'.
27146         * reflection.c (mono_image_get_fieldref_token): Added support for
27147         instantiated generic types.
27148         (field_encode_inflated_field): Removed.
27149         (mono_image_get_inflated_field_token): Removed.
27150         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
27152         * reflection.h (MonoReflectionInflatedField): Removed.
27154 2004-02-12  Martin Baulig  <martin@ximian.com>
27156         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
27157         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
27159         * reflection.c (mono_image_get_methodspec_token): Take a
27160         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
27161         (mono_image_create_token): Check whether we have a
27162         `method->signature->gen_method' and call
27163         mono_image_get_methodspec_token() if appropriate.
27164         (inflated_method_get_object): Removed.
27165         (mono_reflection_bind_generic_method_parameters): Return a
27166         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
27167         (mono_reflection_inflate_method_or_ctor): Likewise.
27169         * reflection.h (MonoReflectionInflatedMethod): Removed.
27171 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
27173         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
27174         for custom valuetype marshalling.
27176         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
27178 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27180         * icall.c: fixed WSAGetLastError_internal name.
27182 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
27184         * threads.c (mono_thread_attach): Allow this to be called multiple
27185         times for a thread.
27186         
27187         * threads.c (build_wait_tids): Do not wait for ourselves.
27189         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
27190         appdomain list is empty.
27192         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
27193         memory returned by mono_string_builder_to_utf16, since it points into
27194         managed memory. Thanks to Bernie Solomon for noticing this.
27196         * icall.c: Add AppDomainSetup icalls.
27198         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
27200         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
27201         types.
27203         * reflection.c (reflection_methodbuilder_to_mono_method): Save
27204         custom attributes to the method_aux struct. Also fix array indexes etc.
27206         * loader.c (mono_method_get_param_names): Make dynamic case work again.
27207         
27208 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
27210         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
27211         (both static and runtime) and reduce startup time.
27213 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
27215         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
27216         AsAny marshalling conversion instead of crashing.
27218         * marshal.c: Fix warnings.
27220 2004-02-09  Martin Baulig  <martin@ximian.com>
27222         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
27224         * reflection.h (MonoReflectionInflatedMethod): Removed the
27225         `declaring' field, it's now in the unmanaged MonoGenericMethod.
27227         * reflection.c (method_encode_methodspec): Removed the `method'
27228         argument; we get it from `gmethod->declaring'.
27229         (inflated_method_get_object): Removed the `declaring' argument.
27231 2004-02-09  Martin Baulig  <martin@ximian.com>
27233         * class.h (MonoGenericMethod): New type.
27234         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
27235         `generic_method'.
27237         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
27238         a `MonoGenericMethod *gen_method' one.
27240         * class.c (mono_class_inflate_generic_type): Take an additional
27241         `MonoGenericMethod * argument.  This is only non-NULL if we're
27242         inflating types for a generic method.   
27243         (mono_class_inflate_generic_signature): Renamed to
27244         inflate_generic_signature() and made static; take a
27245         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27246         (inflate_generic_header): Take a `MonoGenericMethod *' argument
27247         instead of a `MonoGenericInst *' one.
27248         (mono_class_inflate_generic_method): Likewise.
27250         * reflection.c (encode_generic_method_sig): Take a
27251         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27252         (method_encode_methodspec): Likewise.
27253         (inflated_method_get_object): Likewise. 
27255         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
27256         field with a `MonoGenericMethod *gmethod' one.  
27258 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
27260         * class.h (mono_class_has_parent): add parens to expansion
27261         so you can ! this.
27263 2004-02-08  Martin Baulig  <martin@ximian.com>
27265         * image.h (MonoImage): Removed `generics_cache'.
27267         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
27268         instead of a `MonoType *' argument; removed the `inflate_methods'
27269         argument.  Don't inflate methods here.
27271         * loader.c (find_method): If it's a generic instance, call
27272         mono_class_init() on the `sclass->generic_inst->generic_type'.
27274         * metadata.c (mono_type_size): Make this work on uninitialized
27275         generic instances; call it on the `ginst->generic_type's class.
27277         * reflection.c (mono_reflection_bind_generic_parameters): Call
27278         mono_class_from_generic() to create the `ginst->klass'.
27280 2004-02-08  Martin Baulig  <martin@ximian.com>
27282         * class.h (MonoClass): Changed type of `generic_inst' from
27283         `MonoType *' to `MonoGenericInst *'.
27285 2004-02-08  Martin Baulig  <martin@ximian.com>
27287         * icall.c (ves_icall_Type_BindGenericParameters): Just call
27288         mono_type_get_object(), this is now creating a `MonoGenericInst'
27289         for MONO_TYPE_GENERICINST.
27290         (ves_icall_MonoGenericInst_GetParentType): Likewise.
27291         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
27293         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
27294         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
27295         (inflated_method_get_object): Added `MonoClass *refclass' argument.
27296         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
27297         and reflected type.
27299         * reflection.h (MonoReflectionInflatedMethod): Removed
27300         `declaring_type' and `reflected_type'.
27302 2004-02-08  Martin Baulig  <martin@ximian.com>
27304         * class.h (MonoGenericInst): Added `MonoType *parent' and
27305         `MonoType **ifaces'.
27307         * reflection.h (MonoReflectionGenericInst): Removed `klass',
27308         `parent' and `interfaces'.
27310         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27311         `MonoType *' argument and return a `MonoType *'.
27313         * icall.c
27314         (ves_icall_MonoGenericInst_GetParentType): New interncall.
27315         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
27317 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27319         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
27320         valuetype marshalling.
27322 2004-02-06  Martin Baulig  <martin@ximian.com>
27324         * class.c
27325         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
27326         (my_mono_class_from_generic_parameter): Likewise.
27328 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27330         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
27331         contents of the symbol files lazily.
27333         * object.h (MonoThread): Add 'name' and 'name_len' fields.
27335         * threads.h threads.c icall.c: New icalls for getting and setting the
27336         threads name.
27338 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
27340         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
27341         Raise an exception when the domain is not found.
27343 2004-02-03  Martin Baulig  <martin@ximian.com>
27345         * reflection.c (mono_image_get_methodspec_token): Use the
27346         uninflated signature; fixes gen-33.
27348 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
27350         * gc.c threads.c: Make the finalizer thread a normal managed thread so
27351         the finalizer code can use thread functionality.
27353         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
27354         the finalizer thread.
27356         * threads.c: Make some functions more robust.
27358         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
27360         * metadata.h: Add new marshalling conventions.
27362         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
27363         stringbuilder marshalling. Fixes #53700.
27365         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
27367         * reflection.c (mono_image_get_type_info): Save declarative security
27368         info.
27370         * reflection.c (mono_image_get_field_info): Handle uninitialized 
27371         unmanaged fields as well.
27373         * appdomain.c: Bump corlib version.
27375 2004-02-01  Martin Baulig  <martin@ximian.com>
27377         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
27378         method type arguments.  
27380 2004-01-30  Duncan Mak  <duncan@ximian.com>
27382         * marshal.h: Add prototype for
27383         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
27384         and
27385         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
27386         fix the build.
27388 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
27390         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
27391         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
27393 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27395         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27396         custom marshalling of valuetypes.
27398         * marshal.c: Fix some warnings.
27400 2004-01-29  Martin Baulig  <martin@ximian.com>
27402         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
27403         for generic method parameters.
27405         * reflection.c (method_encode_methodspec): Write the uninflated
27406         signature into the methodspec table.
27407         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
27408         is always the uninflated method.
27409         (reflection_methodbuilder_to_mono_method): Copy the generic
27410         parameters from the MethodBuilder into `header->gen_params'.
27412 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27414         * class.c (mono_class_from_generic_parameter): Fix warning.
27416 2004-01-27  Martin Baulig  <martin@ximian.com>
27418         * class.c (mono_class_from_generic_parameter): Don't create
27419         `klass->methods' here.  
27421 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
27423         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
27424         extension since it does not work with libraries named lib<FOO>.dll.so.
27426 2004-01-25  Martin Baulig  <martin@ximian.com>
27428         * class.c (mono_class_inflate_generic_type): Added support for
27429         MONO_TYPE_GENERICINST.
27431         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
27432         inflate methods on open constructed types.      
27434 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27436         * object.c: fire ProcessExit event in the root AppDomain after running
27437         Main. Fixes bug #53299.
27439 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
27441         * socket-io.c: include the new socket-wrappers.h header.
27442         Use the wrappers instead of the unix socket functions to make the code
27443         more clear.
27445 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
27447         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
27449         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27450         Fixes #22532.
27452 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
27454         * reflection.c (mono_image_create_pefile): Handle the case when the
27455         entry point is not a MethodBuilder.
27457         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27458         field to ReflectionMethod since it is not allways a builder.
27460         * reflection.c (type_get_fully_qualified_name): New helper function to
27461         return the fully qualified name of a type.
27463         * reflection.c (encode_marshal_blob): Always emit the fully qualified
27464         type name for custom marshallers.
27466         * reflection.c (mono_marshal_spec_from_builder): Ditto.
27468         * class.c (mono_class_setup_vtable): If a parent class already 
27469         implements an interface, use the implementing methods from that class.
27470         Fixes #53148.
27472 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27474         * threadpool.c: just return instead of ExitThread to allow for thread
27475         clean up earlier.
27477 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
27479         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
27480         when closing resource modules.
27482         * reflection.c (mono_image_create_pefile): Handle the case when the
27483         entry point is not a MethodBuilder.
27485         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27486         field to ReflectionMethod since it is not allways a builder.
27488 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
27490         * marshal.c (mono_marshal_get_managed_wrapper): 
27491         mono_marshal_alloc takes native int so CONV_I
27492         the arg for 64bits.
27494 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
27496         * reflection.c (fixup_cattrs): New function to fixup the methoddef
27497         tokens in the cattr table. Fixes #53108.
27499 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27501         * loader.c: don't trim ".dll" before looking up in the config file.
27502         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
27504 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
27506         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
27507         Return the module which contains the resource as well.
27508         (ves_icall_System_Reflection_Module_Close): New icall.
27510         * appdomain.c: Bump corlib version number.
27512         * image.c (mono_image_addref): New public function.
27514         * assembly.c: Call mono_image_addref.
27516         * reflection.c (mono_module_get_object): Increase reference count of 
27517         the image.
27519         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27520         Fixes #22532.
27522         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
27523         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
27524         proper exceptions on DllImport problems.
27526 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27528         * class.c, metadata.c: eliminate CSIZE macro.
27530 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27532         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27533         * object.h: Added async_callback field in MonoAsyncResult.
27534         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27535         * verify.c: Added async_callback in MonoAsyncResult layout.
27537 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27539         * reflection.c (mono_reflection_get_custom_attrs): Add support
27540         for Modules.
27542 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27544         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27545         marshalling.
27546         (mono_marshal_method_from_wrapper): Add null pointer check.
27548 2004-01-16  Martin Baulig  <martin@ximian.com>
27550         * debug-mono-symfile.h: Set version number to 36 and reflect
27551         latest symbol writer changes.
27553 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27555         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27556         multi-dimensional arrays.
27557         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27558         (mono_class_from_mono_type): Use bounded_array_class_get.
27559         
27560         * class.c (mono_bounded_array_class_get): New function which takes
27561         a 'bounded' bool argument to distinguish vectors from one dimensional
27562         arrays.
27564         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27565         bounded_array_class_get if the array has bounds.
27567         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27568         Search modules loaded using AssemblyBuilder:AddModule as well.
27570 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27572         * appdomain.c: increased corlib version.
27573         * filewatcher.c: removed g_print.
27574         * icall.c:
27575         (get_property_info): only allocate what is actually requested.
27576         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27578 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27580         * Makefile.am: added filewatcher.[ch]
27581         * filewatcher.[ch]: FileSystemWatcher runtime support.
27582         * icall.c: added new FSW icalls.
27584 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27586         * string-icalls.c: fix stringbuilder regression as suggested by
27587         Iain McCoy <iain@mccoy.id.au>.
27589 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27591         * process.c (process_read_stringtable_block): Recognize '007f' as
27592         a language neutral stringtable block.
27594 2004-01-12  Patrik Torstensson
27596         * object.h (MonoStringBuilder) : Changed layout to support our
27597         new stringbuilder class.
27598         * marshal.c: Change marshalling to support the new layout of 
27599         string builder.
27600         * appdomain.c: increased version number because new layout of
27601         string builder.
27603 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27605         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27606         assembly name as an string instead of an AssemblyName, since it is
27607         easier to extract info from it.
27609         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27610         the culture subdirectories too. Fixes #52231.
27612 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27614         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27615         It takes 2 new parameters with an optional name for the method to look
27616         for and case ignoring info.
27618         * threadpool.c: removed unused variable.
27620 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27622         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27623         It takes 2 new parameters with an optional name for the property to look
27624         for and case ignoring info.
27625         Fixes bug #52753.
27627 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27629         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27630         Fix #52451.
27632 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27634         * appdomain.c:
27635         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27636         Fixes bug #52630.
27638 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27640         * reflection.c: Add support for more than one unmanaged resource.
27642         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27643         in field->def_value, as done in all other cases.
27645         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27646         TypeBuilders.
27648         * reflection.c (mono_reflection_create_runtime_class): Remove 
27649         errorneous assignment to klass->element_class, since it is already
27650         done in mono_reflection_setup_internal_class.
27652 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27654         * gc.c: added missing LeaveCriticalSection.
27655         * icall.c: indented a couple of lines.
27656         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27657         if we call EndInvoke inside a callback. Fixes bug #52601.
27659 2004-01-07  Martin Baulig  <martin@ximian.com>
27661         * mono-debug-debugger.h
27662         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27664 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27666         * appdomain.c: Use messages in NotImplementedException.
27668         * exception.c (mono_get_exception_not_implemented): Now this takes
27669         a message argument.
27671         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27672         exception instead of g_asserting an aborting when something is not
27673         implemented.
27675         Add some inline docs.
27677 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27679         * reflection.h: Update after changes to object layout.
27681         * reflection.c: Implement saving of unmanaged aka win32 resources.
27683         * appdomain.c: Bump version number.
27685         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27686         Handle missing domains gracefully.
27688 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27690         * file-io.c : On Windows, there are much more invalid_path_chars.
27692 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27694         * class.h, object.c: prepare for GetType () speedup.
27696 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27698         * profiler.c: workaround for --profile null reference exception on
27699           cygwin. Patch by Patrik Torstensson.
27701 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27703         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27704         make work for unaligned access.
27706 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27708         * class.c: small cleanup (class->fields [i] -> field).
27709         * image.c: check address of metadata is valid.
27711 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27713         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27714         search the list of loaded assemblies.
27716         * reflection.c (mono_reflection_type_from_name): Use 
27717         mono_assembly_loaded instead of mono_image_loaded.
27719         * reflection.c: Fix warnings.
27721 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27723         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27724         is dynamic. This is needed since an assembly can contain both dynamic and
27725         non-dynamic images.
27727         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27728         assembly->dynamic.
27730         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27732         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27733         to store modules loaded using AddModule.
27735         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27736         on Modules.
27738         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27740         * reflection.c (mono_image_fill_export_table_from_module): New function to
27741         fill out the EXPORTEDTYPES table from a module.
27743         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27744         into a separate function. Also handle loaded non-dynamic modules.
27746         * reflection.c (mono_image_basic_init): Fix memory allocation.
27748         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27750         * assembly.c (mono_assembly_load_references): Make this public.
27752 2003-12-19  Martin Baulig  <martin@ximian.com>
27754         * class.c (mono_class_initialize_generic): Made this static, take
27755         a `MonoGenericInst *' instead of a `MonoClass *'.
27756         (mono_class_from_generic): Call mono_class_initialize_generic()
27757         unless we're already initialized or being called from
27758         do_mono_metadata_parse_generic_inst().
27760         * class.h (MonoGenericInst): Added `initialized' and
27761         `init_pending' flags.
27763         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27764         `mono_class_init (gklass)' or mono_class_initialize_generic()
27765         here; set `generic_inst->init_pending' while parsing the
27766         `type_argv'.
27768 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27770         * locales.c: include string.h for memxxx prototypes
27772 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27774         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27775         constructor when accessing literal fields.
27777 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27779         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27781         * reflection.c (assembly_add_resource_manifest): New function to fill
27782         the MANIFESTRESOURCE table.
27784         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27786         * reflection.h: Update to changes in class layout.
27788         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27789         Reenable call to mono_runtime_is_shutting_down ().
27791         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27792         determine if the runtime is shutting down.
27794 2003-12-16  Jackson Harper <jackson@ximian.com>
27796         * icall.c: comment out call to mono_runtime_is_shutting_down to
27797         fix build.
27798         
27799 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27801         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27802         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27804 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27806         * reflection.c: move definition of swap_with_size
27807         to before its first call
27809 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27811         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27813         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27814         icall.
27816         * object.c: Fix warnings.
27818         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27819         members if FlattenHierarchy is set.
27821         * reflection.c (mono_image_add_decl_security): New function to emit
27822         declarative security.
27824         * reflection.h reflection.c: Add support for declarative security.
27826         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27827         
27828 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27830         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27831         
27832         * appdomain.c verify.c: Moved corlib version checking into its own
27833         function in appdomain.c since it needs to create vtables etc.
27835 2003-12-13  Patrik Torstensson <p@rxc.se>
27837         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27838         instead of unwrapped server.
27840 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27842         * verify.c (check_corlib): Fix field index.
27844 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27846         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27847         GetGacPath icall.
27849 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27851         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27852         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27853         cope with sizeof(size_t) != sizeof(guint32).
27855 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27857         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27858         in case of failure.
27860 2003-12-10  Mark Crichton <crichton@gimp.org>
27862         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27863         in managed code.
27865         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27867 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27869         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27870         marked as deleted.
27872 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27874         * verify.c (check_corlib): Handle the case when the version field is 
27875         initialized by a static constructor.
27877 2003-12-08  Patrik Torstensson  <p@rxc.se>
27879     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27881 2003-12-08  Martin Baulig  <martin@ximian.com>
27883         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27884         a MonoReflectionGenericParameter, also take the parameter index
27885         and name as arguments.
27886         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27887         (ves_icall_MonoGenericParam_initialize): New interncall.
27888         (ves_icall_Type_make_byref_type): New interncall.
27890         * reflection.h (MonoReflectionGenericParam): Derive from
27891         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27892         `index' fields.
27894         * reflection.c (mono_reflection_define_generic_parameter): Create
27895         and return a new MonoReflectionGenericParam; don't initialize the
27896         constraints here.
27897         (mono_reflection_initialize_generic_parameter): New public method;
27898         initializes the constraints and creates the `param->pklass'.
27900 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27902         * reflection.h reflection.c: Use the new fields 'num_types', 
27903         'num_fields' and 'num_methods' to track the number of types etc.
27905         * verify.c (check_corlib): Check corlib version number.
27907 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27909         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27910         function works on all methods.
27912 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27914         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27915         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27916         the custom_type_info flag of the transparent proxy.
27917         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27918         objects that supports IRemotingTypeInfo.
27919         * object.h: Added custom_type_info field in transparent proxy.
27921 2003-12-06  Martin Baulig  <martin@ximian.com>
27923         * class.c (mono_class_create_from_generic): Removed.
27924         (mono_class_from_generic): Check `ginst->klass' before doing
27925         anything else.  This is important to fully support "recursive"
27926         generic types.
27928         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27929         empty `generic_inst->klass' before doing anything else.
27931 2003-12-06  Dick Porter  <dick@ximian.com>
27933         * verify.c: 
27934         * object.h:
27935         * icall.c:
27936         * locales.c: Use C structs to access class fields.  Don't do a
27937         conversion between MonoString and UChar because both are
27938         platform-endian UTF-16.  Compare now takes startindex and count
27939         parameters.  Add a char overload for IndexOf.  Speed up the
27940         invariant string IndexOf.
27942 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27944         * Makefile.am (monosn_LDADD): Fix parallel build.
27946 2003-12-04  Martin Baulig  <martin@ximian.com>
27948         * icall.c
27949         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27950         (ves_icall_Type_make_array_type): New interncall.       
27952 2003-12-04  Martin Baulig  <martin@ximian.com>
27954         * locales.c: also change it in the !HAVE_ICU case.
27956 2003-12-04  Dick Porter  <dick@ximian.com>
27958         * icall.c:
27959         * locales.c: construct_compareinfo is now in CompareInfo, not
27960         CultureInfo.
27962 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
27964         * image.c (mono_image_load_file_for_image): Cache loaded images in the
27965         image->files array.
27967         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
27968         table as well.
27970         * assembly.c (mono_assembly_load_references): Only load references
27971         once.
27973         * class.c (mono_class_from_name): Avoid linear search of the 
27974         EXPORTEDTYPE table.
27976         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
27978 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
27980         * image.h (MonoImage): Add 'field_cache' field.
27982         * loader.c (mono_field_from_token): Cache field lookups.
27983         
27984         * reflection.c (mono_module_get_object): Fix name property.
27986         * icall.c (ves_icall_get_enum_info): Update after changes to 
27987         mono_metadata_get_constant_index ().
27989         * icall.c: Get rid of get_type_info icall, use a separate icall for
27990         each type property to avoid needless memory allocations. Fixes #51514.
27992         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27993         to avoid needless binary searches.
27995         * class.c (class_compute_field_layout): Move the initialization of
27996         field->def_value to mono_class_vtable ().
27998         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27999         non-corlib types.
28001         * object.c (mono_object_allocate): Make it inline.
28003         * object.c (mono_object_allocate_spec): Make it inline.
28004         
28005 2003-12-02  Dick Porter  <dick@ximian.com>
28007         * locales.c (create_NumberFormat): NumberFormatInfo construction.
28008         Patch by Mohammad DAMT (mdamt@cdl2000.com).
28010 2003-12-01  Dick Porter  <dick@ximian.com>
28012         * threads.c: Fix signature and call in CreateMutex and
28013         CreateEvent.
28015 2003-12-01  Dick Porter  <dick@ximian.com>
28017         * icall.c: 
28018         * locales.c: Implement string compares and searching
28020         * object.h: Add extra Thread field
28022 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
28024         * reflection.c (fixup_method): Add support for MonoCMethod.
28026 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
28028         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
28030         * reflection.c (assembly_name_to_aname): Allow extra characters in
28031         assembly names. Fixes #51468.
28033 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
28035         * exception.c (mono_exception_from_name_domain): New helper function.
28037         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
28038         exception object in the correct domain.
28040         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
28041         formatting + make a copy a the input data.
28043         * loader.c (mono_get_method_from_token): Methods which contain
28044         native code do not have entries in the ImplMap.
28046         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
28047         Thanks to Gonzalo for spotting this.
28048         
28049         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
28050         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
28052         * assembly.h (mono_assembly_load_from): Split the second part of 
28053         assembly loading into a new public function.
28055         * exception.h (mono_get_exception_bad_image_format): New function.
28057 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
28059         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28060         Enumerate all modules inside a dynamic assembly. Fixes #51293.
28061         
28062         * icall.c: Add new icall for creating dynamic methods.
28064         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
28066         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
28068         * reflection.c (mono_reflection_create_dynamic_method): New icall to
28069         create a dynamic method.
28071         * reflection.c (resolve_object): New helper function.
28073         * reflection.c: Generalize ReflectionMethodBuilder and the functions
28074         which manipulate it so they can also work on dynamic methods.
28076         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
28077         creating the MonoReflectionMethodAux structure if it is not needed.
28078         
28079         * reflection.h verify.c: Update after changes to object layout.
28081         * reflection.c (method_builder_encode_signature): Fix compilation on
28082         gcc 2.95.x.
28084 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
28086         * appdomain.h: Added support for context static fields. Added static_data
28087           field to MonoAppContext and renamed thread_static_fields to a more
28088           generic special_static_fields in MonoAppDomain, since it can now contain
28089           context static fields.
28090         * domain.c: Updated hashtable name.
28091         * object.c: Replaced field_is_thread_static() for a more generic
28092           field_is_special_static() which also checks for context static attribute.
28093           In mono_class_vtable(), added support for static context fields.
28094         * threads.c: Changed methods that manage thread static fields to more
28095           generic methods so they can be reused both for thread and context static
28096           data.
28097         * threads.h: Declared some new methods.
28099 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
28101         * reflection.h: Update after changes to the managed types.
28103         * reflection.c (encode_custom_modifiers): New helper function.
28105         * reflection.c (method_encode_signature): Emit custom modifiers.
28107         * reflection.c (field_encode_signature): Emit custom modifiers.
28109 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
28111         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
28113         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
28114         implementation.
28116         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
28117         icall.
28119         * object.c (mono_field_get_value_object): New function.
28121         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
28122         specific.
28124 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
28126         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
28127         return a preallocated out-of-memory exception instance.
28129         * object.c (out_of_memory): Use the new function.
28131         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
28132         flag is before the custom modifiers. Fixes #49802.
28134 2003-11-16  Martin Baulig  <martin@ximian.com>
28136         * class.c (mono_class_is_open_constructed_type): Implemented the
28137         MONO_TYPE_GENERICINST case.
28139 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
28141         * assembly.c (mono_assembly_fill_assembly_name): New function to
28142         fill out the MonoAssemblyName structure.
28143         (mono_assembly_open): Use the new function.
28145         * icall.c (fill_reflection_assembly_name): New helper function.
28147         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
28148         new function.
28150         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
28152 2003-11-15  Martin Baulig  <martin@ximian.com>
28154         * class.c (mono_class_is_open_constructed_type): New public
28155         function; checks whether a type is an open constructed type,
28156         ie. whether it still contains type parameters.
28157         (mono_class_inflate_generic_type): If we're a type parameter and
28158         the inflated type is also a MONO_TYPE_(M)VAR, return the original
28159         type.
28161         * class.h (MonoGenericInst): Added `guint32 is_open'.
28163         * loader.c (method_from_methodspec): Check whether we're an open
28164         or closed constructed type and set `ginst->is_open'.
28166         * reflection.c (mono_reflection_bind_generic_parameters): Check
28167         whether we're an open or closed constructed type and set
28168         `ginst->is_open'.
28169         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
28170         from open constructed types.
28172 2003-11-15  Martin Baulig  <martin@ximian.com>
28174         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28175         a generic instance (instead of a generic type declaration) with
28176         unbound generic parameters, bind them to our actual types.
28178 2003-11-14  Martin Baulig  <martin@ximian.com>
28180         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
28182         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28183         an interface type, populate `res->interfaces' with instantiated
28184         versions of all the interfaces we inherit.
28186 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
28188         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
28189         when MONO_PATH is set but doesn't contain the install dir.
28191 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28193         * icall.c:
28194         (ves_icall_Type_GetInterfaces): don't return an interface twice when
28195         it's also implemented in base classes. Fixes bug #50927.
28197 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
28199         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
28200         if this method is called from a finalizer. Fixes #50913.
28202 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
28204         * threads.c: Implement VolatileRead/VolatileWrite
28206         * icall.c: Add new icalls for VolatileRead/VolatileWrite
28208 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28210         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
28211         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
28212         2.95.3.
28214         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
28215         from Peter Ross (pro@missioncriticalit.com).
28216         
28217 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
28219         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
28221 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28223         * assembly.c (mono_assembly_load_references): Disable check because it
28224         triggers on older corlibs which lots of people have.
28226 2003-11-12  Jackson Harper  <jackson@ximian.com>
28228         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
28229         load corlib.dll if mscorlib.dll is not found.
28230         * assembly.h: Remove corlib name define.
28231         * class.c:
28232         * domain.c:
28233         * image.c: Change corlib name to mscorlib.
28234         
28235 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28237         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
28239 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
28241         * appdomain.h: Added loader_optimization here to sync with the C#
28242         code, and add disallow_binding_redirects field.
28244 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28246         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
28248         * reflection.c (mono_image_build_metadata): Fix crash on modules
28249         with no types.
28251         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
28253         * icall.c (ves_icall_get_method_info): Return callingConvention as
28254         well.
28256         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
28257         namespaces from the EXPORTEDTYPE table as well.
28259         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
28260         from all modules inside the assembly.
28261         
28262 2003-11-11  Martin Baulig  <martin@ximian.com>
28264         * reflection.c (mono_reflection_bind_generic_parameters): Make
28265         this work for interfaces.
28267 2003-11-11  Martin Baulig  <martin@ximian.com>
28269         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
28271 2003-11-11  Martin Baulig  <martin@ximian.com>
28273         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
28274         "MonoInflatedMethod" and "MonoInflatedCtor".
28276 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28278         * reflection.c (resolution_scope_from_image): Use the assembly table
28279         from the manifest module, since other modules don't have it.
28281         * debug-helpers.c (mono_type_full_name): New helper function.
28283         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
28285         * image.c (mono_image_load_file_for_image): New public function which
28286         is a replacement for the load_file_for_image in class.c.
28288         * assembly.c (mono_assembly_load_module): A wrapper for the function
28289         above which does assembly association and reference loading too.
28291         * class.c (mono_class_from_name): Call mono_assembly_load_module.
28293 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28295         * appdomain.c: not all of the attributes for the full assembly name
28296         are required and the order doesn't matter. Fixes bug #50787.
28298 2003-11-10  Dick Porter  <dick@ximian.com>
28300         * locales.c: Use platform-endian UTF16
28302 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28304         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28305         
28306 2003-11-10  Martin Baulig  <martin@ximian.com>
28308         * metadata.c
28309         (mono_metadata_load_generic_params): Make this actually work.
28311         * reflection.c (mono_reflection_bind_generic_parameters): If our
28312         parent is a generic instance, pass all the `types' to it, no
28313         matter whether it has the same number of type parameters or not.
28315 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28317         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28319         * assembly.c (mono_assembly_load_references): Move the image<->assembly
28320         assignment code to this function so it gets called recursively for all
28321         modules.
28323         * image.c (load_modules): Remove the assembly assignment since it is
28324         now done by mono_assembly_load_references.
28325         
28326         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28327         Add 'module' argument.
28328         (mono_module_get_types): New helper function.
28329         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
28331 2003-11-08  Martin Baulig  <martin@ximian.com>
28333         * class.c (mono_class_inflate_generic_method): Interface method
28334         don't have a header.
28336         * reflection.c (mono_image_get_methodspec_token): Take an
28337         additional `MonoGenericInst *' argument instead of reading it from
28338         the header; this is necessary to support interfaces.
28339         (mono_image_create_token): Pass the `MonoGenericInst *' from the
28340         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
28341         (inflated_method_get_object): Take an additional `MonoGenericInst *'
28342         argument.
28344         * reflection.h (MonoReflectionInflatedMethod): Added
28345         `MonoGenericInst *ginst'.
28347 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
28349         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
28351 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
28353         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
28355 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
28357         * reflection.c 
28358         (reflection_methodbuilder_from_method_builder):
28359         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
28360         initialize a ReflectionMethodBuilder structure.
28361         (mono_image_get_methodbuilder_token):
28362         (mono_image_get_ctorbuilder_token): New functions to emit memberref
28363         tokens which point to types in another module inside the same assembly.
28365         * reflection.c: Use the new helper functions.
28366         
28367         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
28369         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
28370         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
28372         * reflection.c (resolution_scope_from_image): Emit a moduleref if
28373         neccesary.
28375         * reflection.c (mono_image_build_metadata): Emit metadata only for the
28376         current module. Emit the manifest only for the main module.
28378         * reflection.c (mono_image_create_token): Add assertion when a 
28379         memberref needs to be created.
28381         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
28383         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
28384         larger buffer for the custom attribute blob. Fixes #50637.
28385         
28386 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28388         * threadpool.c: notify listener on async processing handles after
28389         invoking the async callback. Thanks to Zoltan.
28391 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28393         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
28394         avoid code duplication.
28396         * reflection.h (MonoDynamicImage): New type which is currently unused,
28397         but will be used through the ref.emit code in place of 
28398         MonoDynamicAssembly.
28400         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28401         object layout.
28403         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
28404         a MonoDynamicImage instead of just a MonoImage.
28405         
28406         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
28407         icalls to ModuleBuilder but keep their semantics, so they will work
28408         with moduleb->assemblyb. This will change later.
28409         
28410 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28412         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28413         object layout.
28415         * reflection.c (mono_image_build_metadata): Avoid creation of a default
28416         main module, since it is now done by the managed code.
28418 2003-11-03  Martin Baulig  <martin@ximian.com>
28420         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
28421         `ginst->klass' here.
28422         (method_encode_methodspec): Don't use the `ginst->generic_method's
28423         klass if it's a generic instance, use `ginst->klass' in this case.
28425 2003-11-03  Martin Baulig  <martin@ximian.com>
28427         * reflection.c (mono_image_get_generic_method_param_info):
28428         Removed, use mono_image_get_generic_param_info() instead.
28429         (mono_image_get_type_info): Write the GenericParam table before
28430         the Method table.  This is neccessary because in the GenericParam
28431         table, type parameters of the class (ie. '!0' etc.) must come
28432         before the ones from its generic methods (ie. '!!0' etc).
28434 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28436         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
28438 2003-11-02  Martin Baulig  <martin@ximian.com>
28440         * reflection.c (create_generic_typespec): Take a
28441         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
28442         the generic parameters from it.
28444 2003-11-02  Martin Baulig  <martin@ximian.com>
28446         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
28447         instead of a `MonoClassField *' since we just need the type.
28448         (create_generic_typespec): New static function.  Creates a
28449         TypeSpec token for a generic type declaration.
28450         (mono_image_get_generic_field_token): New static function.
28451         (mono_image_create_token): If we're a FieldBuilder in a generic
28452         type declaration, call mono_image_get_generic_field_token() to get
28453         the token.
28455 2003-11-02  Martin Baulig  <martin@ximian.com>
28457         * reflection.h
28458         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
28459         `MonoReflectionGenericInst *declaring_type' and
28460         `MonoReflectionGenericInst *reflected_type' fields.
28462         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
28463         `MonoReflectionGenericInst *declaring_type' and a
28464         `MonoReflectionGenericInst *reflected_type' argument instead of a
28465         single `MonoReflectionGenericInst *type' one.  Set
28466         `res->declaring_type' and `res->reflected_type' from them.
28467         (mono_reflection_inflate_field): Likewise.      
28469 2003-11-02  Martin Baulig  <martin@ximian.com>
28471         * class.c (mono_class_setup_vtable): Don't store generic methods
28472         in the vtable.  
28474 2003-11-02  Martin Baulig  <martin@ximian.com>
28476         * reflection.h (MonoReflectionGenericInst): Added
28477         `MonoReflectionType *declaring_type'.
28479         * reflection.c (mono_reflection_bind_generic_parameters): Use
28480         `if (tb->parent)' instead of `klass->parent'.
28482 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
28484         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
28485         with an empty ASSEMBLY table.
28487         * reflection.c (mono_image_build_metadata): Avoid using the same loop
28488         variable in the inner and outer loops.
28490 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
28492         * metadata.h (mono_metadata_make_token): Put parentheses around macro
28493         argument.
28495         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
28496         
28497         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
28498         icalls. Instead, do everything in managed code. This is needed since
28499         it is hard to restore the original domain etc. in unmanaged code in the
28500         presence of undeniable exceptions.
28502         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
28503         New icalls to push and pop appdomain refs.
28505 2003-10-31  Martin Baulig  <martin@ximian.com>
28507         * class.c (inflate_generic_type): Renamed to
28508         mono_class_inflate_generic_type() and made it public.
28510         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
28511         New interncall.
28513         * loader.c (mono_field_from_memberref): Also set the retklass for
28514         typespecs.
28516         * fielder.c (mono_image_get_inflated_field_token): New static
28517         method; creates a metadata token for an inflated field.
28518         (mono_image_create_token, fixup_method): Added support for
28519         "MonoInflatedField".
28520         (fieldbuilder_to_mono_class_field): New static function.
28521         (mono_reflection_inflate_field): New public function.
28523         * reflection.h
28524         (MonoReflectionGenericInst): Added `MonoArray *fields'.
28525         (MonoReflectionInflatedField): New typedef.     
28527 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28529         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28530         for Solaris and other platforms without s6_addr16
28532 2003-10-30  Martin Baulig  <martin@ximian.com>
28534         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28535         argument instead of two.
28536         (mono_class_inflate_generic_signature): Likewise.
28537         (inflate_generic_header): Likewise.
28538         (mono_class_inflate_generic_method): Likewise.  In addition, if
28539         `ginst->klass' is set, it becomes the new `method->klass'.
28541         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28542         field.
28544         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28545         first byte. [FIXME]
28546         (method_encode_methodspec): If we have generic parameters, create
28547         a MethodSpec instead of a MethodRef.
28548         (fixup_method): Added support for "MonoInflatedMethod" and
28549         "MonoInflatedCtor".
28550         (mono_image_create_token): Added support for "MonoInflatedMethod"
28551         and "MonoInflatedCtor".
28552         (inflated_method_get_object): New static function; returns a
28553         managed "System.Reflection.MonoInflatedMethod" object.
28554         (mono_reflection_bind_generic_method_parameters): Return a
28555         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28556         (mono_reflection_inflate_method_or_ctor): Likewise.
28557         (mono_image_get_generic_method_param_info): Initialize unused
28558         fields to zero.
28559         (mono_image_get_generic_param_info): Likewise.
28561         * reflection.h (MonoReflectionInflatedMethod): New public
28562         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28563         "S.R.MonoInflatedCtor" classes.
28565         * loader.c (method_from_memberref): If we're a TypeSpec and it
28566         resolves to a generic instance, inflate the method.
28568 2003-10-28  Dick Porter  <dick@ximian.com>
28570         * object.c (mono_runtime_run_main): Convert command-line arguments
28571         into utf8, falling back to the user's locale encoding to do so.
28573 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28575         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28576         at this time.
28578         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28580         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28581         up icalls at method definition time. Partially fixes #33569.
28583 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28585         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28586         marshalling of arrays. Fixes #50116.
28588         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28590         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28591         points to a vtable in the dying appdomain.
28593         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28594         listeners into unmanaged code inside the lock.
28596         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28597         domains and add some comments.
28599 2003-10-25  Martin Baulig  <martin@ximian.com>
28601         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28603         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28605         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28606         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28607         currently parsing.  Create the generic class and store it in
28608         `generic_inst->klass' before parsing the type arguments.  This is
28609         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28610         for an example.
28611         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28612         to support recursive typespec entries.
28614         * class.c (mono_class_setup_parent): If our parent is a generic
28615         instance, we may get called before it has its name set.
28616         (mono_class_from_generic): Splitted into
28617         mono_class_create_from_generic() and mono_class_initialize_generic().
28619 2003-10-25  Martin Baulig  <martin@ximian.com>
28621         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28622         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28623         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28624         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28626         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28627         (create_typespec): Likewise.
28628         (mono_reflection_bind_generic_parameters): Return a
28629         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28630         (mono_reflection_inflate_method_or_ctor): New public function.
28632         * reflection.h (MonoReflectionGenericInst): New typedef.        
28634 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28636         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28637         inside the domain lock. Fixes #49993.
28638         
28639         * object.c (mono_class_vtable): When typed allocation is used, 
28640         allocate vtables in the GC heap instead of in the mempool, since the
28641         vtables contain GC descriptors which are used by the collector even
28642         after the domain owning the mempool is unloaded.
28644         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28646         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28647         reflect what it does. Also invalidate mempools instead of freeing
28648         them if a define is set.
28650         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28651         of the appdomain.
28652         
28653         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28654         hold the finalizable objects in this domain.
28656         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28657         appdomain.
28659         * appdomain.c (mono_domain_set): New function to set the current
28660         appdomain, but only if it is not being unloaded.
28662         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28663         appdomain which is being unloaded.
28664         
28665         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28666         unloading of the root appdomain.
28668         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28669         icall to execute a method in another appdomain. Intended as a 
28670         replacement for InternalSetDomain, which can confuse the code 
28671         generation in the JIT.
28673         * appdomain.c (mono_domain_is_unloading): New function to determine
28674         whenever an appdomain is unloading.
28676         * appdomain.c (mono_domain_unload): New function to correctly unload
28677         an appdomain.
28679         * assembly.c (mono_assembly_load_references): Check that an assembly
28680         does not references itself.
28682         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28683         domain manually, it asks the finalizer thread to do it, then waits for
28684         the result. Also added a timeout.
28686         * icall.c: Register the new icalls.
28688         * threads.h threads.c: Export the mono_gc_stop_world and 
28689         mono_gc_start_world functions.
28690         
28691         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28692         function to fill out the mempool with 0x2a.
28694 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28696         * reflection.h (MonoReflectionMethodAux): New structure to store
28697         information which is rarely used, thus is not in the MonoMethod
28698         structure.
28700         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28701         store the aux info.
28703         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28704         and marshalling info into the aux structure.
28706         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28707         from the aux structure.
28709         * loader.c (mono_method_get_param_names): Retrieve the param names from
28710         the aux structure.
28711         
28712 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28714         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28715         warning.
28717 2003-10-21  Dick Porter  <dick@ximian.com>
28719         * socket-io.c
28720         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28721         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28723 2003-10-21  Martin Baulig  <martin@ximian.com>
28725         * reflection.c (mono_reflection_bind_generic_parameters):
28726         `klass->parent' is NULL for interfaces.
28728 2003-10-21  Martin Baulig  <martin@ximian.com>
28730         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28732 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28734         * exception.c (mono_exception_from_name_msg): New helper function for
28735         creating exceptions and initializing their message field.
28737         * exception.c: Simplify functions using the new helper.
28739         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28740         New function.
28742         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28743         mono_raise_exception, since otherwise gcc doesn't generate the function
28744         epilog for raise_exception, confusing the stack unwinding in the JIT.
28745         Fixes #45043.
28747         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28748         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28749         Fixes #49499.
28751 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28753         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28754         utf8.
28756 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28758         * icall.c: Removed GetUninitializedObject method because
28759           AllocateUninitializedClassInstance does the same.
28761 2003-10-18  Martin Baulig  <martin@ximian.com>
28763         * class.c (inflate_generic_signature): Renamed to
28764         mono_class_inflate_generic_signature() and made it public.
28765         (my_mono_class_from_generic_parameter): New static function; if we
28766         don't already have the generic parameter's MonoClass, create a
28767         very simple one which is just used internally in the runtime and
28768         not passed back to managed code.
28770         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28772         * metadata.h (MonoMethodSignature): Moved the
28773         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28774         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28776         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28777         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28778         interncall on the MonoMethod class, not on MethodInfo.
28779         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28780         calling mono_reflection_bind_generic_method_parameters() directly.
28782         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28783         return the already computed `method->signature'.
28784         (method_from_methodspec): New static function to load a method
28785         from a MethodSpec entry.
28786         (mono_get_method_from_token): Call the new method_from_methodspec()
28787         for MethodSpec tokens.  
28788         (mono_get_method_from_token): If we're a generic method, load the
28789         type parameters.
28791         * reflection.c (mono_image_get_memberref_token): Allow
28792         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28793         table.
28794         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28795         (mono_image_create_token): First check whether it's a generic
28796         method (so we'd need to create a MethodSpec), then do the other
28797         two alternatives.
28798         (mono_reflection_bind_generic_method_parameters): Return a
28799         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28800         called directly from the interncall.
28802 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28804         * reflection.c (load_public_key): Move loading of the public key
28805         into managed code.
28807         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28809         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28810         fields.
28812         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28813         culture, hash_alg and public_key. Fixes #49555.
28815 2003-10-17  Martin Baulig  <martin@ximian.com>
28817         * class.h (MonoGenericInst): Moved this declaration here and added
28818         `MonoMethod *generic_method'.
28820         * icall.c
28821         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28822         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28824         * metadata.c (mono_metadata_type_equal): Two types of
28825         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28826         index; ie. don't compare the address of the `MonoGenericParam'
28827         structure.
28828         (mono_metadata_load_generic_params): Removed the `MonoMethod
28829         *method' argument.
28831         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28832         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28834         * reflection.c (method_encode_signature): Encode the number of
28835         generic parameters.
28836         (encode_generic_method_sig): New static function.
28837         (method_encode_methodspec): New static function; creates an entry
28838         in the MethodSpec table for a generic method.
28839         (mono_image_get_methodspec_token): New static function.
28840         (mono_image_create_token): Call mono_image_get_methodspec_token()
28841         for generic methods.
28842         (mono_reflection_bind_generic_method_parameters): New public
28843         function.  Instantiates a generic method.
28845 2003-10-16  Martin Baulig  <martin@ximian.com>
28847         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28848         *gen_params' here from MonoMethodHeader.
28850         * metadata.c (mono_metadata_parse_method_signature): If we have
28851         generic parameters, initialize `method->gen_params' and then set
28852         the correct `type->data.generic_param' in all the parameters.
28854 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28856         * threads.c (mono_threads_get_default_stacksize): New function to 
28857         return the default stacksize.
28859         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28860         termination of the finalizer thread, since the previous method had
28861         race conditions. Fixes #49628.
28863         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28864         as for the other managed threads.
28866 2003-10-16  Martin Baulig  <martin@ximian.com>
28868         * class.c (inflate_generic_signature): Copy `generic_param_count'
28869         and `gen_params'.
28871         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28872         New interncall.
28874         * metadata.c (mono_metadata_parse_method_signature): Actually set
28875         the `method->generic_param_count' here.
28876         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28878 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28880         * object.h: Add a new field to TypedRef to simplify the implementation
28881         of the REFANY opcodes in the JIT.
28883         * icall.c: Make use of the new field.
28885         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28886         dynamically.
28888 2003-10-15  Martin Baulig  <martin@ximian.com>
28890         * class.c (mono_class_from_gen_param): Renamed to
28891         mono_class_from_generic_parameter() and moved most of the
28892         functionality from mono_reflection_define_generic_parameter()
28893         here; ie. we create a "real" class here.
28894         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28895         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28896         previously been called.
28898         * class.h (MonoGenericParam): Moved the declaration of this struct
28899         here from metadata.h and added `MonoMethod *method'.
28901         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28902         interncall.
28904         * loader.c (mono_get_method_from_token): If we have any generic
28905         parameters, call mono_metadata_load_generic_params() to read them
28906         from the MONO_TABLE_GENERICPAR.
28908         * metadata.c (mono_metadata_load_generic_params): Added
28909         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28911         * metadata.h (MonoMethodSignature): Replaced
28912         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28913         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28915         * reflection.c (mono_reflection_define_generic_parameter): Moved
28916         most of the functionality into the new
28917         mono_class_from_generic_parameter(); set the `method' field if
28918         we're a method parameter.       
28920 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28922         * marshal.c (emit_struct_conv): if native size is 0
28923         emit no code.
28925 2003-10-14  Martin Baulig  <martin@ximian.com>
28927         * icall.c: The generics API has changed in the spec since it was
28928         added to System.Type; these modifications make it match the spec
28929         again.
28930         (ves_icall_Type_GetGenericParameters): Renamed to
28931         `ves_icall_Type_GetGenericArguments'.
28932         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28933         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28934         `ves_icall_MonoType_get_HasGenericArguments'.
28935         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28936         `ves_icall_MonoType_get_IsGenericParameter'.
28937         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28938         this is no interncall anymore.
28939         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28940         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28942 2003-10-14  Martin Baulig  <martin@ximian.com>
28944         * reflection.c (mono_reflection_bind_generic_parameters): Also
28945         inflate generic methods if we're reading the class from IL.
28947 2003-10-13  Martin Baulig  <martin@ximian.com>
28949         * reflection.c (mono_reflection_define_generic_parameter): This
28950         method isn't called directly from the icall anymore; take a
28951         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28952         method generic parameters.
28953         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28954         (method_builder_encode_signature): Encode generic parameters.
28955         (mono_image_get_method_info): Write generic params to the
28956         MONO_TABLE_GENERICPARAM table.
28958         * reflection.h (MonoReflectionMethodBuilder): Added
28959         `MonoArray *generic_params'.
28961         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
28963         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
28964         wrapper for mono_reflection_define_generic_parameter().
28965         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
28967 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
28969         * marshal.h: Add missing function to fix build.
28971         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
28972         the SetLastError pinvoke attribute.
28974         * marshal.c (mono_marshal_set_last_error): New helper function called
28975         by the generated code.
28976         
28977         * marshal.c (mono_mb_emit_branch): New helper function.
28979         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
28981         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28982         classes as parameters and return values of delegates. Fixes #29256. 
28984 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
28986         * locales.c: use gint32 in non HAVE_ICU case
28988 2003-10-11  Martin Baulig  <martin@ximian.com>
28990         * mono-debug.c (mono_debug_add_method): Added a workaround for
28991         bug #48591.
28993 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28995         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28996         delegates passed to native code must use the STDCALL calling 
28997         convention. Fixes #35987.
28999 2003-10-10  Martin Baulig  <martin@ximian.com>
29001         * class.c (inflate_generic_type): If we're inflating for a generic
29002         type instance (and not for a generic method), return
29003         MONO_TYPE_MVAR unchanged.
29005 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29007         * string-icalls.c: Join ignores null strings in the source array.
29008         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
29009         * threads.c: GetAvailableTheads is slightly more accurate.
29011 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
29013         * threads.h threads.c : add mono_threads_set_default_stacksize
29014         and pass default to CreateThread calls.
29016 2003-10-09  Dick Porter  <dick@ximian.com>
29018         * icall.c:
29019         * locales.h:
29020         * locales.c: Internal calls for constructing CultureInfo and
29021         related objects from libicu (if its available.)
29023 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
29025         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
29027 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29029         * threadpool.c: added an argument to async_invoke_thread that is the
29030         item to process, pass the MonoAsyncResult to the thread start function
29031         when creating a new thread. This way we don't need to acquire any lock
29032         when we're creating a new thread. Readded a semaphore for faster
29033         response times (instead of that Sleep i added).
29035 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
29037         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
29038         get daylight change dates better on Windows, fix handling
29039         of platforms without tm_gmtoff.
29041 2003-10-06  Martin Baulig  <martin@ximian.com>
29043         * class.c (inflate_generic_method): Renamed to
29044         mono_class_inflate_generic_method() and made public.
29045         (mono_class_init): Don't inflate the generic methods here.
29046         (mono_class_from_generic): Added `gboolean inflate_methods'
29047         argument.  Inflate the methods here.
29049         * loader.c (mono_method_get_param_names): Ignore instances of
29050         generic types for the moment.
29052         * reflection.c (fixup_method): Added support for inflated methods.
29053         (mono_image_create_token): Use mono_image_get_methodref_token()
29054         for inflated methods.
29055         (mono_custom_attrs_from_param): Ignore instances of generic types
29056         for the moment.
29057         (mono_reflection_bind_generic_parameters): New public function.
29058         Moved all the functionality from
29059         ves_icall_Type_BindGenericParameters() here and added support for
29060         dynamic types.
29061         (mono_reflection_define_generic_parameter): Initialize
29062         `klass->methods' here.
29064         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
29065         functionality into mono_reflection_define_generic_parameter().
29066         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
29067         TypeBuilder, return that TypeBuilder.
29069 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29071         * appdomain.c: removed mono_delegate_semaphore.
29073         * threadpool.c:
29074         (mono_thread_pool_add): moved hash table creation inside and the thread 
29075         creation outside of the critical region.
29076         (mono_thread_pool_finish): removed obsolete code.
29077         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
29078         continue or exit the thread depending on the queue.
29080 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
29082         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
29083         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
29084         handle more bool marshalling options
29086 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
29088         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
29089         arrays of structs. Also add a more descriptive error message when
29090         a structure member is marshalled as LPArray.
29092 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
29094         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29095         marshalling arrays of complex types. Fixes #29098. Also remove an
29096         usused and incomplete function.
29098 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29100         * gc.c: report heap_size - free_bytes as total memory allocated
29101         (bug#49362).
29103 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
29105         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
29106         fix timezone handling problems on Windows.
29107         
29108         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
29109         asserts when the year is outside the range handled by ms the functions.
29111         * class.c (setup_interface_offsets): If the class is an interface,
29112         fill out its interface_offsets slot.
29114 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29116         * threadpool.c: mark threadpool threads as background.
29118 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
29120         * decimal.c - define DECINLINE to nothing if not using GCC
29122 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
29124         * assembly.c: More refcount fixes.
29126 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29128         * string-icalls.c: if we're not trimming, return the same string.
29129         When not splitting, don't create a new string.
29131 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29133         * image.c:
29134         (mono_image_open): increment the ref_count inside the critical section.
29136 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
29138         * image.c (mono_image_open): Fix reference counting bug.
29140 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
29142         * marshal.c (mono_marshal_type_size) struct alignment changed for 
29143         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
29144         64bits. Avoid leak in mono_marshal_get_native_wrapper when
29145         mono_lookup_pinvoke_call throws.        
29147 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
29149         * reflection.c (mono_reflection_parse_type): Fix #49114.
29151         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
29152         temporary workaround for cygwin header problem.
29154         * object.c (mono_object_isinst): Synchronize this with the code
29155         generated by the JIT for casts.
29157 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
29159         * reflection.c (encode_type): Fix #38332.
29161 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
29163         * marshal.c (mono_marshal_method_from_wrapper): New function to return
29164         the original method from the wrapper method.
29166 2003-09-25  Martin Baulig  <martin@ximian.com>
29168         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
29169         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
29170         (ves_icall_Type_get_IsGenericInstance): New interncall.
29172 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
29174         * object.c: fix cast warning in big endian code.
29176 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
29178         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
29179         
29180 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29182         * assembly.c: don't call check_env from mono_assembly_load. It's
29183         already done once in mono_assemblies_init and may cause headaches when
29184         multiple threads are loading assemblies.
29186 2003-09-19  Martin Baulig  <martin@ximian.com>
29188         * reflection.c (mono_reflection_define_generic_parameter): Don't
29189         allocate `klass->methods', set `klass->flags' to
29190         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
29192 2003-09-18  Martin Baulig  <martin@ximian.com>
29194         * class.c (mono_class_init): Don't create `class->methods' if it's
29195         already initialized.
29197         * metadata.c (mono_metadata_load_generic_params): Make this
29198         actually work.
29200         * reflection.c (mono_reflection_define_generic_parameter): Set
29201         parent class and interfaces from the constraints.
29203         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
29204         to keep this struct in sync with the declaration in TypeBuilder.cs.
29206 2003-09-17  Martin Baulig  <martin@ximian.com>
29208         * metadata.h (MonoType): Replaced the data's `int type_param'
29209         field with `MonoGenericParam *generic_param'.
29210         (MonoGenericParam): Added `MonoClass *klass'.
29212         * class.c (mono_class_from_gen_param): Removed the
29213         `MonoImage *image' and `int type_num' arguments.
29215         * metadata.c (mono_metadata_parse_generic_param): New static
29216         method; creates a MonoGenericParam which just contains the index.
29217         (do_mono_metadata_parse_type): Call
29218         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
29219         MONO_TYPE_MVAR.
29221         * reflection.c (mono_image_typedef_or_ref): Generic type
29222         parameters may be in the same assembly, but never use a typedef
29223         for them.
29224         (mono_reflection_define_generic_parameter): We're now creating a
29225         "real" class for the type parameter; it's now safe to call
29226         mono_class_from_mono_type() on the class'es type, it'll do the
29227         right thing.
29229 2003-09-16  Martin Baulig  <martin@ximian.com>
29231         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
29232         `symfile->range_entry_size' and `symfile->class_entry_size' here;
29233         the `symfile' data structure must be fully initialized before it
29234         gets added to the table.
29236 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
29238         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
29240         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
29241         class init trampolines.
29243 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
29245         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
29246         to the built-in profiler to turn off time and allocation profiling
29247         respectively.
29249 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
29251         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
29252         g_direct_equal.
29254         * debug-helpers.c (mono_method_full_name): Print the wrapper type
29255         in human readable form.
29257 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
29259         * reflection.c icall.c: Fixed warnings.
29261         * image.c (load_class_names): Use a temporary hash table to hold the
29262         namespaces in order to avoid doing many string comparisons.
29264         * image.h: Fix typo.
29266         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
29267         Pass NULL instead of g_direct_equal to the GHashTable constructor 
29268         since the NULL case is short-circuited inside g_hash_table_lookup, 
29269         leading to better performance.  
29271         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
29272         obtain the first custom attribute for a given index. Depends on the
29273         CustomAttribute table being sorted by the parent field.
29275         * reflection.c (mono_custom_attrs_from_index): Use the new function 
29276         for better performance.
29278 2003-09-07  Martin Baulig  <martin@ximian.com>
29280         * class.c (mono_class_init): If we're a generic instance, inflate
29281         all our methods instead of loading them from the image.
29282         (mono_class_from_generic): Set `class->methods = gklass->methods'.
29284 2003-09-07  Martin Baulig  <martin@ximian.com>
29286         * mono-debug-debugger.c: Added support for constructors.
29288 2003-09-06  Martin Baulig  <martin@ximian.com>
29290         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
29291         New interncall.
29293         * reflection.c (mono_reflection_setup_generic_class): Call
29294         ensure_runtime_vtable() to create the vtable.
29296 2003-09-05  Martin Baulig  <martin@ximian.com>
29298         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
29299         MONO_TYPE_MVAR.
29301 2003-09-04  Martin Baulig  <martin@ximian.com>
29303         * reflection.c (mono_reflection_define_generic_parameter): Generic
29304         parameters start with zero.
29306 2003-09-04  Martin Baulig  <martin@ximian.com>
29308         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29310         * reflection.h (MonoReflectionGenericParam): New typedef.
29311         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
29312         the generic parameters from the managed TypeBuilder.
29314         * reflection.c (mono_reflection_define_generic_parameter): New function.
29315         (mono_reflection_create_runtime_class): Encode generic parameters.
29316         (mono_reflection_setup_generic_class): New function; this is
29317         called after adding adding all generic params to the TypeBuilder.
29318         (encode_type): Added MONO_TYPE_VAR.
29320 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
29322         * class.h class.c (mono_class_needs_cctor_run): Moved this method
29323         here from the JIT.
29325         * assembly.h assembly.c: Moved the AOT loading code into an assembly
29326         load hook.
29328 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
29330         * reflection.h reflection.c class.h class.c: Delete duplicate 
29331         definition of mono_type_get_name () from reflection.c and export the
29332         one in class.c.
29334         * class.c: Class loading fixes from Bernie Solomon 
29335         (bernard@ugsolutions.com).
29337         * reflection.c: Endianness fixes from Bernie Solomon 
29338         (bernard@ugsolutions.com).
29339         
29340 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
29342         * assembly.h assembly.c: Define a file format version for AOT
29343         libraries.
29344         
29345         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
29347         * appdomain.h (MonoJitInfo): New field to determine whenever the
29348         code is domain neutral.
29349         
29350 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
29352         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
29354 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
29356         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
29357         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
29358         Avoid caching the result since strings must be domain specific. Fixes
29359         #48050.
29361 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
29363         * marshal.c (mono_marshal_init): Make this callable multiple times
29364         since it is hard to find a correct place to call it.
29366         * object.c (mono_runtime_class_init): Execute static constructors in
29367         the correct appdomain.
29369         * image.c (build_guid_table): Handle the case when multiple images have
29370         the same GUID.
29372 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29374         * icall.c: added a couple of icalls for System.Web.
29376 2003-08-28  Martin Baulig  <martin@ximian.com>
29378         * icall.c (ves_icall_Type_BindGenericParameters): Use
29379         `klass->generic_inst' instead of `&klass->byval_arg' in the
29380         mono_type_get_object() call.  The returned type must be
29381         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
29383 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
29385         * NOTES: New file.
29387         * object.c (mono_class_proxy_vtable): Make it thread safe.
29389         * pedump.c: Fix warning.
29391         * object.c appdomain.h: Get rid of metadata_section. 
29392         It is no longer needed and it was causing deadlocks with domain->lock.
29394         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
29396 2003-08-26  Martin Baulig  <martin@ximian.com>
29398         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
29400 2003-08-26  Martin Baulig  <martin@ximian.com>
29402         * pedump.c (main): Call mono_metadata_init(),
29403         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
29404         and mono_loader_init().
29406 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
29408         * loader.h: Add missing include to fix build.
29410         * image.h: mono_image_load_references is no more.
29412         * assembly.c: Reworked assembly loading to make it really thread safe.
29413         After these changes, the assembly returned by mono_assembly_open is
29414         fully initialized, i.e. all its references assemblies are loaded.
29416         * assembly.c (mono_image_load_references): Renamed to 
29417         mono_assembly_load_references, and made private, since clients no
29418         longer need to call it.
29420         * class.c: Removed calls to mono_assembly_load_references, since it was
29421         a source of deadlocks.
29423         * loader.h loader.c class.h class.c: Protect data structures using a 
29424         new lock, the loader lock.
29426         * class.c (mono_class_setup_vtable): Create temporary hash tables and
29427         GPtrArrays only when needed.
29429         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
29430         into empty structures by mcs. Fixes pinvoke7.cs.
29431         
29432         * domain.c (mono_init): Call a new initialization function.
29434         * appdomain.c (mono_runtime_init): Call the new initializer function
29435         of the marshal module.
29437         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
29438         inserted into empty structures by mcs. Fixes pinvoke7.cs.
29440         * marshal.h marshal.c: Added locks around the wrapper caches to make
29441         this module thread safe.
29443         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
29444         this argument. Fixes pinvoke1.exe.
29446 2003-08-25  Lluis Sanchez <lluis@ximian.com>
29448         * object.h: Added call_type field to MonoMethodMessage and the corresponding
29449         enumeration of values. Removed fields to store remote call output values in
29450         MonoAsyncResult. Not needed any more.
29451         * object.c: Initialize call_type and async_result fields in mono_message_init.
29452         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
29453         dispatching the message.
29454         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
29455         async call to finish. To do it use a message with EndInvoke call type.
29457 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
29459         * loader.h loader.c (mono_method_hash_marhal_info): New function which
29460         determines whenever a method has marshalling info.
29462 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29464         * assembly.c: fix the build on windows.
29466 2003-08-22 Lluis Sanchez <lluis@ximian.com>
29468         * object.cs: Fixed bug #47785.
29470 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
29472         * string-icalls.c (StringReplace): If their are no occurances of
29473         the old string found return a reference to the supplied
29474         string. This saves some memory and matches MS behavoir.
29475         
29476 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29478         * socket-io.c: fixed compilation for systems that define AF_INET6
29479         and don't define SOL_IP/SOL_IPV6.
29481 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
29483         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
29484         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
29486         * rawbuffer.c rawbuffer.h: Make this module thread safe.
29488         * domain.c: Make this module thread safe.
29490         * domain.c (mono_init): Call new initialization function.
29492         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
29493         reference types too. Fixes #38812.
29495         * image.c (mono_image_init): Fixed warnings.
29497         * class.c (mono_class_from_typeref): Handle assembly load failure
29498         correctly.
29500         * appdomain.c (add_assemblies_to_domain): Handle the case when
29501         the references of an assembly are not yet loaded.
29503         * metadata.c image.c assembly.c: Moved initialization of global
29504         variables to a separate function called at startup since lazy 
29505         initialization of these variables is not thread safe.
29506         
29507         * image.c assembly.c: Made this module thread safe by adding locks in 
29508         the appropriate places.
29510         * domain.c (mono_init): Call the new initialization functions of the
29511         three modules.
29513 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
29515         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
29516           make a direct call. It is proxy's work to make the call asynchronous.
29517           mono_delegate_end_invoke(): If the targe is a proxy, just collect
29518           the return values.
29519         * object.cs: mono_method_call_message_new(): read AsyncResult and
29520           state object from parameters list, if this info is requested.
29521         * object.h: Added fields to store remote call output values in
29522           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
29524 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29526         * object.h: add needed fields to MonoThread.
29527         * threads.c, threads.h: allow registering a function to cleanup data
29528         allocated per thread by the JIT.
29530 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29532         * loader.h: portability fix by Bernie Solomon
29533         * <bernard@ugsolutions.com>.
29535 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29537         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29538         return a MonoArray. This simplifies the code and also ensures that
29539         the cache allways contains an object reference as a value.
29541         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29542         function.
29544 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29546         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29547         fixes a problem with byte ordering when getting the address family for
29548         a socket.
29550 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29552         * .cvsignore: Added monosn.
29554         * reflection.h reflection.c loader.c: Added support for parameter
29555         marshalling to dynamically created types. Fixes #47295.
29557 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29559         * rand.c: remove useless warnings.
29561 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29563         * class.c: implemented ldtoken for methods and fieldrefs.
29565 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29567         * threadpool.c: when mono_async_invoke was called, no one took care of
29568         monitoring the queue. So if the method invoked took some time and we
29569         got new async invoke requests after 500 ms (the thread created waited
29570         that long in WaitForSingleObject), the new async invoke was not called
29571         until the previous one finished.
29573         This is fixed now. Thanks to Totte for helping with it.
29575 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29577         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29579 2003-08-11  Martin Baulig  <martin@ximian.com>
29581         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29583 2003-08-06  Martin Baulig  <martin@ximian.com>
29585         * mono-debug-debugger.c: Added support for static fields,
29586         properties and methods.
29588 2003-08-06  Martin Baulig  <martin@ximian.com>
29590         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29591         make this work for applications with multiple application domains.
29593 2003-08-04  Martin Baulig  <martin@ximian.com>
29595         * mono-debug-debugger.c: Completely reworked the type support; the
29596         most important thing is that we're now just using one single
29597         `MonoType' instance per type.
29599 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29601         * mono-endian.h, mono-endian.c, icall.c: Added icall
29602         ves_icall_System_Double_AssertEndianity to assert double word endianity
29603         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29605 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29607         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29608         support, icalls and fixes.
29610 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29612         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29613         classes that are a punctuation character in .NET is not the same a
29614         g_unichar_ispunct.
29616 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29618         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29620 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29622         * icall.c: Add new MemCopy internalcall.
29623         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29624         Simplified code; It is not necessary to handle all the cases here,
29625         as the C# code takes care of it.  Only handle the case of the name
29626         resource embedded into the assembly.
29628         Changed signature to return the data pointer and the size of the
29629         data. 
29631 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29633         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29634         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29636 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29638         * socket-io.c: ignore EINTR error in select.
29640 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29642         * class.h, class.c: removed unused subclasses field in MonoClass.
29644 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29646         * icall.c: improve fix of get_base_definition(). If the parent class
29647           doesn't have the mehod, look at the parent of the parent.
29648         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29649           to check if a parameter is an in or out parameter
29650           (PARAM_ATTRIBUTE_IN is not set by default).
29651           mono_method_return_message_restore(): Use mono_class_value_size to
29652           get the size of a value type. mono_type_stack_size (parameterType)
29653           does not return the correct value if parameterType is byRef.
29654           mono_load_remote_field(), mono_load_remote_field_new(),
29655           mono_store_remote_field(), mono_store_remote_field_new():
29656           raise exception if the remote call returns an exception.
29658 2003-07-28  Martin Baulig  <martin@ximian.com>
29660         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29661         method.  This is a wrapper around mono_runtime_invoke() which
29662         boxes the instance object if neccessary.
29664 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29666         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29667         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29669 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29671         * icall.c: disable mcs bug workaround.
29673 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29675         * object.c (mono_runtime_class_init): Take the metadata_section
29676         mutex before obtaining the domain mutex.
29678         * appdomain.h: Added definition of metadata_section mutex here. 
29680         * object.c: define metadata_mutex here.
29682 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29684         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29685         fixed.
29687 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29689         * reflection.c: Fix bug #46669
29691 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29693         * exception.c:
29694         * exception.h:
29695         * icall.c:
29696         * object.h: fill in the type name for TypeLoadException.
29698 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29700         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29701         relationship between TypeBuilders while compiling corlib) and bug
29702         45993 (Array types returned from the runtime while compiling
29703         corlib were from the loaded corlib).
29705 2003-07-22  Martin Baulig  <martin@ximian.com>
29707         * mono-debug-debugger.c: Reworked the type support a bit more;
29708         distinguish between types and classes.
29710 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29712         * icall.c: add IsArrayImpl icall.
29714 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29716         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29717         initializing real_size only once. Also fix bug #46602.
29719 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29721         * object.c: Renamed mono_metadata_section to metadata_section.
29723 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29725         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29726           empty array if the type is an array. Fixed.
29727           ves_icall_MonoMethod_get_base_definition: if the base method
29728           is abstract, get the MethodInfo from the list of methods of
29729           the class.
29730         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29731           and it was 1-based. Fixed in mono_param_get_objects.
29733 2003-07-20  Martin Baulig  <martin@ximian.com>
29735         * mono-debug.h: Set version number to 31.
29736         (mono_debug_init): Added `MonoDomain *' argument.
29738         * mono-debug-debugger.c: Reworked the type support; explicitly
29739         tell the debugger about builtin types; pass the `klass' address to
29740         the debugger.
29742 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29744         * image.c: Allow new metadata tables to be loaded without a
29745         warning. Also update the warning message to give the new constant value.
29746                 
29747 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29749         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29750         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29751         array type representation changes.
29753 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29755         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29756         on Environment.Exit () call.
29758 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29760         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29761         requires a matching corlib.
29763 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29765         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29766           Committed again without the CRs.
29767         
29768 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29770         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29771           getting it from the "this" socket instance. Did not work
29772           if the socket is a subclass of Socket.
29773           Also fixed bug #35371.
29775 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29777         * metadata.c: fixed size for TypedByRef.
29778         * loader.c: when searching for a method, consider the vararg amrker.
29779         * unicode.c, decimal.c: constify some arrays.
29781 2003-07-15  Dick Porter  <dick@ximian.com>
29783         * socket-io.c: Fixed compilation for gcc < 3.2.
29785         Fixed compilation for machines that don't have AF_INET6 (thanks to
29786         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29788         Fixed compile warnings.
29789         
29790         Fixed formatting and line endings.
29792 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29794         * socket-io.h:
29795         * socket-io.c: Added IPv6 support.
29797 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29799         * class.c (mono_class_is_assignable_from): New function to implement
29800         the is_assignable_from logic. Used by mono_object_isinst, 
29801         Type::IsAssignableFrom () and the interpreter.
29803         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29804         Object, even interfaces.
29805         
29806         * object.c (mono_object_isinst): Implement in terms of 
29807         is_assignable_from.
29809         * icall.c (ves_icall_type_is_assignable_from): New icall.
29811 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29813         * domain.c (foreach_domain): fix compiler warning.
29815 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29817         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29818         not available on all plattforms
29820 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29822         * image.h image.c: Store the metadata version string in MonoImage.
29823         * icall.c: New icall to retrieve the image version.
29824         * reflection.c (create_dynamic_image): Fill in the image version field
29825         * reflection.c (build_compressed_metadata): Use the image version
29826         from the image structure.
29828 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29830         * appdomain.c: modified comment.
29831         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29832         That will be its last iteration when mono_gc_cleanup is called from
29833         mono_runtime_cleanup and before the domain is unloaded.
29835         Fixes bug #45962.
29837 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29839         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29840         attributes.
29842 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29844         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29845         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29846         Bernie Solomon <bernard@ugsolutions.com>.
29848 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29850         * object.c, object.h: provide mono_object_new_fast() for faster
29851         allocation in some special cases.
29853 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29855         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29856         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29858 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29860         * threadpool.c: fix leaks.
29862 2003-07-01  Dick Porter  <dick@ximian.com>
29864         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29865         using MonoGHashTables.  Fixes threadpool bug posted to list.
29867 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29869         * image.h, image.c: added support to load an assembly from a byte array.
29870         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29871         assembly bundle support.
29873 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29875         * threadpool.c (mono_thread_pool_add): keep a reference to the
29876         AsyncResult to prevent GC
29878 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29880         * class.c: leak fix.
29882 2003-06-25  Dick Porter  <dick@ximian.com>
29884         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29885         for the async object, the WaitHandle object will close the handle.
29886         Fixes bug 45321.
29888 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29890         * class.c: in mono_array_class_get (), lookup from the hash with the
29891         same type we insert: this works around a bug in
29892         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29893         lluis. The real fix will have to wait for after the release.
29895 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29897         * icall.c: fix memory leak when getting type members.
29899 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29901         * reflection.c: added more pubtoken special cases.
29903 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29905         * class.c: handle field offset correctly when class size
29906         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29908 2003-06-20  Martin Baulig  <martin@ximian.com>
29910         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29911         *image' field.
29913 2003-06-20  Martin Baulig  <martin@ximian.com>
29915         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29917 2003-06-20  Martin Baulig  <martin@ximian.com>
29919         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29920         just distinguish between variables in registers and variables at
29921         an offset relative to a register.
29923 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29925         * icall.c: #ifdef out latest changes until mcs is fixed.
29927 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29929         * icall.c: return members in metadata order.
29931 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29933         * icall.c: avoid infinite loop in GetTimeZoneData.
29935 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29937         * icall.c: added Marshal.Prelink/All icalls.
29939 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29941         * object.c, object.h: fix warnings and do some overflow checking
29942         when creating arrays.
29944 2003-06-17  Dick Porter  <dick@ximian.com>
29946         * file-io.h:
29947         * file-io.c: File attributes need to be tweaked slightly when
29948         passed from the managed to the w32 world.
29950 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29951         * profiler.h profiler-private.h profiler.c: Rework last patch
29952         based on suggestion by Paolo.
29953         
29954 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29956         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
29957         instruction level coverage data collection.
29958         * profiler.h profiler.c (: Added new callback function which can be
29959         used by the profiler to limit which functions should have coverage
29960         instrumentation.
29961         * profiler.c (mono_profiler_load): Call g_module_build_path to
29962         generate the file name of the profiler library.
29964 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29966         * profiler.c, profiler.h, profiler-private.h: added basic block 
29967         coverage profiling API.
29969 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
29971         * reflection.c (mono_reflection_create_runtime_class): Add support
29972         for events in dynamically generated code.
29974         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
29975         not allocated.
29977 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29979         * icall.c: when getting timezone info, return reasonable values if we
29980         can't get the actual data.
29982 2003-06-14  Dick Porter  <dick@ximian.com>
29984         * threads.c (start_wrapper): Remove the reference to the thread
29985         object in the TLS data, so the thread object can be finalized.
29986         This won't be reached if the thread threw an uncaught exception,
29987         so those thread handles will stay referenced :-( (This is due to
29988         missing support for scanning thread-specific data in the Boehm GC
29989         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
29991 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29993         * reflection.c: ensure streams and tables are first allocated with
29994         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29996 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29998         * icall.c: fixed GetElementType for byrefs (bug# 44792).
30000 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
30002         * reflection.c (mono_reflection_create_runtime_class): Add support for
30003         properties to dynamically created classes.
30004         * reflection.c: Fix a few places where non-MonoObjects were inserted
30005         into the tokens hashtable.
30007 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30009         * object.c: some support to handle out of memory exceptions.
30011 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
30013         * marshal.c (mono_marshal_get_native_wrapper): support reference
30014         return types
30016 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30018         * object.h, object.c: more portability stuff from Bernie Solomon.
30019         Unexport mono_object_allocate(). Added mono_object_unbox ().
30020         Set exitcode when an unhandled exception is thrown.
30022 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
30024         * marshal.c (mono_marshal_get_native_wrapper): use custom
30025         marshaler for return types.
30027 2003-06-10  Dick Porter  <dick@ximian.com>
30029         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
30030         ip_mreq is available
30032 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
30034         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
30035         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
30036         by Bernie Solomon <bernard@ugsolutions.com>.
30038 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
30040         * gc.c (mono_gc_init): Avoid error message on shutdown when
30041         GC_DONT_GC=1 is used.
30043         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
30044         New icall to return the GUID of a module.
30046 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30048         * class.c: ensure instance size always includes the parent's size
30049         even whem class size is set explicitly (fixes bug#44294).
30051 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30053         * profiler.h, profiler.c: made the simple profiler thread-safe,
30054         get more accurate timing info. Allow the loading of an
30055         externally-developed profiler module.
30057 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
30059         * marshal.c (mono_marshal_get_native_wrapper): improved
30060         class/byref arguments.
30061         (mono_marshal_get_native_wrapper): better string marshaling support.
30063 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
30065         * class.c: ensure .pack and .size are handled correctly and
30066         simplified layout of static fields.
30068 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
30070         * appdomain.c
30071         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
30073         * loader.c (mono_lookup_pinvoke_call): look for modules in the
30074         current directory (fix bug 44008)
30076 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
30078         * marshal.c (mono_marshal_get_native_wrapper): started support for
30079         custom marshalers.
30080         (mono_delegate_to_ftnptr): consider marshalling specifications
30082 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
30084         * reflection.c, reflection.h: emit custom marshal info.
30086 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30088         * object.c: free the GError.
30089         * icall.c: added CloseEvent_internal.
30090         * threads.[ch]:
30091         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
30092         call.
30094 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
30096         * loader.c (mono_method_get_signature): Add support for dynamic
30097         assemblies.
30099 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
30101         * reflection.c: fixed bug #43905.
30103 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30105         * class.c, domain.c, icall.c, metadata.h, object.h: support for
30106         handling TypedReference and ArgIterator.
30107         * loader.c, loader.h: added function to get signature at call site.
30109 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30111         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
30112         data readonly. Buglets and warning fixes. Some MethodSpec support.
30114 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30116         * class.h, class.c, object.c: remove relative numbering support.
30118 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
30120         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
30121         free the string, until we get a chance to fix Gtk#
30123 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30125         * marshal.c: revert last patch.
30127 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
30129         * icall.c: updates for new mono_class_vtable() not calling
30130         the type constructor anymore.
30132 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30134         * object.h, object.c: separate vtable creation from type
30135         initialization. Make running the .cctor thread safe.
30137 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
30139         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
30141 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
30143         * loader.c (mono_get_method): consider calling convention
30145 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
30147         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
30148         to return the invisible global type for a module.
30150         * reflection.c (mono_image_build_metadata): Emit global fields too.
30152 2003-05-20  Peter Williams  <peterw@ximian.com>
30154         * loader.c (mono_lookup_internal_call): Add a few newlines.
30156 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
30158         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
30159         literal strings.
30161         * appdomain.c (set_domain_search_path): Recalculate search path when
30162         AppDomainSetup.PrivateBinPath changes.
30164         * object.c (mono_class_compute_gc_descriptor): It turns out some
30165         parts of the class libs (like System.Thread) holds pointers to
30166         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
30167         to treat native int a pointer type here.
30168         
30169 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
30171         * appdomain.h, domain.c: add hashtable for jump target resolution.
30173 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
30175         * reflection.h reflection.c icall.c: Added new icalls 
30176         GetManifestResourceInfoInternal, GetModulesInternal and support
30177         infrastructure.
30179 2003-05-16  Dick Porter  <dick@ximian.com>
30181         * icall.c:
30182         * file-io.h:
30183         * file-io.c: Implement System.IO.MonoIO::GetTempPath
30185 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
30187         * object.c: mono_store_remote_field: little fix to previous patch.
30189 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30191         * class.c: add constructors to array classes.
30192         * icall.c: special case array construction for InternalInvoke (),
30194 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
30196         * class.h class.c reflection.c object.c: Added support for field
30197         defaults in dynamically generated classes.
30199 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
30201         * reflection.c: properly encode charset for ddlimport.
30203 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
30205         * threads.c: allow compiling without GC.
30207 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30209         * appdomain.h, object.c, object.h, threads.c, threads.h: added
30210         handling of thread static data.
30212 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30214         * reflection.h, reflection.c: added mono_custom_attrs_free ().
30216 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
30218         * class.c (mono_array_class_get): always set the serializable flags
30219         (mono_array_class_get): always set the SEALED attribute for array types
30221 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
30223         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
30224         attributes (fix for bug 42021).
30226 2003-05-12  Dick Porter  <dick@ximian.com>
30228         * gc.c: Don't run finalizers when the finalizer thread is
30229         finishing up, because the default domain has already been
30230         destroyed.
30232 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
30234         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
30235         value is null, we should throw an exception.   This is slightly
30236         different than the other conventions used for the constructor.
30238 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30240         * socket-io.c: fixed windows build.
30242 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30244         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
30246 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
30248         * object.c (mono_string_new_wrapper): Compatibility fix for MS
30249         compilers.
30251 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
30253         * class.c (mono_class_layout_fields): Add experimental GC aware
30254         auto layout facility. Requires class library changes to work correctly.
30256         (mono_class_setup_vtable): Avoid overriding explicit interface
30257         method implementations. Fixes iface3.exe test.
30259         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
30260         object reference.
30261         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
30262         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
30264         * metadata.h: Add new type classification macro which determines
30265         whenever the type holds an object reference.
30267 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
30269         * marshal.c (mono_marshal_get_native_wrapper): cleanups
30271 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
30273         * gc.c (finalizer_thread): Work around a GC bug.
30275 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
30277         * marshal.c (emit_struct_conv): allow unions
30279         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
30281 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
30283         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
30285 2003-05-06  Martin Baulig  <martin@ximian.com>
30287         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
30289 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30291         * socket-io.c:
30292         (Select_internal): allow NULLs, don't create arrays if not needed.
30293         Coupled with Socket.cs changes.
30295         * threadpool.c:
30296         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
30297         register a finalizer for it that will close the semaphore handle. This
30298         fixes the leak and make Lupus' test run with > 4080 loops.
30300 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
30302         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
30303         Jerome Laban (bug #42287)
30305 2003-05-02  Martin Baulig  <martin@ximian.com>
30307         * debug-mono-symfile.h
30308         (MonoSymbolFile): Moved declaration into mono-debug.h.
30309         (MonoDebugMethodJitInfo): Likewise.
30310         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
30311         argument.
30312         (_mono_debug_address_from_il_offset): Take a
30313         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
30315         * mono-debug.h
30316         (MonoDebugDomainData): New struct.
30317         (mono_debug_get_domain_data): New function.
30318         (mono_debug_add_method): Take an additional `MonoDomain *'
30319         argument.
30320         (mono_debug_source_location_from_address): Likewise.
30321         (mono_debug_il_offset_from_address): Likewise.
30322         (mono_debug_address_from_il_offset): Likewise.
30324 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
30326         * reflection.c: one more check for null type in custom attrs.
30328 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30330         * reflection.c: avoid warning (comparison is always false due to limited
30331         range of data type).
30333 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30335         * icall.c: throw an exception in Type.GetField if the argument 'name'
30336         is NULL.
30338 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
30340         * reflection.c: fixed handling of enums in named arguments to custom
30341         attributes (bug #42123).
30343 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
30345         * reflection.c: use the right array element type and handle
30346         a null for a Type argument, too.
30348 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
30350         * reflection.c: handle arrays as arguments to custom attributes.
30352 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30354         * reflection.c: handle a string value in a custom attr
30355         ctor that takes an object.
30357 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
30359         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
30360         (fix bug #42063)
30362 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
30364         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
30366 2003-04-27  Martin Baulig  <martin@ximian.com>
30368         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
30369         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
30370         MONO_DEBUGGER_EVENT_BREAKPOINT.
30371         (mono_breakpoint_trampoline_code): Removed.
30372         (mono_debugger_event_handler): The last argument is now a
30373         `guint32'.
30374         (mono_debugger_insert_breakpoint_full): Removed the
30375         `use_trampoline' argument.
30376         (mono_debugger_method_has_breakpoint): Likewise.
30377         (mono_debugger_trampoline_breakpoint_callback): Renamed to
30378         mono_debugger_breakpoint_callback(); take the method and
30379         breakpoint number as arguments.
30381 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
30383         * metadata.c: fix off by one when loading parameters attributes.
30385 2003-04-24  Martin Baulig  <martin@ximian.com>
30387         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
30389 2003-04-24  Martin Baulig  <martin@ximian.com>
30391         * mono-debug-debugger.c: Moved all code which interacts with the
30392         Mono Debugger here.
30394         * debug-mono-symfile.c: This code now just deals with the symbol
30395         file itself, the debugger code is now in mono-debug-debugger.c.
30397 2003-04-23  Martin Baulig  <martin@ximian.com>
30399         * mono-debug.c (mono_debug_source_location_from_il_offset):
30400         New method; like mono_debug_source_location_from_address(), but
30401         takes an IL offset instead of a machine address.
30403 2003-04-23  Martin Baulig  <martin@ximian.com>
30405         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
30406         `line' field; this is now computed by the debugger.
30408 2003-04-23  Martin Baulig  <martin@ximian.com>
30410         * mono-debug.[ch]: New files.  This is the new debugging interface.
30412         * mono-debug-debugger.[ch]: New files.  Moved all code which
30413         interacts with the Mono Debugger here.
30415 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
30417         * domain.c (mono_init): initialize mono_defaults.monitor_class
30419 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
30421         * reflection.c (method_encode_code): Add a spicy exception to help
30422         future compiler authors.
30424 2003-04-21  Martin Baulig  <martin@ximian.com>
30426         * icall.c
30427         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30428         Make this work with relative pathnames; g_filename_to_uri() needs
30429         an absolute filename.
30431 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
30433         * icall.c: Track name changes in Object and ValueType.
30435 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
30437         * metadata.c (mono_type_stack_size): size should be a multiple of
30438         sizeof (gpointer)
30440 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30442         * gc.c:
30443         (internal_domain_finalize): moved into mono_domain_finalize. No need
30444         to create another thread because the finalizers will be run in the
30445         finalizer thread.
30446         
30447         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
30448         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
30449         to be run (MS does this too).
30451 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
30453         * object.c (mono_class_compute_gc_descriptor): Update comment.
30455         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
30457         * image.h: Add synchronized wrapper cache.
30459         * image.c (do_mono_image_open): Initialize cache.
30461         * reflection.c (create_dynamic_mono_image): Initialize cache.
30463 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30465         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
30466         ves_icall_System_Buffer_ByteLengthInternal.
30468 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30470         * reflection.c: setup klass->nested_in earlier. Allow
30471         a dash in the assembly name.
30473 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
30475         * metadata.c (mono_type_to_unmanaged): dont access
30476         type->data.klass for MONO_TYPE_OBJECT
30477         (mono_type_to_unmanaged): consider System.Delegate class
30479 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
30481         * class.c: just setup supertypes in the proper place instead of
30482         initializing the full element class for arrays.
30484 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30486         * class.c: ensure the element class of arrays is initialized.
30487         Setup the supertype info for array classes, too.
30489 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
30491         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
30493 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30495         * Makefile.am: re-added -m option when running cygpath. This way,
30496         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
30497         separator.
30498         * mono-config.c: same codepath for locating mono config file for WIN32
30499         and the rest.
30500         * assembly.c: if mono_assembly_setrootdir is called, don't override
30501         the value set.
30503 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30505         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
30506         MONO_ASSEMBLIES variable.
30508 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
30510         * icall.c: added Assembly::GetNamespaces() icall.
30512 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30514         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
30516 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
30518         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
30519         * object.c: fixed bug in the construction of vtable for proxies
30521 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
30523         * object.c (mono_array_new): Mark mono_array_new as an icall.
30525 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30527         * class.c: fixed test for public method when overriding interfaces.
30528         Closes bug #40970.
30530 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30532         * appdomain.h, domain.c: added mono_domain_foreach() to
30533         be able to access the currently loaded appdomains.
30534         * object.c: make string interning work across sppdomains.
30535         Mark some functions for use as icalls.
30537 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30539         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30541         * reflection.h reflection.c: Allocate long living data using 
30542         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30544         * reflection.c: Double the allocation size in streams instead of
30545         increasing it, to prevent unneccesary copying on large assemblies.
30546         
30547         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30548         creation if the assembly does not have the Run flag set.
30550 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30552         * class.h: avoid the C++ keywords in header files (Jerome Laban
30553         spotted and fixed this).
30555 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30557         * object.c:
30558         (mono_unhandled_exception): fill in the arguments for the
30559         UnhandledException event. Only trigger that event for the default
30560         domain (as MS does).
30562 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30564         * object.c: Improve typed allocation stuff based on suggestions from
30565         Paolo. Also turn it on if the GC library supports it.
30567 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30569         * object.c object.h class.h: Added experimental typed allocation
30570         facility using the interfaces in gc_gcj.h.
30572         * os/gc_wrapper.h: Added new include files.
30573         
30574 2003-04-03  Martin Baulig  <martin@ximian.com>
30576         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30577         which is not yet enabled by default.
30579         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30580         functions.
30581         (mono_gc_lock, mono_gc_unlock): New static functions.
30583         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30584         functions; stop/start the world for the garbage collector.  This
30585         is using the windows API; we need to complete the SuspendThread()/
30586         ResumeThread() implementation in the io-layer to make this work on Unix.
30587         (mono_gc_push_all_stacks): New public function; tells the garbage
30588         collector about the stack pointers from all managed threads.
30590 2003-04-03  Martin Baulig  <martin@ximian.com>
30592         * object.h (MonoThread): Added `gpointer stack_ptr'.
30594         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30596 2003-04-03  Martin Baulig  <martin@ximian.com>
30598         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30600 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30602         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30603         field.last.
30605 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30607         * loader.c (mono_lookup_internal_call): Report the corlib that is
30608         out of sync.
30610 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30612         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30613         System.DBNull (it's class not valuetype).
30615 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30617         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30618         if the array method was already assigned a token (fixes bug#40646).
30620 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30622         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30623         if no assembly is given.
30625 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30627         * metadata.h: Added the new tables.
30629         * row-indexes.h: Added definitions for new tables.
30631         * metadata.c: Add schemas for new tables, and add support for
30632         computing the sizes of them.
30634         * class.c: Update for handling the new type cases.
30636 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30638         * metadata.h (MONO_TYPE_IS_VOID): new macro
30640 2003-03-31  Martin Baulig  <martin@ximian.com>
30642         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30644         * threads.c (mono_thread_new_init): Call `thread_created' in the
30645         mono_thread_callbacks.
30647 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30649         * loader.h: added marshalbyrefobject_class to mono_defaults
30650         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30651         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30652           generation of output parameters.
30653           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30654         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30655           contextbound and the target object belongs to the context of the caller.
30656         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30657         * object.c: Implemented support for interfaces and abstract classes
30658           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30659           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30661 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30663         * class.h class.c (mono_class_is_subclass_of): New function.
30664         
30665         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30666         routines for most common case (calls from ArrayList::ToArray).
30668         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30669         routine so programs which call Environment::Exit() can be profiled.
30671         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30672         Added MONO_ARCH_SAVE_REGS.
30674         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30676 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30678         * blob.h: Add a couple of new MonoType types definitions.
30680         * tabledefs.h: Add a couple of new call convs.
30682 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30684         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30685         the layout of the class.
30687         * reflection.c (alloc_table): double the size on overflow to avoid
30688         unnecessary copying.
30690         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30691         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30692         null so it can be garbage collected.
30693         
30694 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30696         * reflection.c (mono_reflection_get_type): Return the resolved type
30697         only if it is in the assembly we searched.
30699         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30701         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30702         method.
30704 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30706         * appdomain.c:
30707         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30708         the right one is 'file:///blah', but MS allows it.
30709         * assembly.c:
30710         (mono_assembly_open): allow 'file://blah'
30712         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30714 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30716         * socket-io.c: fixes bug #40310.
30718 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30720         * reflection.c (mono_reflection_parse_type): handle deeply nested
30721         types correctly.
30723         * reflection.c (mono_image_create_token): Use unique token values
30724         since they will be put into a hash table.
30726         * class.c (mono_class_setup_vtable): If a method occurs in more than
30727         one place in the vtable, and it gets overriden, then change the
30728         other occurances too.
30730         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30731         object as return type.
30733 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30735         * icall.c: Deleted "ToString" implementation for double and float
30736         because they are full implemented in managed code.
30738 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30740         * reflection.c, reflection.h: implemented and exported functions
30741         to retrieve info about custom attributes.
30743 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30745         * appdomain.c: moved Uri handling to assembly.c
30746         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30747         work when using a file Uri in *nix and windows.
30749         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30750         GetReferencedAssemblies.
30752 2003-03-18  Dick Porter  <dick@ximian.com>
30754         * icall.c: Rename a couple of internal calls
30756         * threads.c: Set the thread state to Stopped when a thread exits.
30757         Fixes bug 39377.
30759 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30761         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30762         New icall.
30764         * object.c (mono_class_vtable): fix warning.
30766 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30768         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30770         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30771         memory.
30772         (method_encode_clauses): Create exception info structures in the right
30773         order.
30774         (mono_reflection_setup_internal_class): Initialize supertypes field.
30776         * class.c object.c: Handle interfaces which implement other interfaces 
30777         correctly.
30779         * class.h class.c: Move the supertypes array initialization code into 
30780         a separate function so it can be used for dynamic types too. Also call
30781         it earlier, in mono_class_init(), since it can be used before the
30782         type is initialized.
30784 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30786         * Makefile.am:
30787         * assembly.c:
30788         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30790         * appdomain.c:
30791         * appdomain.h:
30792         * marshal.c:
30793         * object.c: remove warnings.
30795 2003-03-13  Martin Baulig  <martin@ximian.com>
30797         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30798         (MonoDebugLexicalBlockEntry): New types.
30800         * debug-mono-symfile.c
30801         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30803 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30805         * process.c: ret can be any non-zero value accroding to MS doc.
30807 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30809         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30810         fixing a warning for a miss-used prototype, would have cause
30811         random memory corruption.
30813 2003-03-07  Martin Baulig  <martin@ximian.com>
30815         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30816         getting really annoying ....
30818 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30820         * reflection.c (fixup_method): added support for array methods.
30822 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30824         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30825         (pointed out by Michael Adams).
30827 2003-03-04  Dick Porter  <dick@ximian.com>
30829         * icall.c: Temporarily reverted the Double and Single ToString()
30830         change, because it broke nunit.
30832 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30834         * object.h, threads.h: make include files compatible with C++
30835         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30837 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30839         * icall.c: Erased ToString helper functions for Double and Single.
30840         Now, that implementations ar all in managed code (Double and Single
30841         Formatters).
30843 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30845         * appdomain.c: Added method for initializing the default context of
30846         a domain. Added internal call for getting the default context.
30847         * appdomain.h: Added context variable in MonoDomain struct.
30848         * domain.c: mono_domain_set also sets the default context of the domain
30849         * icall.c: Mapped internal method InternalGetDefaultContext.
30850         * object.c: mono_object_get_virtual_method returns always a remoting
30851         wrapper if the object is a transparent proxy.
30852         mono_runtime_invoke_array: when creating an object by calling the
30853         constructor, if the created object is a proxy, then the constructor should
30854         be called using the a remoting wrapper.
30856 2003-03-03  Dick Porter  <dick@ximian.com>
30858         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30859         variable so it compiles on solaris.  Problem spotted by
30860         Christopher Taylor <ct@cs.clemson.edu>
30862 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30864         * appdomain.c:
30865         (get_info_from_assembly_name): don't leak value.
30867         * icall.c:
30868         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30869         result.
30871 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30873         * assembly.c: export mono_image_load_references ().
30874         * class.c: handle function pointers. mono_class_from_name() now
30875         supports nested type names directly.
30877 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30879         * reflection.h reflection.c: Encode already created dynamic methods 
30880         and fields correctly as a DEF instead of a REF.
30882         * reflection.c: Get rid of the force_ref argument to 
30883         mono_image_typedef_or_ref since it was wrong in the first place.
30885         * string-icalls.c: add error checking to string constructors according
30886         to the MSDN docs.
30888         * reflection.c: Emit types in the order their TypeBuilders were 
30889         created. Previously, a new table index was assigned to each type before
30890         the tables were emitted. This was wrong because the signature blob
30891         might already refer to a type by its original table index.
30893 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30895         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30896         change.
30897         
30898 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30900         * Makefile.am: make assemblies dir have \ instead of / on windows.
30902 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30904         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30905         iterate over the NESTEDCLASS table using a linear search since the
30906         table is not guaranteed to be sorted by the secondary key.
30908         * class.c (mono_class_create_from_typedef): fixed up call to
30909         mono_metadata_nesting_typedef.
30910         
30911 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30913         * marshal.c (mono_string_to_byvalstr): clear the memory as
30914         suggested by Jerome Laban <jlaban@wanadoo.fr>
30916 2003-02-26  Dick Porter  <dick@ximian.com>
30918         * process.c: Cope with padding in .rsrc blocks
30920 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30922         * metadata.h: reverted the filter_len change, it breaks reflection
30923         
30924 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30926         * metadata.h: added a new field to store the filter_len
30927         
30929 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30931         * reflection.c: handle custom attributes for types and members
30932         created with Reflection.Emit (bug#38422).
30934 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30936         * reflection.c: define RTSpecialName automatically for constructors for
30937         compatibility with MS.NET.
30939         * reflection.c (mono_reflection_create_runtime_class): initialize
30940         nested_in field of dynamically created classes.
30942 2003-02-22  Martin Baulig  <martin@ximian.com>
30944         * debug-mono-symfile.h: Incremented version number.
30946 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30948         * object.h icall.c process.c: fix warnings.
30950 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30952         * appdomain.h appdomain.c:
30953         (mono_domain_try_type_resolve): split the 
30954         name_or_tb argument into a name and a tb argument.
30955         (mono_domain_has_type_resolve): new function to check whenever the
30956         application has registered a TypeResolve event handler.
30957         
30958         * icall.c reflection.h reflection.c: move the type resolve logic into
30959         mono_reflection_get_type () so it will be invoked when 
30960         Assembly::GetType () is called.
30962         * reflection.c:
30963         (mono_reflection_get_type): renamed to get_type_internal.
30964         (mono_reflection_get_type): fixed type name generation so it works 
30965         for nested types too.
30966         (mono_reflection_get_type): call has_type_resolve () to avoid the 
30967         costly type name generation if there is no resolve event handler.
30969 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30971         * class.c, image.c: load exported types from file references.
30973 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
30975         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
30976           used to cache the managed methods used to create proxies and make 
30977           remote invocation of methods.
30978         * class.h: Added in MonoVTable a flag to indicate that a class needs 
30979           to be remotely created.
30980         * object.c: Modified the method mono_class_vtable(). It now initializes 
30981           the remote flag of the vtable. Modified mono_object_new_specific(), 
30982           so now it checks the remote flag.
30983         * icall.c: Added a couple of internal methods, one for enabling instance 
30984           creation interception for a type, and one for creating objects bypassing
30985           the remote check.
30987 2003-02-18  Martin Baulig  <martin@ximian.com>
30989         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
30990         New interncall to get a method's metadata token.
30992         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30993         New interncall for the debugger.
30995 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30997         * class.c (mono_class_setup_vtable): allocate supertype array
30999 2003-02-18  Martin Baulig  <martin@ximian.com>
31001         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
31003 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31005         * reflection.c:
31006         (assembly_name_to_aname): jump over unknown properties (i've found
31007         something like: 'type, assembly, version=xxx, custom=null, public...',
31008         so now will ignore custom=null and still get the rest of the values).
31010 2003-02-17  Dick Porter  <dick@ximian.com>
31012         * threads.c: Have Thread.Start() wait for a semaphore to signal
31013         that the thread has set up all its local data.  This fixes bug
31014         34323, where Abort() raced the new thread's TLS data.
31016         Also removes the handle_store() call from start_wrapper, because
31017         threads are now always created suspended and there is no longer a
31018         race between the parent and child threads to store the info.
31020 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
31022         * image.c: explain the #- heap issue in a message, hopefully
31023         avoiding FAQs on mono-list.
31025 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31027         * icall.c:
31028         (GetEntryAssembly): if the domain has not invoked
31029         AppDomain.ExecuteAssembly yet, return the assembly of the default
31030         AppDomain.
31032 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
31034         * class.c (mono_ldtoken): make it work in dynamic assemblies.
31036 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
31038         * metadata.c, reflection.c: simple speedup to type hash
31039         and equals code.
31041 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
31043         * image.c, image.h, class.c, assembly.c: move module loading
31044         to MonoImage. When loading metadata, consider alignemnet from
31045         the start of metadata, not from the metadata address in memory.
31047 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
31049         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
31050         AssemblyBuilder objects. Factored out custom attribute creation into
31051         a separate function.
31052         (create_custom_attr): new function to create custom attributes.
31054 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
31056         * Makefile.am: Got tired of typing the full pathname to pedump.
31057         Until there is another option, am installing this.
31059 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
31061         * class.c (class_compute_field_layout): always set field->parent 
31062         (mono_ldtoken): use mono_defaults.fieldhandle_class;
31064 2003-02-11  Dick Porter  <dick@ximian.com>
31066         * threads-types.h:
31067         * monitor.c: Rewrote Monitor, making lock much faster and
31068         Pulse/Wait work as specified.  Also uses much fewer handles, and only
31069         creates them as needed.
31071         * exception.c: Added SynchronizationLockException
31073         * threads.c: Deleted old Monitor implementation.  The new one is
31074         in a new file.
31076 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
31078         * class.c: handled TypedReference type code. Set the correct size for
31079         class data. Setup interface_offsets for interface classes, too.
31081 2003-02-09  Martin Baulig  <martin@ximian.com>
31083         * debug-mono-symfile.h: Reflect latest symbol writer changes.
31085 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
31087         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
31088         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
31089         * object.c: fixed mono_object_get_virtual_method () for interfaces.
31090         * verify.c: check for code that runs after the end of the method.
31092 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31094         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
31095         "System.Math::Round2".
31096         * sysmath.h: Added Floor, Round and Round2 definitions.
31097         * sysmath.c: Modified certain functions that were not 100% compliant
31098         with MS.NET (math precision) and added the implementation of Floor,
31099         Round and Round2.
31101 2003-02-07  Martin Baulig  <martin@ximian.com>
31103         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
31105 2003-02-07  Martin Baulig  <martin@ximian.com>
31107         * debug-mono-symfile.c: Reflected latest symwriter changes.
31108         (mono_debug_create_mono_symbol_file): Removed.
31109         (mono_debug_open_mono_symbol_file): Take an argument which
31110         specifies whether to create a dynamic symbol file.
31112 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
31114         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
31116 2003-02-05  Martin Baulig  <martin@ximian.com>
31118         * reflection.c (mono_image_build_metadata): Make this public,
31119         protect it against being called multiple times, don't create
31120         resources and don't build the compressed metadata here.
31121         (mono_image_create_pefile): Do this here.
31123         * icall.c
31124         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
31126 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31128         * socket-io.c: fixed bug #36322.
31130 2003-02-06  Piers Haken <piersh@friskit.com>
31132         * appdomain.[ch]:
31133         * class.h:
31134         * debug-mono-symfile.c:
31135         * icall.c:
31136         * loader.c:
31137         * mono-config.c:
31138         * monosn.c:
31139         * reflection.c:
31140         * socket-io.c: warning cleanups
31142 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
31144         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
31145         function. works like remoting invoke, but does a check for the Proxy first.
31147 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
31149         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
31151 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
31153         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
31154         array of pointers.
31155         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
31156         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
31158         * object.c (mono_store_remote_field_new): used by the new jit
31159         instead of mono_store_remote_field
31160         (mono_load_remote_field_new): used by the new jit
31161         instead of mono_load_remote_field
31163 2003-02-05  Patrik Torstensson
31165         * appdomain.c: changed unload to take the domain id instead
31166         of domain
31167         
31168         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
31171 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31173         * appdomain.c: don't look for assemblies in ApplicationBase if
31174         PrivateBinPathProbe is set.
31176 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31178         * object.c: make the first argument in main_args contain the absolute
31179         path to the assembly. Fixes bug #37511.
31181 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31183         * icall.c: get correct UTC offset for countries not using daylight
31184         time saving. Fixes bug #30030.
31186 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31188         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
31189         and 1 are the family).
31191 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
31193         * icall.c (ves_icall_InternalExecute): removed wrong assertion
31195         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
31197 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
31199         * reflection.c: added support for SignatureHelper tokens, which is
31200         needed by the Calli opcode.
31202         * reflection.h: track changes to SignatureHelper class.
31204         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
31206 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31208         * appdomain.c: fixed loading assemblies from PrivateBinPath.
31210 2003-02-03  Patrik Torstensson
31211         * appdomain.[c|h], domain.c : 
31212          - Added support for getting a domain via domain id
31213          - Support for setting and getting domain from System.AppDomain 
31214            (used in cross appdomain channel)
31215          - Added support for get/set for a MonoAppContext on a thread 
31216            (Context class in System.Runtime.Remoting.Contexts),
31217          - Removed hack in Get/SetData and ExecuteAssembly.
31218         
31219         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
31220         the managed world to get control when a proxy is created.
31222         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
31223         
31224 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
31226         * icall.c
31227         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31228         Populate the codebase field as well.
31230 2003-02-02  Martin Baulig  <martin@ximian.com>
31232         * debug-mono-symfile.c
31233         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
31234         (mono_debug_symfile_add_method): Allow interncalls.
31236 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31238         * icall.c: throw parse exception if strtod fails or the string is empty.
31240 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
31242         * marshal.c: handle object type separately from defined
31243         class types.
31245 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
31247         * marshal.c: handle NATIVE_LPSTR for strings when it's
31248         explicitly specified.
31250 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
31252         * reflection.c, reflection.h, icall.c: setup the reflection
31253         handle cache for ModuleBuilders and AssemblyBuilders.
31255 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
31257         * reflection.c (reflection_methodbuilder_to_mono_method): set
31258         pinvoke flag
31260 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31262         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
31264 2003-01-29  Dick Porter  <dick@ximian.com>
31266         * threads.c: No need for the fake_thread kludge now that Thread
31267         doesn't run a class constructor
31268         
31269 2003-01-29  Dick Porter  <dick@ximian.com>
31271         * threads.c: Use g_direct_hash instead of the rather bogus
31272         g_int_hash
31274 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
31276         * marshal.c (mono_marshal_get_native_wrapper): add check for null
31277         (fix pinvoke12.exe)
31278         (mono_marshal_get_struct_to_ptr): generate valid IL code
31279         (mono_marshal_get_ptr_to_struct): generate valid IL code
31280         (*): correctly set sig->pinvoke, we need to memdup the signature
31281         to do that
31283 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31285         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
31286         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
31288 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31290         * profiler.c: provide more callers information.
31292 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
31294         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
31296         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
31298         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
31300 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31302         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
31303         exception instead of going into an infinite loop on dates which it 
31304         can't yet handle.
31306         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
31307         out-of-range exception if needed.
31309         * class.c (mono_class_setup_vtable): allow a virtual method to provide
31310         an implementation for an interface method and to override an inherited
31311         method at the same time. 
31312         Imagine a scenario when a virtual method is used to override a
31313         virtual abstract method in a parent class, and this same method 
31314         provides an implementation for an method inherited from an interface. 
31315         In this case, the interface resolution code will set im->slot, which 
31316         means that the virtual method override pass will skip this method 
31317         which means a pointer to the abstract method inherited from the parent
31318         will remain in the vtable of this non-abstract class.
31320         * class.c: (mono_class_setup_vtable): continue search for a real 
31321         method if only an abstract method is found.     
31323 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31325         * reflection.c: add size to encoding for ByValStr and ByValArray
31326         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
31328 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31330         * class.c (mono_class_setup_vtable): pass the override info as an
31331         argument.
31333         * class.c (mono_class_setup_vtable): set the slot of overriding methods
31334         correctly.
31335         
31336         * reflection.c (ensure_runtime_vtable); add support for method 
31337         overrides.
31338         
31339 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31341         * reflection.c (resolution_scope_from_image): Hack to work to work with
31342         dynamic assemblies.
31344         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
31345         added a 'force_ref' argument to force this function to allways return 
31346         a TypeRef. This is needed by mono_image_get_memberref_token ().
31347         
31348 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31350         * reflection.c (mono_image_get_type_info): interfaces really don't have
31351         a parent.
31353         * reflection.c (mono_image_basic_init): fill out missing fields of
31354         image structure.
31356         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
31357         dynamic assemblies. This is required so dynamic assemblies show up in
31358         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
31359         Type::GetType() etc. This is consistent with MS behaviour.
31361         * image.c image.h reflection.c: add newly created classes to the name 
31362         cache so mono_class_get () will find them.      
31364 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31366         First part of changes to get IKVM.NET running under mono.
31367         
31368         * appdomain.h, appdomain.c: added new function 
31369         mono_domain_try_type_resolve() which will emit TypeResolve events. 
31370         This function will call AppDomain::DoTypeResolve to do the actual work.
31372         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
31373         moved existing code dealing with dynamic tokens to a new function 
31374         called mono_reflection_lookup_dynamic_token (). This function will 
31375         raise TypeResolve events when appropriate. Since reflection.c is not 
31376         part of libmetadata, a new hook function called 
31377         mono_lookup_dynamic_token() is added to class.c which will call this.
31379         * assembly.h assembly.c: make the invoke_load_hook function public,
31380         so it can be called for dynamic assemblies.
31382         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
31384         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
31385         type isn't found.
31387         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
31388         MonoGHashTable, since it contains pointers to objects which the GC 
31389         needs to track.
31391         * assembly.c (search_loaded): remove unused variable.
31392         
31393 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
31395         * object.c: fixed issue exposed by gcc-generated IL programs
31396         that use RVA data for pointers.
31398 2003-01-25  Martin Baulig  <martin@ximian.com>
31400         * threads.c (start_wrapper): Moved the initialization of
31401         `start_func' above the mono_new_thread_init() call to which we
31402         pass it as argument.
31404 2003-01-24  Martin Baulig  <martin@ximian.com>
31406         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
31407         the MonoThread pointer.
31409 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
31411         * icall.c: Rename `PowImpl' to Pow.
31413 2003-01-23  Dick Porter  <dick@ximian.com>
31415         * threads.c (start_wrapper): Create a Thread object if needed, so
31416         the Main() thread can do the class initialisation in a subthread
31417         that has been set up to allow managed code execution.
31419         Pass the thread ID instead of the MonoThread pointer to the thread
31420         start and attach callbacks.  This change is required, because the
31421         jit thread start callback must be called _before_ the Thread
31422         object can be created.
31423         
31424         (mono_thread_init): Removed much object creation code that is no
31425         longer needed.  No managed code is called from here now.
31427         * object.c (mono_runtime_exec_managed_code): Create a subthread
31428         for Main, and call back to the runtime to use it.
31429         Set the exit code when Main exits.
31431         * gc.c: Make sure domain finalisation happens in a subthread.
31432         Re-enable threaded GC, fixing bug 31333 (again).
31434         * environment.c: System.Environment internall calls (so far just
31435         ExitCode is here, the others are still in icall.c)
31437         * appdomain.c (mono_runtime_cleanup): All threads running managed
31438         code should have finished before mono_runtime_cleanup() is
31439         reached, so no need to clean up threads.
31441 2003-01-22  Martin Baulig  <martin@ximian.com>
31443         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
31444         `gpointer func' arguments.      
31445         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
31446         but added `MonoThread *thread' argument.
31447         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
31449         * threads.c (mono_new_thread_init): Added `gpointer func' argument
31450         and pass it to the mono_thread_start_cb callback.
31451         (mono_install_thread_callbacks): New public function to install a
31452         set of callbacks which are set by the debugger.
31453         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
31455 2003-01-22  Martin Baulig  <martin@ximian.com>
31457         * Makefile.am: Install debug-mono-symfile.h.
31459 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
31461         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
31463 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
31465         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
31466         * class.c (mono_ptr_class_get): correctly set access levels of pointers
31467         (mono_array_class_get): correctly set access levels of arrays
31469 2003-01-20      Patrik Torstensson
31470         * image.h (MonoAssemblyName): changed major, minor, build, revision
31471         from signed to unsigned.
31473 2003-01-20  sean kasun <skasun@azstarnet.com>
31475         * reflection.c (load_cattr_value): Now this handles
31476         MONO_TYPE_SZARRAY.  Fixes bug #35629
31478 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
31480         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
31481         integer value
31483 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31485         * decimal.c: fixed bug #26056.
31487 2003-01-17  Martin Baulig  <martin@ximian.com>
31489         * gc.c: Raise an ExecutionEngineException instead of using g_error().
31491 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31493         * exception.[ch]:
31494         (mono_get_exception_type_initialization): new function.
31496         * object.c: throw a TypeInitializationException when an exception is
31497         thrown invoking the class constructor.
31499 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31501         * reflection.c: fixed attribute reading.
31503 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31505         * icall.c:
31506         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
31507         provided, look for the type in the calling assembly and then in
31508         mscorlib; if the assembly name is provided, only try that one.
31510 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
31512         * object.c: register the vtable before there is a chance it's
31513         queried again recursively.
31515 2003-01-13  Duncan Mak  <duncan@ximian.com>
31517         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
31518         gc-internal.h. 
31519         
31520 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
31522         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
31524 2003-01-11  Martin Baulig  <martin@ximian.com>
31526         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31527         this to 20 for the release.
31529 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31531         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31533         * loader.c (mono_method_get_marshal_info): bug fix
31535         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31536         structures with explicit layout
31538 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31540         * profiler.c: made the output more readable (and sorted). 
31541         Added caller information for the allocation profiler.
31543 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31545         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31547 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31549         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31550         to get value types.
31551         
31552 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31554         * object.c, profiler.h, profiler.c, profiler-private.h:
31555         Added object allocation profiler.
31557 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31559         * reflection.h, reflection.c: handle global methods.
31560         Compress blob entries.
31562 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31564         * marshal.c: fix compilation.
31566 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31568         * loader.c (mono_method_get_marshal_info): impl.
31570         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31572 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31574         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31575         for reference types.
31577 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31579         * loader.c: fixed off by one error in loaded parameter names.
31581 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31583         * marshal.c (mono_marshal_get_icall_wrapper): like
31584         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31585         instead of a MonoMethod.
31587 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31589         * decimal.c: fixed bug #36537.
31591 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31593         * marshal.c: throw a missing method exception if a
31594         P/Invoke method is not found.
31596 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31598         * icall.c: allow a null this for constructors.
31600 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31602         * icall.c: raise the proper exceptions if the arguments to the
31603         internal Invoke are incorrect.
31605 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31607         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31609 2003-01-03  Martin Baulig  <martin@ximian.com>
31611         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31613 2002-12-31  Martin Baulig  <martin@ximian.com>
31615         * debug-mono-symfile.c: Completely rewrote the type section.
31616         Instead of using individual malloc()ed fields, we use one big
31617         continuous memory area and offsets into this area.
31618         See the comments in the source code for details.
31620 2002-12-30  Martin Baulig  <martin@ximian.com>
31622         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31624 2002-12-30  Martin Baulig  <martin@ximian.com>
31626         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31627         line number table in this data blob instead of using an external
31628         pointer.
31630 2002-12-28  Martin Baulig  <martin@ximian.com>
31632         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31634 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31636         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31637         as a boxed return type.
31639 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31641         * appdomain.c
31642         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31643         g_build_filename to properly get separators on the filename created.
31645         * object.h: Small change, introduce MonoMarshalByRefObject to
31646         track the layout of that structure in the C# universe as we make
31647         changes there.
31649 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31651         * object.c: removed assert to allow static fields on interfaces.
31652         * loader.c: a TypeSpec may be used for any type, not just arrays.
31654 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31656         * class.c, class.h: added mono_class_array_element_size ().
31657         Ignore static methods in interfaces.
31659 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31661         * threads.c: fixed the build under cygwin.
31663 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31665         * reflection.c: handle nullref constants. Allocate keys for
31666         reflection handles with the GC.
31668 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31670         * threads.c, threads.h: added mono_thread_get_abort_signal()
31671         to get a suitable signal for thread abort.
31673 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31675         * metadata.c: fix handling of ExportedType table.
31677 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31679         * icall.c: added WriteWindowsDebugString internal call.
31681 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31683         * reflection.h: added fields to match C# implementation.
31685 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31687         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31689 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31691         * gc.h, gc-internal.h: Rename header for GC internal calls to
31692         gc-internal.h from gc.h as to not clash with Boehm GC having its
31693         header installed as <gc.h> in outside include paths.
31694         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31695         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31697 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31699         * icall.c: assign minor, build and revision in FillName.
31701 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31703         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31704         Added support for running code generated by Reflection.Emit.
31706 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31708         * appdomain.c: check for NULL argument in LoadFrom.
31710 2002-12-10  Dick Porter  <dick@ximian.com>
31712         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31714 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31716         * appdomain.c: fix buglet when building exe file name.  Handle full
31717         assembly name (needed after latest changes to AssemblyName).
31718         * image.c:
31719         (mono_image_close): free some hashtables.
31721 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31723         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31724         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31725         on some systems (redhat 7.3) 
31727 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31729         * threads.c: delete the critical section of a sync block,
31730         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31732 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31734         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31736 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31738         * appdomain.[ch]: handle the assembly preload event to try loading the
31739         assemblies using the paths we have in the current domain.
31741         * assembly.[ch]: created an assembly preload hook that is called to try
31742         loading the assembly by other means that the ones provided here.
31744         * domain.c: initialize the domain search path.
31746         From now on, assemblies (TODO: except corlib and System) are loaded
31747         according to these rules when using mono_assembly_load ():
31749                 1. It tries to load the assembly from the ApplicationBase
31750                 of the current domain appending .dll and .exe (TODO: have to
31751                 try loading from name/name.dll and name/name.exe).
31753                 2. It tries the search path specified in PrivateBinPath for the
31754                 current domain (if any).
31756                 3. Previous behavior.
31758 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31760         * icall.c: implemented GetInterfaceMap() related icall.
31761         * domain.c, loader.h: load MethodInfo in mono_defaults.
31763 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31765         * gc.c: disable the finalizer thread for now, untill all the issues
31766         with it are resolved.
31768 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31770         * string-icalls.c: handle embedded nulls in string ctor when the
31771         length is specified.
31773 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31775         * class.c: look for explicit interface implementation in parent
31776         classes, too.
31778 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31780         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31782 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31784         * gc.c: protect handles with a critical section.
31786 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31788         * icall.c:
31789         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31790         parameters. If no assembly specified, try getting the type from all
31791         the assemblies in the current domain, else, load the assembly and get
31792         the type from it.
31794 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31796         * marshal.c: applied patch from Aleksey Demakov that fixes
31797         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31799 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31801         * icall.c: fixed get_location.
31803 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31805         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31806         declarations to make it work with older gcc. 
31808         * loader.c (mono_get_method): set signature->pinvoke for native calls
31810 2002-11-20  Dick Porter  <dick@ximian.com>
31812         * threads.c (mono_thread_init): Set the main thread's handle
31814 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31816         * gc.c: allow compilation without GC support. Changed to match the
31817         mono coding style.
31819 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31821         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31823 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31825         * reflection.c: set a public key token on the core assemblies.
31827 2002-11-18  Dick Porter  <dick@ximian.com>
31829         * threads.c: Split out some thread initialisation so that other
31830         files can set the start callback function.
31832         * gc.c: Run finalisers in a separate thread, to avoid stack
31833         overflow.  Fixes bug 31333.
31835         * appdomain.c: Set up GC finalisation thread.
31837         * reflection.c: 
31838         * object.c: 
31839         * domain.c: Use gc.h macros for GC_malloc
31840         
31841 2002-11-15  Dick Porter  <dick@ximian.com>
31843         * threadpool.c: 
31844         * threads.c:
31845         * appdomain.c: Removed mono_runtime_init_with_attach(),
31846         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31847         merging the extra parameter with the existing function.  Removed
31848         unneeded code in mono_thread_attach().
31850 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31852         * image.c (mono_image_loaded_by_guid): a method to get loaded
31853         images by guid. 
31854         (load_metadata_ptrs): we store the guid as string.
31856 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31858         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31860         * metadata.c (mono_guid_to_string): imported method form Zoltan
31861         Varga (slightly modified)
31863         * assembly.c (mono_assembly_open): load precompiled code
31865         * loader.h (MonoMethod): we store the method token for use in the
31866         aot compiler. 
31868 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31870         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31871         the hook function called when an assembly is loaded.
31872         
31873         * domain.c: Modified file.
31874         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31876         Fixes bug #33196.
31878 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31880         * reflection.c: Map PEFileKind to the value expected by the WinNT
31881         image loader. 
31883 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31885         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31886         Read until the buffer is filled completely.
31888 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31890         * icall.c: implemented MonoType.InternalGetEvent ().
31892 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31894         * appdomain.c: implemented InitAppDomainSetup. Delayed
31895         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31896         the entry_assembly.
31898         * assembly.c: base_dir is now an absolute path ending with
31899         G_DIR_SEPARATOR.
31901         * icall.c: modified get_location according to the above changes.
31903         * object.c: init AppDomain.SetupInformation for the default domain after
31904         we have the entry assembly.
31906         * domain.c: when unloading a domain, setup = NULL.
31908 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31910         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31912 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31914         * object.h, object.c: introduced mono_object_get_virtual_method ()
31915         to lookup the method invoked on an object when a callvirt is done on
31916         a method.
31917         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31919 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31921         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31922         current domain when loaded an assembly and failed to load it.
31924         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31926 2002-10-31  Dick Porter  <dick@ximian.com>
31928         * icall.c: 
31929         * file-io.h: 
31930         * file-io.c: Return the error status in a parameter, as the
31931         GetLastError() value has long since been blown away if we try and
31932         look it up in a subsequent internal call invocation.  Delete the
31933         GetLastError() internal call, because it's useless.
31935 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31937         * class.[ch]: added cast_class to fix bug 29517
31939 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31941         * marshal.c: create valid IL code in the filter clause:
31942         the new JIT is less forgiving:-)
31944 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31946         * icall.c: removed get_property internal call.
31948 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31950         * appdomain.h domain.c: Added an ID to appdomains.
31951         
31952         * threads.c threads.h icall.c: Implement icall
31953         Thread:GetDomainID(), and remove unused icall 
31954         CurrentThreadDomain_internal.
31956 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31958         * icall.c: Don't recurse through the base types in GetConstructor.
31959         Fixes bug #32063. 
31961 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31963         * mempool.h, mempool.c: added mono_mempool_empty() and
31964         mono_mempool_stats().
31966 2002-10-23  Dick Porter  <dick@ximian.com>
31968         * file-io.c: 
31969         * file-io.h: 
31970         * icall.c: Added MonoIO.GetFileType internal call
31972 2002-10-17  Dick Porter  <dick@ximian.com>
31974         * appdomain.c (mono_runtime_cleanup): Don't signal the async
31975         delegate semaphore before waiting for all threads to finish,
31976         because new threads can also call async delegates.  Fixes bug
31977         32004.
31979         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
31980         of 3 seconds, in case another async job is queued.  (This part is
31981         needed because the bug fix reintroduced the 3s exit lag.)  This
31982         makes the mono_runtime_shutdown flag superfluous.
31984 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31986         * reflection.c: include ehader size in method section headers.
31987         Really check for suplicated modules entries.
31989 2002-10-17  Martin Baulig  <martin@gnome.org>
31991         * debug-mono-symfile.c: Added back support for locals.
31993 2002-10-14  Martin Baulig  <martin@gnome.org>
31995         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31996         MONO_TYPE_VOID.
31998 2002-10-14  Martin Baulig  <martin@gnome.org>
32000         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
32001         mono_class_get() instead of looking in the class cache. 
32003 2002-10-13  Martin Baulig  <martin@gnome.org>
32005         * debug-mono-symfile.c: Set version number to 28, include the
32006         signature in method names.
32008 2002-10-13  Martin Baulig  <martin@gnome.org>
32010         * debug-mono-symfile.h: Set version number to 27.
32012 2002-10-11  Martin Baulig  <martin@gnome.org>
32014         * gc.c: Don't register/unregister NULL pointers as disappearing links.
32016 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32018         * metadata.c, metadata.h: added helper function to allocate signatures.
32020 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32022         * icall.c: added internal call to get the location of machine.config.
32024 2002-10-08  Martin Baulig  <martin@gnome.org>
32026         * debug-mono-symfile.c: Ignore classes with a pending init for the
32027         moment.
32029 2002-10-03  Dick Porter  <dick@ximian.com>
32031         * threads.c: Freebsd pthread_t is a pointer
32033 2002-10-03  Dick Porter  <dick@ximian.com>
32035         * socket-io.c: Implemented GetHostName_internal
32037 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32039         * mono-config.c:
32040         (mono_config_parse_file): don't leak the text.
32042 2002-10-02  Martin Baulig  <martin@gnome.org>
32044         * debug-mono-symfile.c: Added support for methods.
32046 2002-10-01  Martin Baulig  <martin@gnome.org>
32048         * debug-mono-symfile.c: Don't emit methods and line numbers for
32049         the dynamic symbol file, just write the type table.  We can easily
32050         have an external helper program which creates a symbol file for an
32051         IL file.        
32053 2002-10-01  Dick Porter  <dick@ximian.com>
32055         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
32056         Only add the handle to the cleanup array when we're about to
32057         launch the thread.  Bug 31425 deadlocked when the test was run on
32058         mono under w32.
32060 2002-10-01  Martin Baulig  <martin@gnome.org>
32062         * debug-mono-symfile.c: Added support for properties.
32064 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32066         * reflection.c: unaligned store fix from Mark Crichton
32067         <crichton@gimp.org>.
32069 2002-09-27  Martin Baulig  <martin@gnome.org>
32071         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
32072         New interncall.
32074 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32076         * assembly.h, assembly.c: use a sane API to hook into the assembly
32077         loading process instead of a useless special-purpouse hack
32078         (ngen needs a hook, too, for example).
32080 2002-09-27  Dick Porter  <dick@ximian.com>
32082         * threads.c (mono_thread_init): Call GetCurrentProcess() so
32083         io-layer can set up some process handle info.  Not needed on w32,
32084         but doesn't hurt either.
32086         * process.c: Pass the program name in the second parameter to
32087         CreateProcess, so the path is searched.  Include the working
32088         directory. Implemented process name, process enumeration, and some
32089         process detail internal calls.
32090         
32091         * icall.c: Added internal calls for process lookup, and some
32092         process details
32094 2002-09-26  Martin Baulig  <martin@gnome.org>
32096         * assembly.c (mono_install_open_assembly_hook): New global
32097         function to install a function to be invoked each time a new
32098         assembly is loaded.
32099         (mono_assembly_open): Run this callback function if set.
32101         * debug-mono-symfile.c: Put back line numbers for the dynamic
32102         symbol file and also record the .il file as source file.  This
32103         allows us to install the temporary symbol file as `file.dbg' just
32104         like a compiler-generated one.
32106 2002-09-26  Nick Zigarovich <nick@chemlab.org>
32108         * Corrected typo in gc.c (BOHEM vs BOEHM).
32110 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32112         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
32113         GetProperties. Also avoid calling g_slist_length in GetProperties and
32114         GetMethods.
32116 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32118         * reflection.c: avoid unaligned stores (bug spotted by
32119         Mark Crichton  <crichton@gimp.org>).
32121 2002-09-25  Martin Baulig  <martin@gnome.org>
32123         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
32124         instead of guint64 for addresses and added prologue/epilogue info.
32126 2002-09-25  Martin Baulig  <martin@gnome.org>
32128         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
32129         store line number info.  For the dynamic symbol file, we only need
32130         to provide the JIT generated dynamic line number info for the dynamic
32131         symbol file.
32133 2002-09-25  Martin Baulig  <martin@gnome.org>
32135         * debug-mono-symfile.h: Incremented version number.
32137 2002-09-24  Martin Baulig  <martin@gnome.org>
32139         * class.c (mono_debugger_class_init_func): New global function
32140         pointer variable.
32141         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
32142         call it.
32144         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
32145         function.  This is called via the mono_debugger_class_init_func
32146         hook to add all types to the dynamic type table.
32147         (ves_icall_MonoDebugger_GetType): New interncall to get a class
32148         from its metadata token.
32150         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
32151         New interncall for the debugger.
32153 2002-09-24  Nick Drochak <ndrochak@gol.com>
32155         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
32156         before using it in case it is null.
32157         
32158 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32160         * metadata.c: allow custom modifiers in local var signatures
32161         (bug spotted by Zoltan Varga).
32163 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32165         * class.c: deal with the <Module> class that may have a NULL vtable.
32166         Eliminate warnings.
32168 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32170         * image.c, image.h: more strong name helpers.
32171         * monosn.c: more work: convert pem keys to cryptoapi format.
32173 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32175         * string-icalls.c: speedup IndexOf.
32177 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32179         * icall.c: updates from Zoltan.2.Varga@nokia.com.
32181 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32183         * icall.c: cleanup: use mono_object_domain ().
32185 2002-09-23  Martin Baulig  <martin@gnome.org>
32187         * debug-mono-symfile.c: Improved type support.
32189 2002-09-22  Martin Baulig  <martin@gnome.org>
32191         * debug-mono-symfile.c: Added support for reference types and strings.
32193 2002-09-22  Martin Baulig  <martin@gnome.org>
32195         * debug-mono-symfile.c: Started to work on the type table.
32197 2002-09-21  Martin Baulig  <martin@gnome.org>
32199         * debug-mono-symfile.c: Largely reworked the symbol table format.
32200         The symbol table is now incrementally updated each time a new
32201         method is added.  We're now also using our own magic and version
32202         so that you don't need to recompile all your classes if the
32203         dynamic table changes.
32204         (mono_debug_update_mono_symbol_file): Removed.
32205         (mono_debug_symfile_add_method): New function to add a method.
32207 2002-09-21  Martin Baulig  <martin@gnome.org>
32209         * icall.c
32210         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
32211         New interncall.
32213         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
32214         New interncall to get a method from its metadata token.
32216 2002-09-21  Martin Baulig  <martin@gnome.org>
32218         * debug-mono-symfile.c: Create type table.
32220 2002-09-20  Martin Baulig  <martin@gnome.org>
32222         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
32224 2002-09-20  Martin Baulig  <martin@gnome.org>
32226         * debug-mono-symfile.c: Provide information about params and locals.
32228 2002-09-20  Martin Baulig  <martin@gnome.org>
32230         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
32231         New interncall.
32233         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
32234         interncall to get a method from its metadata token.
32236 2002-09-20  Martin Baulig  <martin@gnome.org>
32238         * debug-mono-symfile.c: Added a few checks for method->header
32239         being non-NULL.  This should never happen, but for the moment
32240         let's use a g_warning() rather than a g_assert().
32242 2002-09-19  Mark Crichton  <crichton@gimp.org>
32244         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
32245         even if support for it isn't present.  Added an #ifdef to fix this.
32247         * socket-io.c: Added checks back for Solaris support.
32249 2002-09-19  Martin Baulig  <martin@gnome.org>
32251         * debug-mono-symfile.c (read_string, write_string): Reflect latest
32252         changes in the symbol file format.
32254 2002-09-18  Martin Baulig  <martin@gnome.org>
32256         * debug-mono-symfile.c: Set version number to 21.
32258 2002-09-18  Dick Porter  <dick@ximian.com>
32260         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
32261         on netbsd.  Fixes bug 30051.
32263 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32265         * reflection.c:
32266         (set_version_from_string): little fix.
32268 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32270         * monosn.c, Makefile.am: added strong name utility.
32271         * reflection.h, reflection.c: implemented delayed signing,
32272         locale, version and hash id assembly attributes.
32274 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32276         * loader.c, metadata.c: load param attributes in signatures.
32278 2002-09-16  Martin Baulig  <martin@gnome.org>
32280         * debug-mono-symfile.c: Added string table with all method names.
32282 2002-09-14  Martin Baulig  <martin@gnome.org>
32284         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
32285         fast method lookup.
32287 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32289         * reflection.c: record the public key token of referenced assemblies.
32291 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32293         * image.c, image.h: added functions to get the strong name and the
32294         public key of an assembly.
32295         * pedump.c: use them.
32297 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
32299         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
32301 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
32303         * marshal.c (mono_marshal_get_managed_wrapper): Added
32304         MONO_TYPE_BOOLEAN 
32306 2002-09-11  Martin Baulig  <martin@gnome.org>
32308         * gc.c: Call GC_unregister_disappearing_link() on all links when
32309         finalizing them, this is necessary to aviod a crash in boehm's
32310         finalize handler.
32312 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32314         * gc.c: handle GetTarget for finalized objects spotted and fixed by
32315         nick@chemlab.org.
32317 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32319         * icall.c: implemented MonoType::Module.
32320         * reflection.c, reflection.h: mono_module_get_object () from
32321         Tomi Pakarinen <tomi.pakarinen@welho.com>.
32323 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32325         * icall.c: ignore overridden methods in GetMethods ().
32326         Fix for FieldInfo::SetValue().
32327         * object.c: handle float/double in runtime invoke.
32329 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32331         * object.c: allow a constructor to be called again on an object.
32333 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32335         * class.h, class.c: move field layout code to it's own function and
32336         export it. Get an interface id earlier. Move fields in MonoClass
32337         so they are more cache friendly and align the bitfields.
32338         * loader.c: temporary handle get_param_names() for a runtime method.
32339         * reflection.c, reflection.h: more code to handle runtime creation of
32340         types.
32342 2002-09-09  Martin Baulig  <martin@gnome.org>
32344         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
32345         signature with the pinvoke field being set for the actual call.
32347 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32349         * icall.c: removed some unused icalls. Start of map of glib charsets
32350         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
32352 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32354         * debug-helpers.c: break infinite loop (found and fixed by
32355         Holger Arnold <harnold@gmx.de>).
32357 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32359         * icall.c: target may be null in create_delegate.
32361 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32363         * marshal.c: handle a boolean return type.
32365 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32367         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
32369 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32371         * gc.c: fix weakreferences.
32373 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32375         * icall.c: added icall to get default codepage.
32377 2002-09-03  Dick Porter  <dick@ximian.com>
32379         * threads.h: 
32380         * threads.c: Use MonoThread instead of MonoObject where
32381         apropriate.
32383         Store running thread objects in a hash table, so that we have all
32384         the info to hand when waiting for them to finish
32385         (means we don't need OpenThread() any more, so mingw builds should
32386         be fully functional again.)
32388         * verify.c:
32389         * object.h: Added thread ID to MonoThread
32391 2002-09-03  Martin Baulig  <martin@gnome.org>
32393         * icall.c (System.Reflection.Assembly::get_location): New interncall.
32395 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32397         * icall.c: fixed leak in get_temp_path. Thanks lupus.
32399 2002-09-03  Martin Baulig  <martin@gnome.org>
32401         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
32402         argument to store the end address of the disassembled instruction.
32404         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
32405         here from debug-symfile.h.
32406         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
32407         JIT into this struct.
32408         (MonoSymbolFile): Added `char *image_file' field.
32409         (MonoDebugGetMethodFunc): Removed.
32410         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
32411         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
32412         (mono_debug_find_method): New method.
32414         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
32415         create a full symbol file.
32416         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
32417         and static symbol files.
32418         (mono_debug_find_method): The symbol file keeps an internal method hash,
32419         call this to get a MonoDebugMethodInfo from a MonoMethod.
32421         * debug-symfile.[ch]: Removed.
32423 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
32425         * image.c (do_mono_image_open): Remove linker version check.
32427 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
32429         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
32430         wrappers for instance methods.
32431         
32432 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32434         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
32436 2002-08-28  Dick Porter  <dick@ximian.com>
32438         * Makefile.am: Export HOST_CC for w32 builds
32440 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32442         * file-io.c process.c: MonoString are null terminated, no
32443         need for mono_string_to_utf16() anymore.
32445 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32447         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
32449 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
32451         * icall.c, reflection.h: speedup System.MonoType.
32453 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32455         * reflection.c: allow null as the value of a string argument in
32456         custom attributes constructors.
32458 2002-08-27  Martin Baulig  <martin@gnome.org>
32460         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
32461         `trampoline_address' field.
32463 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
32465         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
32466         check (fixes bug #29486) 
32468 2002-08-27  Martin Baulig  <martin@gnome.org>
32470         * debug-mono-symfile.c: Changed the file format in a way that allows us
32471         open it read-only and to use a specially malloced area for all the
32472         dynamic data.  We can now also generate a symbol file on-the-fly if we're
32473         debugging IL code and there is no MCS generated symbol file for it.
32475 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32477         * object.c: added a define for a good string and array
32478         creation speedup (not enabled by default because we need to deal with
32479         the synch stuff).
32481 2002-08-26  Martin Baulig  <martin@gnome.org>
32483         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
32484         function to create a dynamic symbol file.  This is used by the
32485         debugger to create a symbol file for IL code on-the-fly.
32487 2002-08-26  Martin Baulig  <martin@gnome.org>
32489         * loader.c (mono_lookup_pinvoke_call): Include the error message
32490         from g_module_error() in the error message.
32492 2002-08-24  Martin Baulig  <martin@gnome.org>
32494         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
32495         function to update the symbol file.  The symbol file is mmap()ed
32496         writable, but private.  This allows us to install the symbol file
32497         together with the assembly.
32499 2002-08-24  Martin Baulig  <martin@gnome.org>
32501         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
32502         but they can read the new symbol file format which mcs is now creating.
32504         * debug-symfile.c (mono_debug_find_source_location): Moved to
32505         debug-mono-symfile.c; this is now operating on the new symbol file.
32507 2002-08-23  Martin Baulig  <martin@gnome.org>
32509         * debug-helpers.c (mono_method_desc_from_method): New function to get
32510         a MonoMethodDesc from a MonoMethod.
32512 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32514         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
32515         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
32517 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32519         * string-icalls.[ch]: make helper methods static.
32521 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32523         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
32524         types to it and to SetValueInternal.
32526         * object.c: Moved handle_enum label to its proper place. This was the
32527         f... bug! ;-)
32529         This time i compiled mcs and gtk-sharp and they both work.
32531 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32533         * icall.c: reverted partially my previous patch until 
32534         object.c:set_value handles enums correcly.
32536 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32538         * icall.c:
32539         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32540         (ves_icall_System_Environment_get_MachineName): removed warning when
32541         compiling under cygwin.
32543 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32545         * object.c: fixed field_get_value() for reference types.
32547 2002-08-22  Dick Porter  <dick@ximian.com>
32549         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32550         Don't free a buffer while it's still needed.  Patch from Jonathan
32551         Liger <Jonathan.liger@wanadoo.fr>
32553 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32555         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32556         internal call.
32558 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32560         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32561         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32563         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32564         we call unmanaged code which throws exceptions.
32566 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32568         * appdomain.h: added per-domain entry_assembly.
32569         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32570         arguments.
32571         * icall.c: Assembly::GetEntryAssembly icall.
32572         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32573         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32575 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32577         * appdomain.h, gc.c: added mono_domain_finalize ().
32579 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32581         * object.c:
32582         (mono_print_unhandled_exception): changed g_warning by g_printerr
32583         because g_log has a 1024 characters limit (yeah, i got a big stack
32584         trace). Don't print exception name, that should be in ToString 
32585         returned string.
32587 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32589         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32590         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32592 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32594         * object.c:
32595         (mono_print_unhandled_exception): after previous commit, i realized
32596         that MS calls ToString on the exception. I changed this function to
32597         do that. This way we get stack_trace for free.
32599 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32601         * object.c:
32602         (mono_print_unhandled_exception): invoke Message property instead of
32603         getting 'message' field from Exception. Don't allocate memory for
32604         'trace' and 'message' if not needed.
32606 2002-08-18  Dick Porter  <dick@ximian.com>
32608         * unicode.c: Fix asserts to match Encoder.cs checks
32610 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32612         * marshal.c: fix unaligned store issue and a few wrong
32613         opcode argument types.
32615 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32617         * icall.c: added GetUninitializedObjectInternal internal call.
32619 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32621         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32622         to the right domain.
32624 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32626         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32628         * class.c (class_compute_field_layout): set blittable to false for Strings
32630         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32632 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32634         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32635         first chunk of code to create types at runtime. Code to
32636         handle ReflectedType/DeclaringType. Make reflection handles
32637         domain specific.
32639 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32641         * class.c: set correct name in arrays.
32643 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32645         * appdomain.c (mono_domain_transfer_object): make it work with
32646         valuetypes. bug fixes.
32648 2002-08-12  Dick Porter  <dick@ximian.com>
32650         * object.h: Rename some parameters to avoid c++ keywords (Patch
32651         from Joseph Wenninger <kde@jowenn.at>)
32653 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32655         * icall.c: added icall to implement Assembly.GetFile*.
32657 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32659         * reflection.h, reflection.c: code to embed managed resources.
32661 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32663         * class.c: move all the type size stuff into
32664         class_compute_field_layout().
32666 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32668         * class.c: ensure enums have always the correct instance size.
32669         * unicode.c: remove wrong assert.
32671 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32673         * assembly.c: fix mem corruption issue.
32674         * image.h, image.c: added mono_image_get_resource () to access
32675         managed resources.
32676         * icall.c: implemented Assembly.EntryPoint property and some
32677         Managed Resources related internalcalls.
32680 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32682         * image.c, image.h: impemented mono_image_get_entry_point ().
32683         * appdomain.c: use mono_image_get_entry_point.
32685 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32687         * reflection.c: support the object type argument when loading
32688         custom attributes.
32690 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32692         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32693         String as return type.
32695 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32697         * reflection.c: fix encoding of named args for custom attrs to match
32698         the ms implementation. Read them back when instantiating custom
32699         attributes.
32701 2002-08-02  Radek Doulik  <rodo@ximian.com>
32703         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32704         by Dietmar as quick fix
32705         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32706         16 as stack size, used on more places as quick fix before Dietmar
32707         will fix it properly
32709 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32711         * object.h, object.c: added accessors for fields and properties.
32713 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32715         * class.c, class.h: made mono_class_get_field_from_name ()
32716         loop on parent types.
32717         Added mono_class_get_property_from_name ().
32719 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32721         * class.c, class.h: move the code to setup the type vtable in its own
32722         function so that it can be reused also for types created at runtime.
32723         Eliminate the "class" identifier from the header file.
32724         * reflection.c: setup the vtable for enums so that we can create
32725         objects for use in SetConstant ().
32727 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32729         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32730         instead of the delegate itself as this pointer (bug #28383)
32732 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32734         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32735         conversions.
32737 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32739         * loader.c: don't set the pinvoke bit on icalls.
32741 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32743         * debug-helpers.c (mono_method_full_name): only print a number to
32744         indicate wrapper type (so that the output is more readable in traces).
32746 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32748         * class.c (mono_class_init): include method override patch from Paolo
32750 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32752         * icall.c: fixed GetTypeCode().
32754 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32756         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32757         use real delegate invoke function to make it work with multicast
32758         delegates (fix bug# 28291).
32760 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32762         * object.c: load constant strings.
32764 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32766         * reflection.c: no magic numbers.
32767         * tabledefs.h: security action enum.
32769 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32771         * assembly.c: fix possible memory corruption.
32773 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32775         * reflection.h, reflection.c: added support for linking resources.
32776         * verify.c: check we have an updated corlib.
32778 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32780         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32781         string arrays.
32782         (mono_marshal_string_array): null terminate unmanaged string arrays.
32783         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32785 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32787         * icall.c: Type.GetType () can now return also types from the
32788         calling assembly.
32790 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32792         * loader.h, loader.c: stack walking support.
32793         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32794         GetCallingAssembly.
32796 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32798         * marshal.c: added optimisations for blittable types 
32800         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32801         (mono_class_setup_mono_type): set blittable attribute for single
32802         and double.
32804         * marshal.c (mono_string_utf8_to_builder): impl.
32805         (mono_string_builder_to_utf8): impl.
32806         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32808 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32810         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32811         (mono_marshal_get_managed_wrapper): impl. byref types
32813 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32815         * icall.c:
32816         (search_method): don't display debug message. 
32818 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32820         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32822 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32824         * appdomain.c: set the missing filename when throwing exception.
32826 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32828         * metadata.c (mono_type_size): code cleanup
32829         (mono_type_stack_size): removed some test code
32831 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32833         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32834         mono_get_exception_file_not_found now.
32836         * exception.c (mono_exception_from_name_two_strings): New version
32837         that will call a constructor with two string arguments. 
32838         (mono_get_exception_file_not_found): New helper routine, used to
32839         report file-not-found errors.
32841 2002-07-20  Dick Porter  <dick@ximian.com>
32843         * process.h:
32844         * process.c: Pass file handles to CreateProcess
32845         
32846         * icall.c:
32847         * file-io.h:
32848         * file-io.c: Implemented CreatePipe
32850 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32852         * metadata.c (mono_get_param_info): set alignment for value types
32854 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32856         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32857         Constify mono_domain_assembly_open().
32858         * loader.c: handle null namespace in icalls.
32860 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32862         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32863         (emit_str_to_ptr_conv): marshal object as structs
32865         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32867         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32869 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32871         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32872         (mono_marshal_get_native_wrapper): we an now return value types
32874 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32876         * verify.c: more checks implemented.
32878 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32880         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32881         (fix bug #27695)
32882         (mono_marshal_get_native_wrapper): allow byref arguments
32883         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32884         impl. PtrToStringXXX methods
32885         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32886         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32887         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32888         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32889         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32891 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32893         * reflection.c: fix buglet in parsing an assembly name.
32895 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32897         * marshal.c (emit_ptr_to_str_conv): first impl.
32899 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32901         * object.c, class.h: cache the vtable in the class as suggested by
32902         vargaz@freemail.hu (Zoltan Varga).
32904 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32906         * class.h, loader.c: added mono_field_from_token().
32907         * verify.c: first cut of type checking code.
32909 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32911         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32913 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32915         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32916         (fix bug #27782)
32917         (mono_marshal_get_remoting_invoke): impl.
32918         (mono_delegate_begin_invoke): impl.
32919         (mono_mb_emit_save_args): impl.
32920         (mono_delegate_end_invoke): impl.
32921         (mono_marshal_get_delegate_begin_invoke):
32922         (mono_marshal_get_delegate_end_invoke):
32923         (mono_marshal_get_delegate_invoke): generate a special name for
32924         those methods (including the signature) and associate them whith
32925         the delegate class. 
32927 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32929         * reflection.[ch]: 
32930         (mono_reflection_type_from_name): now it has a MonoImage parameter
32931         which is used as the default image to search the type in. If the image
32932         is NULL or getting the type from it fails, it defaults to corlib.
32934         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32935         new parameter.
32937 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32939         * reflection.c: update the parameter table index.
32941 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32943         * domain.c: don't include the mark byte in the string hash.
32945 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32947         * icall.cs: icall for Type.GetTypeCode ().
32948         * verify: a couple of fixes and disabled local initialization checks.
32950 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32952         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32954         * debug-helpers.c (mono_method_full_name): print the type of the
32955         runtime wrapper
32957         * metadata.c (mono_signature_hash): a hash function for signatures
32958         (mono_signature_hash): better hash algorithm
32960         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
32962         * debug-helpers.c (mono_method_full_name): this can now generate
32963         method names with signatures
32965         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
32966         method dont have this pointers.
32968 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32970         * reflection.c: fixup typebuilder tokens.
32971         * image.c: fix buglet.
32972         * marshal.h: remove whitespace.
32973         * metadata.h, metadata.c: reinstate code that was removed.
32974         * verify.c: handle catch directives and fix another couple of bugs.
32976 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
32978         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
32979         (mono_marshal_get_native_wrapper): make it comp. with the old code
32980         (mono_marshal_get_native_wrapper): support boolean
32981         (mono_marshal_get_managed_wrapper): support more types
32983 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
32985         * class.c (class_compute_field_layout): compute class->blittable attribute.
32987 2002-07-09  Dick Porter  <dick@ximian.com>
32989         * threads.c: Make the thread cleaning up cope with threads that
32990         call ExitThread()
32992 2002-07-08  Radek Doulik  <rodo@ximian.com>
32994         * reflection.c (method_encode_code): use non-translated values to
32995         compute finally_start, this fixes exception handling on ppc, yay!
32997         * decimal.h (struct signscale): fix endianess
32999 2002-07-07  Radek Doulik  <rodo@ximian.com>
33001         * reflection.c: swap box_val and not val
33003 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33005         * reflection.c, reflection.h: handle full assembly info in type name.
33006         Handle Type arguments when loading custom attributes.
33007         * icall.c: updated to use new mono_reflection_type_from_name () method.
33009 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33011         * loader.c:
33012         (method_from_memberref): also print assembly name when method not found.
33014 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33016         * icall.c:
33017         (ves_icall_TypeGetProperties): fixed bug #27473. 
33019 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33021         * reflection.c: display image name and token when cannot find the
33022         .ctor for an attribute.
33024 2002-07-05  Martin Baulig  <martin@gnome.org>
33026         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33028 2002-07-04  Dick Porter  <dick@ximian.com>
33030         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
33031         compile on mingw.  This will cause mingw builds to not wait for
33032         subthreads to terminate after the main thread does.  I've lodged a
33033         bug with the mingw developers for them to wrap OpenThread().
33035 2002-07-03  Dick Porter  <dick@ximian.com>
33037         * threads.c: Store thread IDs instead of handles, because
33038         GetCurrentThread() returns a pseudohandle and therefore stores
33039         useless values.  mono_thread_cleanup() continues checking the
33040         array of threads until it is empty, to cope with subthreads
33041         spawning new threads after the main thread has finished.
33043         * profiler.h:
33044         * profiler.c:
33045         * profiler-private.h: Pass the thread ID to thread profiler
33046         functions, instead of a handle
33048 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33050         * verify.c: fixes to make it more usable.
33051         * pedump.c: added --verify code to verify IL code in an assembly.
33053 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33055         * reflection.c: turn errors into warnings to allow compiling corlib.
33057 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33059         * reflection.c: add special cases to compile corlib.
33061 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33063         * reflection.c: handle properties with only a set method.
33065 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33067         * opcodes.h: add enum with opcodes in opval order.
33069 2002-07-01  Dick Porter  <dick@ximian.com>
33070         
33071         * object.h:
33072         * object.c (mono_runtime_run_main): Removed unneeded argument
33074 2002-06-28  Martin Baulig  <martin@gnome.org>
33076         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33078 2002-06-27  Dick Porter  <dick@ximian.com>
33080         * threads.c: Store the handle in both the parent thread and in the
33081         subthread, to minimise the time between starting a new thread and
33082         storing its ID.
33084 2002-06-26  Dick Porter  <dick@ximian.com>
33086         * appdomain.c (mono_runtime_cleanup): Close the socket library
33087         after all the threads have finished, not before
33089 2002-06-26  Martin Baulig  <martin@gnome.org>
33091         * debug-symfile.c (mono_debug_find_source_location): Added
33092         `guint32 *line_number' argument.  If it's not NULL, store the line number
33093         there and return the file name without the line number.
33095 2002-06-25  Dick Porter  <dick@ximian.com>
33097         * icall.c:
33098         * process.h:
33099         * process.c: Process forking and other support functions
33101 2002-06-25  Dick Porter  <dick@ximian.com>
33103         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
33104         things dont happen when the image is closed.
33105         (mono_image_lookup_resource): Walk the resource section looking
33106         for a particular entry
33108         * cil-coff.h: PE resource section decoding
33110 2002-06-25  Dick Porter  <dick@ximian.com>
33111         
33112         * assembly.h:
33113         * assembly.c: 
33114         (mono_assembly_foreach): Accessor functions to walk the list of
33115         loaded assemblies
33116         (mono_assembly_set_main):
33117         (mono_assembly_get_main): Process methods need to know which
33118         assembly is the "main" one
33120         * object.c (mono_runtime_run_main): Record the main assembly
33122         * debug-helpers.c: Fix typo
33124 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
33126         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
33127         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
33129 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33131         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
33133 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
33135         * image.c (do_mono_image_open): Initialize reference count,
33136         otherwise we leak the MonoImage.
33138 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33140         * reflection.c: small tweak to handle self-hosting.
33142 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33144         * reflection.c: fix type name parse code.
33146 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33148         * reflection.c: break out of the loop.
33149         * image.c: special case corlib.
33151 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33153         * reflection.c: add all the custom attrs at the end to ensure the
33154         ctors have been properly initialized when the attributes are defined
33155         in the current assembly.
33157 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33159         * reflection.c: handle correctly multiple-nested types.
33161 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33163         * row-indexes.h: fix typos.
33164         * reflection.c: adjust for typos and fix method_def_or_ref
33165         encoding in MethodImpl table.
33167 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33169         * reflection.c: fix entry point patching (thanks Serge!).
33171 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
33173         * verify.c: add check for System.Exception
33175 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33177         * image.c, class.c: minifix for code just c&p'ed.
33178         * reflection.c: warning fix.
33179         * object.h, loader.h, domain.c: load also StringBuilder.
33181 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33183         * marshal.h, marshal.c: some support code to handle complex marshaling.
33185 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33187         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
33188         Better signatures with vtable error dump.
33190 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
33192         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
33194 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
33196         * icall.c (ves_icall_Type_GetField): impl.
33198 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33200         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
33201         to retrieve a marshal description blob for a field or param.
33203 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33205         * reflection.h, reflection.c: change order of nested type emission
33206         to avoid table corruption. The NestedTypes table is sorted.
33207         * icall.c: change order of GetConstructor results to workaround mcs bug.
33209 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33211         * reflection.h, reflection.c: handle field and param marshal
33212         information.
33214 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33216         * icall.c, marshal.c marshal.h: more Marshal class implementation.
33218 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33220         * reflection.c: fix call convention.
33222 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33224         * reflection.h, reflection.c: mono_image_get_memberref_token()
33225         takes a type instead of a class, now. Added
33226         mono_image_get_array_token() to create tokens for the special
33227         multi-dim array methods.
33229 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33231         * assembly.c: handle modules (no assembly table). Split
33232         loading references in its own function.
33233         * class.c: handle moduleref resolution scope.
33234         * image.c, image.h: cache module name in image.
33236 2002-06-07  Martin Baulig  <martin@gnome.org>
33238         * reflection.c (mono_image_get_type_info): Only add a class layout entry
33239         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
33241 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33243         * icall.c: more signature fixes that used uint instead of int.
33245 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33247         * reflection.c: fixed signature of field refs.
33249 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33251         * class.c, reflection.c: handle typerefs of nested types
33252         (both on read and when writing files).
33254 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33256         * icall.c: fix method signatures that tried to workaround the previous
33257         typo, d'oh!
33259 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33261         * debug-helpers.c: fix typo.
33263 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33265         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
33266         rewrote the PE/COFF writing code (our programs are understood by the
33267         ms runtime, now).
33269 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33271         * gc.c, gc.h, icall.c: weakreference support.
33273 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33275         * Makefile.am, mono-config.c: use $(sysconfdir).
33277 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33279         * icall.c: changed default precision of Double.ToString() to 15.
33280         Fixed memory leak. Unified with Single.ToString.
33282 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33284         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
33286 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33288         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
33289         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
33290         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
33291         and myself.
33293 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33295         * debug-symfile.c, sysmath.c: yet more compilation fixes.
33297 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33299         * reflection.c, socket-io.c: more compilation fixes.
33301 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33303         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
33304         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
33305         unicode.c: warning and compiler compatibility fixes.
33307 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33309         * class.h, metadata.c: fixed warnings/compilation errors.
33311 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33313         * Makefile.am, mono-config.c, mono-config.h: configuration file
33314         support routines.
33315         * loader.c, loader.h: make Dll mapping configurable at runtime in the
33316         config file. Export methods to insert and lookup mappings.
33318 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33320         * reflection.c: handle types and boxed objects in custom attr
33321         constructors.
33323 2002-05-30  Martin Baulig  <martin@gnome.org>
33325         * debug-symfile.c
33326         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
33328 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
33330         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
33331         to lookup the implmap row for a P/Invoke method.
33332         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
33333         P/Invoke method from the runtime on an as needed basis.
33335 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
33337         * metadata.c (mono_metadata_parse_signature): impl.
33339 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33341         * class.c: handle .pack directive.
33343 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33345         * object.c: initialize static fields with RVA data.
33347 2002-05-25  Martin Baulig  <martin@gnome.org>
33349         * debug-symfile.c
33350         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
33352 2002-05-24  Martin Baulig  <martin@gnome.org>
33354         * debug-symfile.c
33355         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
33356         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
33357         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
33359 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33361         * object.c: special case string ctros in invoke.
33362         * gc.c: silly whitespace changes.
33364 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
33366         * threadpool.[ch]: impl. a threadpool that can
33367         be used by mint and mono.
33369 2002-05-22  Martin Baulig  <martin@gnome.org>
33371         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
33372         The first argument is now a `MonoReflectionModuleBuilder *', the return
33373         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
33374         `methods' field to get the method builder.  The `token' argument is the
33375         unfixed token.
33377         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
33378         invalid characters instead of g_assert_not_reached()ing.  This seems
33379         to be the behaviour of mscorlib.
33381 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
33383         * object.c (mono_runtime_invoke_array): applied patch from Rachel
33384         Hestilow to fix bug #25104
33386 2002-05-21  Martin Baulig  <martin@gnome.org>
33388         * debug-symfile.c (mono_debug_find_source_location): New function.
33389         Looks up an IL offset in the line number table and returns the source
33390         location as a string.
33392 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33394         * icall.c:
33395         (mono_double_ToStringImpl): changed %f by %g until we have something
33396         better.
33398 2002-05-21  Nick Drochak  <ndrochak@gol.com>
33400         * icall.c : Use different name for Math.Pow's icall.  Needed to check
33401         parameters first in C#.
33403 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33405         * icall.c, reflection.h: added icall to get info about an event.
33407 2002-05-20  Radek Doulik  <rodo@ximian.com>
33409         * object.c (mono_value_box): don't use memcpy for boxing on BIG
33410         endian
33411         (mono_value_box): don't use memcpy for small sizes on
33412         architectures with unaligned access
33414 2002-05-20  Martin Baulig  <martin@gnome.org>
33416         * reflection.c (mono_reflection_setup_internal_class): Don't crash
33417         if `tb->parent == NULL'.
33418         (mono_reflection_create_internal_class): New function.  This is
33419         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
33420         for enum types.
33422         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
33423         New interncall.
33425 2002-05-19  Martin Baulig  <martin@gnome.org>
33427         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
33428         argument to get the length, don't default to the array length.
33430 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
33432         * assembly.c (mono_assembly_setrootdir): New function used to
33433         override the MONO_ASSEMBLIES directory.
33435 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33437         * icall.c: ValueType_GetHashCode() initialize local var.
33439 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33441         * reflection.c: sort custom attributes table.
33443 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33445         * reflection.c: support named args in custom attributes (write support).
33447 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33449         * reflection.c: fix finally position calculation.
33451 2002-05-15  Radek Doulik  <rodo@ximian.com>
33453         * reflection.c: fixed endianess at many places
33455         * icall.c (ves_icall_InitializeArray): comment out debug msg
33457 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
33459         * object.c (mono_unhandled_exception): new function to handle
33460         unhandled exceptions.
33461         (mono_unhandled_exception): call the UnhandledException event.
33462         (mono_runtime_delegate_invoke): impl.
33464 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
33466         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
33467         returns the RVA, not the direct pointer to the data. Handle the case
33468         when the class size is fixed.
33470 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33472         * reflection.c: fix some endianess issues.
33474 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
33476         * object.c (mono_runtime_invoke): is now able to catch exceptions.
33478         * threads.c (mono_thread_init): added a callback which is invoked
33479         at thread start.
33481 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33482         
33483         * icall.c: make GetHashCode return non-negative values.
33485 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33487         * object.c, icall.c, gc.c: revert to address-based hashcode.
33489 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
33491         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
33493 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33495         * icall.c, class.c: special case <Module>.
33497 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
33499         * icall.c: fix bug in GetNow().
33501 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
33503         * object.c (mono_runtime_class_init): make sure that we call all
33504         static class constructors.
33506 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33508         * reflection.c: sort methodsemantics table.
33510 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33512         * reflection.h, reflection.c: honour init locals setting.
33514 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
33516         * icall.c: copied Double ToStringImpl for Single ToStringImpl
33518 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33520         * reflection.c: support ContructorBuilders in attribute blob creation.
33522 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33524         * reflection.c: some changes to build a binary that can be run
33525         directly in windows.
33527 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33529         * loader.c: print a big message when an icall can't be found.
33531 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33533         * string-icalls.c: fix bug 24248.
33535 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33537         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33538         icall.c, reflection.h: separate assembly loading by pathname and by
33539         assembly name. Use the MONO_PATH env var to search for assemblies.
33541 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33543         * assembly.c, image.h: add some support for assemblies
33544         with multiple modules.
33545         * class.c, class.h: export mono_class_from_typeref().
33546         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33547         instead.
33549 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33551         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33552         documentation says (the ECMA one is correct).
33554 2002-05-02  Dick Porter  <dick@ximian.com>
33556         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33557         Don't name the synchronisation mutex.
33559 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33561         * rand.c
33562         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33563         Make the prototypes match.
33564         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33565         Same.
33567         * icall.c
33568         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33569         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33570         all systems have tm.tm_zone, so use strftime() with %Z to print
33571         the timezone abreviation into a temp string.
33573         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33574         rather than mono_array_addr() on a MonoString on Big Endian
33575         machines.
33577 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33579         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33580         fix bug 24041
33582 2002-04-30  Dick Porter  <dick@ximian.com>
33584         * socket-io.c: Cope with SOCKET being an integer rather than a
33585         pointer now.
33587         * threads.c: Added Thread_free_internal, to deal with thread
33588         handle cleanup.  Moved calls to handle_store() and handle_remove()
33589         to start_wrapper(), so each can only be called once.  Allocate
33590         synchronisation blocks with GC_malloc(), and use GC finalisation
33591         to close the handles.
33593         * icall.c: added System.Threading.Thread::Thread_free_internal
33595 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33597         * icall.c: support Environment.Exit, CommandLineArgs().
33599 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33601         * object.c, object.h: added mono_runtime_run_main () and
33602         mono_runtime_get_main_args () for use in System.Environment.
33604 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33606         * gc.c: fix thinko, enable actual finalization since the jit is now
33607         fixed.
33609 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33611         * gc.c, object.c: take into account that an object may be offset wrt the address
33612         returned by GC_malloc().
33614 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33616         * image.c: handle files without entries in the assembly table (modules).
33618 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33620         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33621         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33622         allowed to be null when it's System.Object class setup.
33624 2002-04-27  Martin Baulig  <martin@gnome.org>
33626         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33627         if `tb->parent == NULL' rather than crashing.
33629 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33631         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33632         calling acos() where asin() should have been called.
33634 2002-04-26  Martin Baulig  <martin@gnome.org>
33636         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33637         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33638         there's a subdirectory called `System', but we don't want to read that
33639         subdirectory as an assembly.
33641 2002-04-25  Martin Baulig  <martin@gnome.org>
33643         * debug-symfile.c: Reflect latest MonoString changes.
33645 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33647         * rand.c, rand.h: instance method icalls need to have an explicit
33648         this pointer as first argument in the C implementation.
33650 2002-04-25  Nick Drochak <ndrochak@gol.com>
33652         * icall.c: Fix typo in map for GetNonZeroBytes
33654 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33656         * string-icalls.c : String does now passes unit tests without any 
33657         errors, the following changes has been made:
33658         
33659         Implemented replace methods.
33660         Renaming of methods to (try) follow the standard.
33661         Fixed compare ordinal
33662         Made all memory allocated directly to function instead of via icall function.
33663         Small performance fix in is_in_array function
33664                         
33665  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33667         c (mono_string_Internal_ctor_charp_int_int):
33668         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33669         sindex < 0, throw ArgumentOutOfRangeException instead of
33670         ArgumentNullException.
33672         Added new check for length == 0, however
33673         I need to make it return String.Empty from the C code.
33674         
33675         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33676         that calculate the length for us here.
33677         
33678         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33679         mono_string_new_utf16 with mono_string_new, since value is utf8.
33681 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33683         * object.c: register the object for finalization if needed.
33684         Allocate one more char in the string for the terminating 0 char.
33686 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33688         * class.c, class.h, image.c: check if a type implemenst a destructor.
33689         Use the proper key for array class lookups.
33690         * icall.c: register the icalls in the System.GC class.
33691         * gc.c, gc.h: GC-related functions and icalls.
33693 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33695         * icall.c:
33696         * socket-io.c:
33697         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33698         changed a couple of free () by g_free ().
33700         * decimal.c: one-liner in the comments for decimal2string ().
33702 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33704         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33706 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33708         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33709         * object.c (mono_runtime_invoke_array) : handle null in params
33711 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33713         * string-icalls.c: fixed bug in split (one off bug)
33715 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33717         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33718         * icalls.c: added String::Equals as internal method
33720 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33722         * threads.c: fixed bug in the double interlocked functions
33724 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33726         * threads.c: implemented all of the new interlocked icalls.
33727         * string-icalls.c: fix a bug in insert.
33728         * icalls.c: added the icalls for interlocked, removed old string functions.
33729         
33730 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33732         * loader.c: fix off-by-one error when reading argument names.
33734 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33736         * profiler.c: win32 counter implementation (untested).
33737         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33738         (the latter needs testing and more complete impl. from win32 folks).
33740 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33742         * object.c: mono_array_new_full workaround mono_array_class_get
33743         problem.
33745 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33747         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33748         * object.h (mono_string_chars): Changed casting type.
33750 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33752         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33753                            method signatures to use gunichar2 instead of gint16.
33755 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33757         * object.h, object.c: domain-specific versions of mono_object_new and
33758         mono_array_new.
33760 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33762         * object.c: changed String layout
33764         * string-icalls.c (mono_string_Internal_ctor_chara): added
33765         internal string constructors.
33767 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33769         * threads.c: pass 'this' to the thread start routine.
33771 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33773         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33774         InternalCompareStr don't call twice mono_string_cmp_char for the last
33775         character. Improved performance in mono_string_cmp_char.
33777 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33779         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33780         code into its own library: libmonoruntime.
33782 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33784         * object.h, object.c: changed array format so that szarrays do not
33785         require a bounds structure.
33786         * icall.c, appdomain.c: support for new szarray format.
33788 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33790         * metadata.c: compare also the retuns type when comparing signatures:
33791         we didn't do this as an optimization since really overloaded methods
33792         must differ also in the arguments, but this doesn't work with
33793         low-level IL code (or when using explicit conversion operators: see
33794         bug#23498 for an example).
33796 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33798         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33800 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33802         * icall.c: make MonoType::GetElementType its own icall.
33804 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33806         * icall.c: remove MonoMethod_get_Name().
33807         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33808         object.
33810 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33812         * string-icalls.c: optimized a few methods.
33814 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33816         * icall.c: added all new string internal calls
33817         * string-icalls.c: added, new string internal call implementation.
33818         * object.c: added mono_string_new_size for allocating a string a size
33820 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33822         * object.c (mono_object_isinst): use the same code as in the
33823         optimized x86 version.
33825 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33827         * profiler.c: TSC-based timer code (faster and more accurate).
33828         Not hooked up in configure, yet (set USE_X86TSC to 1).
33830 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33832         * profiler.c, profiler.h: track time spent compiling methods.
33833         * threads.c: track thread creation/destruction.
33835 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33837         * profiler.c, profiler.h, profiler-private.h: profiling interface
33838         and sample implementation. Moved here so that it can be used also by
33839         the jit.
33841 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33843         * reflection.c, reflection.h: keep types and other handles separate in
33844         the hash tables for referred tokens. Add guid for modules.
33846 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33848         * assembly.c: fix bugs found with valgrind.
33849         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33851 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33853         * threads: added icall support for getting current domain for
33854                    the thread.
33856 2002-04-13  Martin Baulig  <martin@gnome.org>
33858         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33859         (MonoDebugVarInfo): Added `index' field for register based addresses.
33860         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33861         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33862         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33863         `MonoDebugVarInfo *this_var'.
33865         * debug-symfile.c (relocate_variable): New static function to write
33866         a location description for a local variable or method parameter.
33868 2002-04-12  Martin Baulig  <martin@gnome.org>
33870         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33871         stack offset and begin/end scope address of a local variable.
33872         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33873         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33874         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33876         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33877         Added new relocation types for start/end scope of a local variable.
33879 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33881         * object.h: add mono_object_domain() macro.
33882         * reflection.c: handle typespecs.
33883         * icall.c: MonoMethod::get_Name() implementation.
33885 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33887         * icall.c: String::GetHashCode() icall implementation.
33889 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33891         * icall.c: String::IndexOfAny icall.
33892         * object.c, object.h: make array->max_length more useful.
33893         Intrduced mono_object_class() and mono_string_length() macros.
33895 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33897         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33898         instead of g_unichar_isdigit.
33900 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33902         * icall.c: Implement a simple Double.ToString().
33904 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33906         * appdomain.h: only io-layer.h is supposed to be included.
33907         * icall.c: explicitly import environ. Fix warning.
33909 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33911         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33912                 return true even if it's not Daylight Savings time.
33913                 Only return false for the case where the function isn't
33914                 implemented for a plaform (read Windows).
33916 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33918         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33919         data with a mutex.
33921 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33923         * mempool.c (mono_mempool_alloc): only use g_malloc when
33924         absolutely necessary.
33926 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33928         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33930         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33931         (mono_class_proxy_vtable): use domain mempool
33933 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33935         * appdomain.h, appdomain.c: split initialization that requires the
33936         execution engine support into mono_runtime_init().
33938 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33940         * class.c (mono_class_init): don't include vtable inside MonoClass
33941         to save some memory, gather some statistics.
33942         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33944 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33946         * icall.c: internalcall implementation for ValueType.Equals().
33948 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33950         * object.c (mono_message_init): moved 
33951         (mono_runtime_exec_main): new arch. independent impl.
33952         (mono_runtime_invoke_array): new method - like
33953         mono_runtime_invoke, but you can pass an array of objects.
33954         (mono_remoting_invoke): new arch. independent impl.
33955         (mono_message_invoke): new arch. independent impl.
33956         (mono_runtime_class_init): new arch. independent impl.
33957         (mono_runtime_object_init): new arch. independent impl.
33959 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33961         * metadata.c, object.c, reflection.c: documented the exported
33962         functions.
33964 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33966         * icall.c: simpler code to pass the assembly builder data to corlib.
33967         Implement GetNestedTypes() internalcall.
33969 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33971         * class.c: warn if a type can't be loaded.
33973 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
33975         * image.h: typedef MonoImageOpenStatus
33976         * types.h: removed unused file
33977         
33978 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
33980         * icall.c: Enum_ToObject accepts enum value arguments.
33982 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33984         * class.c: move initialization of properties, events and nested
33985         classes, so that they happen for interfaces, too.
33987 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33989         * icall.c: cleanup some ugly casts in Array_SetValue*.
33991 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33993         * icall.c: the values array fro enums is of the correct type, now.
33994         Implement (correctly) getFullName instead of assQualifiedName for
33995         MonoType.
33996         * reflection.h, reflection.c: added mono_type_get_name ().
33998 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34000         * assembly.c, image.h: for each MonoImage, record from wich assembly
34001         it was loaded.
34002         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
34003         Make Type.Assembly work.
34005 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
34007         * debug-symfile.h: use char* instead of gpointer to avoid
34008         unnecessary casts.
34010         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
34012         * icall.c (ves_icall_InternalExecute): impl. FielSetter
34013         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
34015 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
34017         * icall.c (mono_message_init): impl. (code cleanup)
34018         (ves_icall_InternalExecute): impl. FieldGetter
34020         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
34021         defined we call all (non-static)methods through the vtable. 
34023 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
34025         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
34026         finalizer even though the memory is still referenced (and the chunk of
34027         memory is not freed).
34029 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34031         * assembly.c: fix brokeness.
34033 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
34035         * class.c: kill some warnings. Check explicit interface method
34036         implementation also without considering the namespace.
34037         Load also literal strings in static class data.
34039 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
34041         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
34042         (default_assembly_name_resolver): Make the resolver take the
34043         "base" directory where the assembly was originally defined, so we
34044         can load DLLs that are in the same directory as the assembly that
34045         is being referenced.
34047 2002-03-28  Dick Porter  <dick@ximian.com>
34049         * file-io.h: 
34050         * file-io.c:
34051         * socket-io.c: 
34052         * unicode.h: 
34053         * unicode.c: Warning cleanups
34055 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
34057         * object.h, reflection.h: use the correct type instead of MonoObject.
34059 2002-03-28  Martin Baulig  <martin@gnome.org>
34061         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
34062         (mono_debug_update_symbol_file): Initialize classes if necessary.
34064 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34066         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
34067         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
34069 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
34071         * assembly.h: fix function prototype.
34072         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
34073         * mono-endian.h: use const cast.
34075 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34077         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
34079 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34081         * loader.c: don't assert when a typeref can't be loaded, give
34082         a chance to the runtime to trow an exception instead.
34083         * loader.h: fix warning.
34085 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34087         * class.c (mono_class_proxy_vtable): added proxy support
34089 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
34091         * icall.c: removed last of PAL calls, added System.Environment
34092         * file-io.h, file-io.c: MonoIO implementation
34093         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
34095 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34097         * appdomain.c: do not use the byte marker in ldstr table lookup.
34098         * debug-helpers.c: allow two ':' to separate class and method name.
34099         * object.c: allocate arrays bounds with the GC, too.
34100         * verify: add a few more checks.
34102 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
34104         * reflection.c: output also literal strings. Allocate parameter data
34105         with GC_malloc() (thanks, Martin, for catching this!).
34107 2002-03-26  Martin Baulig  <martin@gnome.org>
34109         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
34110         include the `this' offset in the `param_offsets'.
34112 2002-03-25  Martin Baulig  <martin@gnome.org>
34114         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
34115         mono_debug_get_class() function to get the classes. Added new
34116         relocation types for arrays and strings.
34117         (mono_debug_get_class): New static function to search in all
34118         referenced assemblies for a metadata token.
34120         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
34122 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34124         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
34125         hold gc-allocated objects. Make the string heap a stream like the
34126         others. Removed duplicated code when writing stream info.
34127         Added asserts to catch possible buffer overflows. Set the sorted map
34128         for tables that need sorting. Added some documentation.
34130 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
34132         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
34133         for interned strings and vtables.
34135 2002-03-24  Martin Baulig  <martin@gnome.org>
34137         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
34138         it in the array since it was created with g_slist_prepend().
34140 2002-03-24  Martin Baulig  <martin@gnome.org>
34142         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
34143         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
34144         (mono_debug_method_from_token): Renamed to
34145         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
34146         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
34148         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
34149         relocation types.
34151         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
34153 2002-03-24  Martin Baulig  <martin@gnome.org>
34155         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
34156         (mono_debug_method_from_token): New func.
34158         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
34159         New interncall, calls mono_debug_local_type_from_signature().
34160         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
34161         calls mono_debug_method_from_token().
34163 2002-03-23  Martin Baulig  <martin@gnome.org>
34165         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
34166         specifies the number of bytes to be converted, not the array size.
34167         Return the number of chars, not the number of bytes.
34168         (ves_icall_iconv_get_chars): The `byteCount' argument
34169         specifies the number of bytes to be converted, not the array size.
34171 2002-03-23  Martin Baulig  <martin@gnome.org>
34173         * reflection.h (MonoReflectionSigHelper): New type.
34175         * reflection.c (mono_reflection_sighelper_get_signature_local),
34176         (mono_reflection_sighelper_get_signature_local): New functions.
34178         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
34179         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
34180         interncalls.
34182 2002-03-23  Martin Baulig  <martin@gnome.org>
34184         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
34185         is_writeable is set.
34186         (mono_raw_buffer_update): New function to write the modified map
34187         back to disk.
34189         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
34191         * debug-symfile.c (mono_debug_update_symbol_file): Call
34192         mono_raw_buffer_update() when done writing.
34194 2002-03-23  Martin Baulig  <martin@gnome.org>
34196         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
34198         * debug-symfile.c: Added support for arguments and local variables.
34200 2002-03-23  Dick Porter  <dick@ximian.com>
34202         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
34203         protected by ifdefs, hence breaking the w32 build.
34205 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34207         * object.c: implement is_interned() the right way.
34209 2002-03-21  Martin Baulig  <martin@gnome.org>
34211         * debug-symfile.[ch]: New files to handle debugging information
34212         files. There's also support to dynamically update these symbol
34213         files to include machine dependent information.
34215 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
34217         * threads.c (mono_thread_create): new function to create thread
34218         from C
34220 2002-03-20  Martin Baulig  <martin@gnome.org>
34222         * icall.c (ves_icall_InternalInvoke): Create a new object if the
34223         method is a constructor.
34224         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
34225         points to ves_icall_InternalInvoke().
34227 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
34229         * file-io.c: Flush shouldn't throw exceptions.
34231 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
34233         * file-io.c: FileStream flush support; FileSetLength now
34234         restores file pointer.
34236 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34238         * class.c: set image for pointer classes.
34240 2002/03/19  Nick Drochak <ndrochak@gol.com>
34242         * sysmath.c: Forgot one.
34244 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
34246         * sysmath.c: Avoid redefining existing names.
34248 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
34250         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
34251         handled by runtime as icall rather than dllimport from libm.so
34252         * file-io.c, file-io.h: fixed handle argument type.
34254 2002-03-18  Dick Porter  <dick@ximian.com>
34256         * reflection.c (mono_image_get_type_info): rename interface to
34257         iface, because of "#define interface struct" on windows.
34259 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
34261         * class.c, class.h: rename and export mono_ptr_class_get().
34262         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
34263         * reflection.c, reflection.h, icall.c: better/saner type name
34264         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
34265         method signatures.
34267 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
34269         * class.c (mono_class_init): removed hardcoded GHC_SLOT
34271         * icall.c (ves_icall_InternalInvoke): impl.
34273 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34275         * reflection.c: output the interface map table, too.
34277 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34279         * class.c (class_compute_field_layout): separate computation of 
34280         static field layout
34282 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
34284         * icall.c: added System.Buffer support.
34285         * file-io.c: moved file icalls from PAL to FileStream.
34287 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34289         * icall.c (ves_icall_System_Object_GetHashCode): impl.
34291 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
34293         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
34295 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34297         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
34299 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34301         * debug-helpers.{c,h}: moved here from monograph some useful functions
34302         to locate a method by name/signature in a class or image. Included
34303         also a small and flexible IL disassembler.
34305 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34307         * reflection.c: fixup tokens in methods with small header size, too.
34309 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
34311         * object.c (mono_string_to_utf8): remove assert(!error), instead
34312         print a warning. 
34314 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
34316         * icall.c: update to the new mono_Array_class_get interface.
34318 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34320         * appdomain.c, object.c: Boehm-GC enable.
34321         * icall.c: make get_data_chunk() support split data requests.
34322         Ensure a class is initialized in more cases. Return only the first
34323         property found in GetProperties() or the compiler gets confused. 
34324         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
34325         * reflection.h, reflection.c: add fixup mechanism for field and method
34326         tokens. Initialize assembly->typeref in a single place. Output
34327         properties after events. Support custom attributes for events, too.
34328         Typo fix for paramter custom attrs.
34330 2002-03-07  Martin Baulig  <martin@gnome.org>
34332         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
34334 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
34336         * class.c (mono_array_class_get): fix. for multi. dim. arrays
34338 2002-03-06  Martin Baulig  <martin@gnome.org>
34340         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
34341         non-zero lower bounds. See testcases #F10-#F13.
34343 2002-03-05  Martin Baulig  <martin@gnome.org>
34345         * exception.c (mono_get_exception_argument_out_of_range): New exception.
34347         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
34348         ves_icall_System_Array_GetValue(), only calculate the absolute array position
34349         here.
34350         (ves_icall_System_Array_SetValue): Likewise.
34351         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
34352         as argument and does the actual work. This function is used when copying a
34353         multi-dimensional array.
34354         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
34355         now do all the widening conversions of value types.
34356         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
34358 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34360         * class.c: remove some magic numbers and use the smbolic names,
34361         instead. Added init_events() to load event info at class init time.
34362         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
34363         and mono_metadata_methods_from_event().
34364         * reflection.h, reflection.c: added support for writing out the evnets
34365         related information.
34367 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34369         * reflection.h, icall.c: use a different method (GetInterfaces)
34370         to gather interface info and add isbyref, isprimitive and
34371         ispointer to the ves_icall_get_type_info() return value.
34373 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34375         * class.h: stared adding support for events.
34376         * icall.c: split find_members implementation. Added debug icall to get
34377         the address of an object.
34378         * reflection.c: handle TypeBuilders in mono_type_get_object().
34380 2002-03-01  Martin Baulig  <martin@gnome.org>
34382         * icall.c (ves_icall_System_Array_GetLength): This must throw an
34383         ArgumentOutOfRangeException(), not an ArgumentException().
34384         (ves_icall_System_Array_GetLowerBound): Likewise.
34385         (ves_icall_System_Array_GetValue): Improved argument checking.
34386         (ves_icall_System_Array_SetValue): Improved argument checking.
34388 2002-03-01  Martin Baulig  <martin@gnome.org>
34390         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
34391         called with invalid arguments rather than just dying with g_assert().
34392         (ves_icall_System_Array_SetValue): Likewise.
34393         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
34394         raise a NotImplementedException instead.
34395         (ves_icall_System_Array_GetLength): Added argument checking.
34396         (ves_icall_System_Array_GetLowerBound): Added argument checking.
34398 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
34400         * object.h (mono_assert): new macros mono_assert and
34401         mono_assert_not_reached
34403 2002-02-28  Martin Baulig  <martin@gnome.org>
34405         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
34406         and "System::String::IsInterned" to "System::String::_IsInterned".
34408 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
34410         * icall.c: remove hacks for typebuilder. Added icall to create a
34411         modified type from a tybebuilder.
34412         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
34413         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
34414         to create a backing MonoClass for a TypeBuilder.
34416 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34418         * class.c, class.h: more refactoring of class init.
34419         Export mono_class_setup_mono_type() and mono_class_setup_parent().
34421 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
34423         * marshal.c, marshal.h: start of marshaling interface.
34425 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34427         * icall.c: fix order in assembly qualified name icall.
34429 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34431         * class.c: do not free str, since we store it in the hash table.
34432         * reflection.h: add label field to MonoILExceptionInfo.
34433         * reflection.c: handle references to more than one assembly. Handle
34434         case when there isn't a module created in the assembly.
34436 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34438         * class.c: Fix typo. Start refactoring of class init code.
34440 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34442         * appdomain.c: exit with 1 on error.
34443         * class.c: we already have the name in MonoClassField.
34444         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
34445         MonoStreamHeader instead of an offset of image->raw_metadata.
34447 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
34449         * appdomain.c (mono_init): Be even more descriptive about the error.
34451 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
34453         * appdomain.c: give the user an informative message when corlib can't
34454         be loaded.
34456 2002-02-26  Martin Baulig  <martin@gnome.org>
34458         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
34459         New icall to get the time zone data.
34461 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34463         * reflection.c: set virtual and raw size of section correctly.
34464         * threads.c: transfer domain information to newly created threads.
34466 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34468         * class.c: when instancing a class in a domain, load the default
34469         vaules for static fields from the constant table. Fix System.Enum to
34470         not be an enum.
34471         * icall.c: implement Object::GetType() internalcall. Implemented
34472         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
34473         Fixed checking of binding flags in find_members().
34474         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
34475         * reflection.c: handle enumerations when writing to the constant
34476         table. Use a different object cache for types.
34479 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
34481         * object.c (mono_object_isinst): fix for arrays
34483         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
34485 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34487         * object.c: don't use mprotect ()  and fix intern pool hash table
34488         lookup for big endian systems.
34490 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34492         * icall.c: change type_is_subtype_of () signature.
34494 2002-02-21  Mark Crichton  <crichton@gimp.org>
34496         * rand.c, rand.h: Added random number generator for
34497         System.Security.Cryptography classes.
34499         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
34501         * icall.c: Added System.Security.Cryptography calls.
34503 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34505         * class.c, icall.c, metadata.c: better support for pointer types.
34506         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
34507         * reflection.c: Add support for getting custom attrs for properties
34508         and simplify some code.
34510 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34512         * icall.c: change getToken () and add custom attribute GetBlob()helper
34513         method.
34514         * reflection.h: add custom attrs array to the reflection builder structures.
34515         * reflection.c: encode and emit custom attributes for all the relevant
34516         reflection objects. Cache fieldref and methodref tokens. Change
34517         mono_image_create_token() interface to take a MonoDynamicAssembly.
34518         More complete custom attributes decoder. Load custom attributes for
34519         Assembly, Field, Method and Constructor objects, too. Make the
34520         returned array an Attribute[] one, not object[]. Added
34521         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
34522         custom attribute constructor.
34524 2002-02-20  Dick Porter  <dick@ximian.com>
34526         * icall.c:
34527         * rawbuffer.c:
34528         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34529         problem code out for now).
34531 2002-02-19  Radek Doulik  <rodo@ximian.com>
34533         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34535 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34537         * icall.c: register the GetCustomAttributes method.
34538         * object.c, object.h: add mono_string_new_len ().
34539         * reflection.h, reflection.c: added mono_runtime_invoke(),
34540         mono_install_runtime_invoke(). Added
34541         mono_reflection_get_custom_attrs () to load custom attributes and
34542         create the attribute objects.
34544 2002-02-19  Dick Porter  <dick@ximian.com>
34545         * threads-dummy-types.c:
34546         * threads-dummy-types.h:
34547         * threads-dummy.c:
34548         * threads-dummy.h:
34549         * threads-pthread-types.c:
34550         * threads-pthread-types.h:
34551         * threads-pthread.c:
34552         * threads-pthread.h:  Deleted obsolete files
34554 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34556         * class.c (mono_class_vtable): runtime init the class when we
34557         allocate static class data.
34559         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34561         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34562         and String - but we will need generic marshalling support in the
34563         future. 
34564         (mono_init): set the domain name in a ms compatible way
34566         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34567         String[].
34569 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34571         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34572         for sizes
34574         * appdomain.c (mono_domain_unload): impl.
34576 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34578         * appdomain.c, object.c: fix intern pool implementation.
34579         * class.c: fix alignment code.
34581 2002-02-16  Radek Doulik  <rodo@ximian.com>
34583         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34584         and s2 > s1, just copy lower bytes to be compatible with little
34585         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34586         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34588         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34589         force big_endian to be 1 for big endian machines 
34590         (ves_icall_iconv_new_decoder): ditto
34592 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34594         * socket-io.c (convert_sockopt_level_and_name): If the system
34595         doesn't define SOL_IP or SOL_TCP, get them by hand using
34596         getprotobyname() and caching the values (because this could be a
34597         slow operation).
34598         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34599         Use the appropriate struct when the system does support it. Ie,
34600         not all systems have struct ip_mreqn so use struct ip_mreq when
34601         appropriate.
34603 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34605         * reflection.c: handle finally clauses.
34607 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34609         * socket-io.c: use g_snprintf() instead of snprintf.
34611 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34613         * reflection.c (mono_param_get_objects): Cast second argument to
34614         mono_method_get_param_names to a const char** to silence the
34615         compiler warning.
34617         * appdomain.c (mono_domain_assembly_open): Put parens around the
34618         truth statement in the for-loop.
34620         * unicode.c (iconv_convert): Got rid of a compiler warning about
34621         int i being unused when the system has a new iconv.
34622         (iconv_get_length): Same.
34624         * image.c (load_class_names): Cast the second argument to
34625         g_hash_table_insert() to char* to hush compiler warnings about the
34626         arg being a const.
34627         (mono_image_open): Same here.
34629         * socket-io.c: Don't conditionally include sys/filio.h or
34630         sys/sockio.h here anymore since we now get them from
34631         io-layer/io-layer.h
34632         (inet_pton): If the system doesn't support inet_aton, implement
34633         using inet_addr and also #define INADDR_NONE if it isn't defined
34634         by the system.
34636 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34638         * metadata.c, metadata.h: added function to get packing and size info
34639         of a typedef.
34640         * reflection.h, reflection.c: handle field RVA data. Save info about
34641         the table layout if needed. Assign typedef indexes to all the types
34642         before dumping the info about them to avoid forward reference problems.
34644 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34646         * socket-io.c (convert_sockopt_level_and_name): ifdef
34647         SO_ACCEPTCONN because it is not defined on my system (old debian)
34649 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34651         * opcode.c: use stddef.h to get NULL.
34653 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34655         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34656         for FIONBIO, FIONREAD and SIOCATMARK.
34657         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34658         define INADDR_NONE and besides, inet_addr() is deprecated and
34659         should not be used. Use inet_pton() instead - it also has the
34660         added bonus that it can easily handle IPv6 addresses as well.
34661         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34663 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34665         * decimal.c: remove _MSC_VER conditional.
34667 2002-02-13  Dick Porter  <dick@ximian.com>
34669         * socket-io.c: 
34670         * icall.c: Internal calls for Blocking, Select, Shutdown,
34671         GetSocketOption and SetSocketOption
34673 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34675         * assembly.cs: better resolver: use it instead of some kludgy
34676         code.
34678 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34680         * reflection.c: the best way to speed-up the compiler is to avoid
34681         infinite loops.
34683 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34685         * class.c (mono_class_vtable): changed the object layout
34686         (obj->vtable->class). 
34687         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34689 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34691         * assembly.c: look for assemblies in the assembly dir, too.
34693 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34695         * class.c: fix thinko in mono_class_from_type().
34697 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34699         * exception.h, exception.c: added TypeLoadException.
34700         * object.h, object.c: added mono_array_clone ().
34701         * icall.c: handle throwOnError in AssemblyGetType().
34702         Added Array.Clone().
34703         * opcode.h, opcode.c: use a single value for the opcode val.
34704         Compile fix for non-gcc compilers.
34706 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34708         * opcodes.c, opcodes.h: export interesting info about opcodes.
34710 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34712         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34713         icalls. 
34715         * class.c (class_compute_field_layout): set element_class for enums
34716         (mono_class_create_from_typedef): set element_class for normal classes
34718         * icall.c (ves_icall_System_Enum_get_value): impl.
34720         * class.c (mono_class_create_from_typedef): do not set valuetype
34721         flag for System.ValueType and System.Enum
34723 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34725         * unicode.c (iconv_convert): fix big endian problem.
34727 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34729         * class.c: add asserts if we are ever going to scribble over memory.
34730         * socket-io.c: not all systems have AF_IRDA defined.
34732 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34734         * class.c (class_compute_field_layout): do not consider static
34735         fields to compute alignment
34737 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34739         * appdomain.c (mono_appdomain_get): impl.
34740         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34742 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34744         * icall.c: ignore "file://" prefix when loading an assembly.
34746 2002-01-23  Dick Porter  <dick@ximian.com>
34748         * socket-io.c:
34749         * icall.c:
34750         * Makefile.am: Added socket support
34752 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34754         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34755         code back.  This should return the assemblies that are loaded by
34756         the runtime on behalf of an application domain. 
34758         The current implementation is still broken, it just returns every
34759         assembly loaded, but until we get real applications domain this
34760         will do.
34762 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34764         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34765         AppDomain object.
34767 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34769         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34770         the mono_class_from_name lookup.
34771         (ves_icall_get_parameter_info): ditto.
34772         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34773         method.
34774         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34776 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34778         * class.c: load also nested classes on class init.
34779         System.ValueType instance methods gets passed boxed
34780         values, unless methods in derived classed that get a pointer to the
34781         data.
34782         * icall.c: use better name parsing code in GetType().
34783         * image.c, image.h: add mono_image_loaded ().
34784         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34785         * reflection.c, reflection.h: added mono_reflection_parse_type().
34787 2002-01-22  Veronica De Santis <veron78@interfree.it>
34789         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34790         * threads.c : Added the implementation of internal calls for events
34791         * threads.h : Added prototypes of internal calls for events
34792         
34793 2002-01-21  Radek Doulik  <rodo@ximian.com>
34795         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34797 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34799         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34800         (mono_class_value_size): use min_align
34802 2002-01-20  Dick Porter  <dick@ximian.com>
34804         * threads.h:
34805         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34806         so it compiles on w32.
34808 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34810         * metadata.c (mono_type_stack_size): impl.
34812         * class.c (mono_class_get_field): impl. memberref token
34814 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34816         * icall.h : Added the internal calls mapping for CreateMutex_internal
34817                     and ReleaseMutex_internal.
34818         * threads.h : Added the prototype of mutexes internal calls.
34819         * threads.c : Added the implementations of mutexes internal calls.
34821 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34823         * metaparse.h: removed unused file.
34824         * reflection.c, reflection.h: added stream_data_align () function 
34825         to align data in streams and keep stream aligned. Add support for
34826         exception support in method headers.
34828 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34830         * unicode.c: make iconv_convert () return the number of bytess written
34831         in the output buffer.
34833 2002-01-15  Dick Porter  <dick@ximian.com>
34834         * threads.c: Make the runtime's idea of infinite timeouts coincide
34835         with the class library's
34837         Fix a particularly egregious bug in mono_thread_cleanup(). That
34838         code was so utterly bogus it must have been written on a Monday.
34840 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34842         * reflection.h: add subtypes field to TypeBuilder.
34843         * reflection.c: encode constants for literal fields.
34844         Handle subtypes. Fix user string token (and add a zero byte)
34845         at the end.
34846         
34847 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34849         * class.c (mono_class_init): bug fix: assign slot numbers for
34850         abstract methods.
34852 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34854         * reflection.c: don't try to output a code RVA for abstract methods.
34855         Small fixes for method header format. Output parameter info to the
34856         ParamDef table. Save method overriding info to MethodImpl table.
34857         Fix property support. Allow typedef.extends to be a type in the
34858         building assembly.
34859         * verify.c: fix off-by-one error.
34861 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34863         * class.c: fix mono_class_from_mono_type () for szarray types.
34864         Remove unused cache check in mono_class_from_type_spec().
34865         * icall.c: *type_from_name () functions handle simple arrays and byref.
34866         * reflection.c: handle byref and szarray types. Handle methods without
34867         body (gets P/Invoke compilation working). Handle types and fields in
34868         get_token ().
34869         * reflection.h: add rank to MonoTypeInfo.
34871 2002-01-10  Dick Porter  <dick@ximian.com>
34873         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34874         internal calls
34876 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34878         * icall.c: initialize class in type_from_handle ().
34879         Loop also in parent classes for get_method ().
34880         * reflection.c: properly encode class and valuetype types.
34881         Start on encoding TypeBuilder types. Handle fieldrefs.
34882         Use correct length when registering a user string.
34883         Handle ConstructorBuilder and MonoMethod in get_token ().
34884         Make mono_type_get_object () aware of cached types.
34885         * object.c: back out change to mono_string_new ().
34887 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34888         * object.c: mono_string_new should return a NULL when the string 
34889         passed in is NULL -- not try to deference it.
34890         
34891 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34893         * icall.c: hack to make IsSubType work for TypeBuilders.
34894         * reflection.c: emit constructors before methods.
34895         Retrieve param names in mono_param_get_objects().
34897 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34899         * Makefile.am: fix list of headers and sources so automake 1.5
34900         doesn't complain. Removed \# at end of list.
34902 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34904         * reflection.c: get token for a method ref. Set return type of
34905         constructor to void.
34906         * loader.c: debug message.
34907         * class.c: typo fix.
34909 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34911         * icall.c: fix array init with rank > 1. FindMembers
34912         loops in parent class as well.
34913         * image.c: do not insert nested types in name cache.
34914         * reflection.c: warning fix.
34915         * reflection.h: add override method (for interface impl).
34917 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34919         * metadata.c: fix customattr decoding.
34921 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34923         * rawbuffer.cs: Added native Win32 implementation, avoids using
34924         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34926 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34928         * class.c: make the low-level routines handle the cache.
34930 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34932         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34934 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34936         * class.c: fix mono_array_element_size() for objects.
34937         * class.h, class.c: add properties to MonoClass and load them
34938         at init time.
34939         * icall.c: check with isinst() when assigning a value to an array
34940         instead of requiring the classes to match exactly.
34941         Implemented icall for System.Type::GetType().
34942         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34943         enums. Handle bindingflags when looking for methods and fields.
34944         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34945         and mono_metadata_methods_from_property().
34946         * reflection.h, reflection.c: added structures for propreties,
34947         parameters and enums. Implemented mono_property_get_object() and
34948         mono_param_get_objects().
34950 2001-12-18  Dick Porter  <dick@ximian.com>
34952         * file-io.c: Use mono_string_to_utf16() instead of
34953         mono_string_chars()
34955         * object.c: Added mono_string_to_utf16(), which copies the non
34956         NULL-terminated MonoString into a new double-null-terminated
34957         buffer.
34959 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
34961         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
34963 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
34965         * file-io.c: raise exceptions if handle is invalid.
34967 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
34969         * assembly.c: yet another check for mscorlib.
34970         * class.c, class.h: load nesting info for classes.
34971         * icall.c: many new functions to support the Reflection classes.
34972         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
34973         * reflection.h, reflection.c: mono_image_create_token(),
34974         mono_assembly_get_object(), mono_type_get_object(),
34975         mono_method_get_object(), mono_field_get_object(): methods to return
34976         objects that parallel the C representation of assemblies, types,
34977         methods, fields.
34979 2001-12-11  Dick Porter  <dick@ximian.com>
34981         * icall.c:
34982         * file-io.c: Internal calls for file IO.
34984 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
34986         * tabledefs.h: missing FileAttributes.
34987         * verify.h, verify.c: use is_valid_string () to simplify and check for
34988         valid strings more correctly. Fix warnings and speeling.
34989         Check more tables: Filed, File, ModuleRef, StandAloneSig.
34990         Check code: branches, maxstack, method calls.
34992 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34994         * object.c (mono_object_allocate): removed static, so that the jit
34995         can allocate value types.
34997         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34999 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35001         * class.c: init enum types right away and register the
35002         token->MonoClass map in mono_class_create_from_typedef ().
35003         * verify.h, verify.c: first cut of the verifier.
35004         * pedump.c: add --verify switch to verify metadata tables.
35005         * tabledefs.h: add some missing enums.
35007 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
35009         * class.c (mono_install_runtime_class_init): impl.
35010         (mono_class_init): renamed mono_class_metadata_init to
35011         mono_class_init, also removed the metadata_inited flag
35013         * object.c (mono_object_isinst): use faster algorithm
35015 2001-11-30  Radek Doulik  <rodo@ximian.com>
35017         * mono-endian.h: reverted last change
35018         added function prototypes
35020         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
35021         add mono-endian.c back
35023         * mono-endian.c: returned back, as Paolo pointed out, it's needed
35024         for unaligned access, I've mistaked it with endianess. I am
35025         sorry.
35026         (mono_read16): fix reverted endianess
35027         (mono_read64): ditto
35028         (mono_read32): ditto
35030 2001-11-30  Dick Porter  <dick@ximian.com>
35032         * exception.c: Implement mono_exception_from_name()
35034 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35036         * metadata.h, metadata.c: remove params_size and locals_size and their
35037         calculation from the metadata code: they are only usefult to the
35038         interp.
35040 2001-11-29  Radek Doulik  <rodo@ximian.com>
35042         * object.c (mono_ldstr): swap bytes here, it's probably not the
35043         best place, but works for me now, I'll redo it once I know mono
35044         better, also note that I add PROT_WRITE and don't reset back, also
35045         note that it's only affects big endians, so x86 should be OK
35047         * mono-endian.h (read16): use just glib macros for both endians
35049         * mono-endian.c: removed as glib macros are used in in
35050         mono-endian.h so we don't need to care about endianess for read
35051         macros as glib does that for us already
35053 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
35055         * class.h, class.h: take minimum alignment into consideration so
35056         that the fields of a class remain aligned also when in an array.
35058 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35060         * loader.h, loader.c: add mono_method_get_param_names().
35061         * class.c: 0-init class fields.
35063 2001-11-26  Dick Porter  <dick@ximian.com>
35065         * icall.c:
35066         * threads-types.h:
35067         * threads.c: New file that handles System.Threading on all platforms
35069         * object.c: 
35070         * object.h: Remove the synchronisation struct from MonoObject,
35071         replace it with a pointer that gets initialised on demand
35073         * Makefile.am: Replace all the system-specific threading code with
35074         a single file that uses the new wrapper library
35076 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
35078         * class.c, class.h: add mono_install_trampoline() so that the runtime
35079         can register a function to create a trampoline: removes the ugly
35080         requirement that a runtime needed to export arch_create_jit_trampoline.
35081         * object.h, object.c: added mono_install_handler() so that the runtime
35082         can install an handler for exceptions generated in C code (with
35083         mono_raise_exception()). Added C struct for System.Delegate.
35084         * pedump.c: removed arch_create_jit_trampoline.
35085         * reflection.c: some cleanups to allow registering user strings and
35086         later getting a token for methodrefs and fieldrefs before the assembly
35087         is built.
35088         * row-indexes.h: updates and fixes from the new ECMA specs.
35090 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
35092         * class.h, class.c: add enum_basetype field to MonoClass.
35093         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
35094         to get index in the constant table reated to a field, param or
35095         property.
35096         * reflection.h, reflection.c: handle constructors. Set public-key and
35097         version number of the built assembly to 0.
35098         * row-indexes.h: update from new ECMA spec.
35100 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35102         * class.h, class.c: add a max_interface_id to MonoClass.
35103         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
35104         since it's used to do that. Added mono_type_type_from_obj().
35105         Make GetType() return NULL instead of segfaulting if the type was not
35106         found. Handle simple arrays in assQualifiedName.
35107         * object.h: add a struct to represent an Exception.
35108         * reflection.c: output call convention in method signature.
35109         Add code to support P/Invoke methods and fixed offsets for fields.
35111 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
35113         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
35114         the value.
35115         * icall.c: use mono_array_addr instead of array->vector: fixes the
35116         reflection image writing.
35117         * reflection.c: init call convention byte to 0 in method signature.
35118         Encode the property signature. Don't output property-related methods
35119         twice. Really process the properties for a type (don't cast a field to
35120         a property, my mom always told me that).
35121         Fix 64 bit issues in pointer alignment in a different and more
35122         readable way.
35124 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
35126         * loader.h: Removed type class from MonoDefaults, added monotype
35128         * loader.c: Loaded MonoType, removed loading of Type
35130         * icall.c (my_mono_new_object): Now returns a System.MonoType,
35131         and fills in System.Type._impl with a RuntimeTypeHandle rather
35132         than the actual MonoClass *
35134         (ves_icall_type_from_handle): change from type_class to
35135         monotype_class
35137         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
35138         implemented
35140         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
35141         implemented
35143         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
35145         (ves_icall_System_Reflection_Assembly_GetType): implemented
35147         (ves_icall_System_MonoType_assQualifiedName): implemented
35149         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
35151 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
35153         * assembly.c (mono_assembly_open): Implement a cache for the
35154         assemblies. 
35156         (mono_assembly_close): only destroy the assembly when the last
35157         reference is gone.
35158         
35159 2001-11-09  Dick Porter  <dick@ximian.com>
35161         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
35163 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
35165         * class.c (mono_class_metadata_init): bug fix: compute the right slot
35167 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35169         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
35170         from Martin Weindel.
35171         * object.h: add mono_string_chars ().
35173 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
35175         * reflection.c (build_compressed_metadata): Eliminates warnings
35176         and uses 64-bit clean code.
35178         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
35179         (mono_type_equal): Change signature to eliminate warnings.
35181 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35183         * icall.c, loader.c: remove the internalcall array constructors.
35184         Changes to match the new MonoArray structure.
35185         * object.h, object.c: an array object doesn't allocate an extra
35186         vector. Add mono_array_new_full () to create jagged arrays easily.
35188 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35190         * metadata.h, metadata.c: add mono_metadata_field_info () to
35191         retreive all the info about a field from vairous tables.
35192         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
35193         * class.h, class.c: augment MonoClassField with more info.
35194         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
35195         policy and load a field's RVA if needed.
35197 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
35199         * class.c (mono_class_metadata_init): create a trampoline for all
35200         virtual functions instead of actually compiling them.
35202 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
35204         * class.h, class.c: include name in MonoClassField.
35205         * class.c: fix fundamental type of System.Object and System.String.
35206         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
35207         tokens in ldtoken.
35208         * icall.c: remove internalcalls for the Reflection stuff that is now
35209         done in C# code.
35210         * loader.c: mono_field_from_memberref () implementation.
35211         * mono-endian.c: thinko (s/struct/union/g).
35212         * object.c, object.h: make the mono_string_* prototypes actually use
35213         MonoString instead of MonoObject.
35214         * reflection.c, reflection.h: updates for changes in the reflection
35215         code in corlib: we use C structures that map to the actual C# classes.
35216         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
35217         fat method header if needed and use the info from the ILGenerator for
35218         methods. Handle fields in types. Misc fixes.
35220 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
35222         * class.c (mono_class_metadata_init): bug fix: always allocate
35223         space for static class data
35225 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
35227         * class.c (mono_compute_relative_numbering): use relative
35228         numbering to support fast runtime type checks.
35230 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
35232         * class.c (mono_class_create_from_typeref): added debugging output
35233         to print class name when MonoDummy is returned instead of real class
35235 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
35237         * class.c (mono_class_metadata_init): interface offset table now
35238         contains pointers into the vtable - this is more efficient for the jit
35240 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
35242         * class.c (mono_class_metadata_init): use a temporary vtable (the
35243         old algorithm only worked for the interpreter, but not for the jit)
35245 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
35247         * loader.c (method_from_memberref): use mono_class_get to get the
35248         class of an array instead of using System.Array directly.
35249         (mono_get_method): also add MEMBERREF methods to the method cache
35250         which usefull for arrays.
35252 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
35254         * pedump.c (arch_compile_method): added to compute vtable entry
35256         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
35257         number of interfaces.
35258         
35259         * class.h: merged MonoArrayClass into MonoClass
35261         * class.c (mono_class_create_from_typedef): compute the vtable size and
35262         allocate space to include the vtable inside MonoClass
35263         (mono_class_metadata_init): initialize the vtable
35265 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
35267         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
35268         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
35269         * image.c: endian fixes by Laurent Rioux.
35270         * object.h, object.c: rename MonoStringObject to MonoString and
35271         MonoArrayObject to MonoArray. Change some function names to conform to
35272         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
35273         guint16* as first argument, so don't use char*.
35274         Provide macros to do the interesting things on arrays in a portable way.
35275         * threads-pthread.c: updates for the API changes and #include <sched.h>
35276         (required for sched_yield()).
35277         * icall.c: updates for the API changes above.
35278         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
35279         platforms that need them.
35281 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35283         * class.c: set the correct type for all the fundamental
35284         type when loading the class.
35286 2001-10-05  Dick Porter  <dick@ximian.com>
35288         * threads-pthread.c (pthread_mutex_timedlock): Simple
35289         compatibility version for C libraries that lack this call.
35291 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35293         * class.c: MonoTypes stored in MonoClass are stored as
35294         fundamental MonoTypes when the class represents a
35295         fundamental type (System.Int32, ...).
35296         The TypeHandle return by ldtoken is a MonoType*.
35297         * icall.c: ves_icall_get_data_chunk () write out all the
35298         PE/COFF stuff. Implement ves_icall_define_method (),
35299         ves_icall_set_method_body (), ves_icall_type_from_handle ().
35300         * image.c: properly skip unknown streams.
35301         * loader.h, loader.c: add type_class to mono_defaults.
35302         * metadata.c, metadata.h: export compute_size () as
35303         mono_metadata_compute_size () with a better interface.
35304         Typo and C&P fixes.
35305         * pedump.c: don't try to print the entry point RVA if there is no entry point.
35306         * reflection.c, reflection.h: many cleanups, fixes, output method
35307         signatures and headers, typedef and typeref info, compress the metadata
35308         tables, output all the heap streams, cli header etc.
35309         * row-indexes.h: typo fixes.
35311 2001-10-04  Dick Porter  <dick@ximian.com>
35313         * object.h: Add a synchronisation mutex struct to MonoObject
35315         * object.c (mono_new_object): Initialise the object
35316         synchronisation mutexes
35318         * icall.c: System.Threading.Monitor internal calls
35319         
35320         * threads-pthread.h:
35321         * threads-pthread.c: System.Threading.Monitor internal calls
35323         * threads-types.h: New file, includes the system-specific thread
35324         structures
35325         
35326         * threads-pthread-types.h:
35327         * threads-pthread-types.c: New files, handle pthread-specific
35328         synchronisation types
35330         * threads-dummy-types.h: 
35331         * threads-dummy-types.c: New files of dummy support for
35332         thread-specific types
35334         * metadata.c:
35335         * image.c:
35336         * pedump.c: include mono-endian.h not endian.h
35337         
35338         * Makefile.am: More threads files.
35339         Name mono-endian.h not endian.h
35341 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
35343         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
35344         stuff and implement a few more bits.
35345         * icall.c: a field needs to be dereferenced twice. Do not use the same
35346         name for two variables in the same scope.
35347         * image.c, image.h: cleanups.
35349 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
35351         * class.c (mono_class_metadata_init): bug fix: compute the right size
35353 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
35355         * icall.c: implemented some of the Reflection internalcalls.
35356         * image.c, image.h: start writing out the PE/COFF image.
35357         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
35358         that does the reverse than decode_blob_size ().
35359         * object.c: use mono_metadata_encode_value (). Move here
35360         temporary implementation of mono_string_to_utf8 ().
35361         * rawbuffer.c: make malloc_map static.
35363 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35365         * metadata.c: fix type comparison for arrays.
35366         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
35367         Added a couple of new classes to monodefaults.
35368         * icall.c: added a couple of Reflection-related internalcalls.
35369         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
35370         Added a byval_arg MonoType to MonoClass.
35372 2001-09-28  Dick Porter  <dick@ximian.com>
35374         * icall.c:
35375         * threads-pthread.h: 
35376         * threads-pthread.c: Implemented internal calls for
35377         LocalDataStoreSlot operations.  Applied mutexes around all shared
35378         data.  Reworked the thread creation and Start() operations to
35379         avoid a race condition.
35380         
35381         * threads-dummy.h:
35382         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
35384 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
35386         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
35388 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
35390         * class.c, loader.c: warn and return NULL instead of erroring out.
35391         * icall.c: added System.AppDomain::getCurDomain().
35392         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
35394 2001-09-25  Dick Porter  <dick@ximian.com>
35396         * threads-pthread.h:
35397         * threads-pthread.c: Implemented timed thread joining and added
35398         System.Threading.Thread::Join_internal internal call
35400         * icall.c: Added System.Threading.Thread::Join_internal internal call
35402         * threads-dummy.h:
35403         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
35405 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
35407         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
35408         mono_string_intern () to implement the semantics of the ldstr opcode
35409         and the interning of System.Strings.
35410         * icall.c: provide hooks to make String::IsIntern and String::Intern
35411         internalcalls.
35413 2001-09-23  Dick Porter  <dick@ximian.com>
35415         * threads-dummy.c: 
35416         * threads-dummy.h: New files of dummy threading routines
35418         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
35419         support code based on system specifics
35421         Rename PTHREAD_LIBS to THREAD_LIBS
35422         
35423 2001-09-23  Dick Porter  <dick@ximian.com>
35425         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
35426         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
35427         internal calls.
35428         (mono_thread_init): Set up a Thread object instance to return when
35429         the main thread calls Thread.CurrentThread
35430         (mono_thread_cleanup): Wait for all subthreads to exit
35432         * icall.c: New internal calls for System.Threading.Thread::Sleep
35433         (including Schedule) and CurrentThread
35435         * threads.h: New file, to insulate thread-specific stuff from the
35436         rest of the code
35438 2001-09-21  Dick Porter  <dick@ximian.com>
35440         * threads-pthread.h: 
35441         * threads-pthread.c: New file, for handling pthreads-style
35442         threading support.  Start() now starts a new thread and executes
35443         the ThreadStart delegate instance.
35445         * icall.c: Added the internalcall for
35446         System.Threading.Thread::Start_internal
35448         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
35450 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
35452         * loader.c: work around the different signatures for delegates
35453         constructors csc generates in compiled code vs the ones compiled in mscorlib.
35455 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35457         * class.h, class.c: add mono_class_get_field_from_name ().
35458         * *: Fix C comments and other ANSI C issues.
35460 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
35462         * endian.h, assembly.c: fix some endianness issues.
35464 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
35466         * loader.h, load.c: add delegate_class to mono_defaults.
35467         Handle runtime provided methods in mono_get_method ().
35469 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
35471         * loader.c (mono_get_method): use pinvoke for internal call
35473         * icall.c: use pinvoke for internal call
35475         * loader.c (method_from_memberref): set the method name
35477 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
35479         * metadata.c: help the compiler generate better code for
35480         mono_class_from_mono_type ().
35482 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
35484         * class.c (mono_class_metadata_init): delayed computing of the
35485         class size to mono_class_metadata_init ()
35487 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
35489         * class.c, class.h: add an interfaces member to MonoClass.
35490         * image.c, image.h: add assembly_name field to MonoImage
35491         from the assembly table.
35492         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
35494 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35496         * class.c: Handle Array in mono_class_from_mono_type ().
35497         * metadata.c, pedump.c: some endian fixes.
35499 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35501         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
35502         * metadata.c: fix small problem introduced with the latest commit.
35504 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
35506         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
35507         We don't need a MonoMetadata pointer anymore to compare signatures in
35508         mono_metadata_signature_equal (), update callers.
35509         Reduced memory usage an number of allocations for MonoMethodHeader and
35510         MonoMethodSignature.
35512 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
35514         * metadata.c: added compare for szarray.
35516 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
35518         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
35519         and add a couple more types to it and mono_defaults. Give an hint on
35520         classes that need implementing in our corlib and are referenced
35521         in mscorlib.
35523 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
35525         * class.h, class.c: keep track if a class is also an Enum.
35526         * loader.c: Implement a couple more types for use in libffi
35527         marshalling. Gives better diagnostics when failing to dlopen
35528         a library. Set method->klass for P/Invoke methods, too.
35530 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35532         * class.c, class.h: add a MonoType this_arg to MonoClass that
35533         represents a pointer to an object of the class' type that
35534         can be used by the interpreter and later the type cache.
35535         Add best guess alignment info for valuetype objects.
35537 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35539         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35540         into MonoType: one less level of indirection and allocation and
35541         simplifies quite a bit of code. Added cache for MonoTypes that are
35542         used frequently, so that we don't need to allocate them all the time.
35544 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35546         * class.c (mono_class_create_from_typedef): System.Enum is also a
35547         value type, although it does not derive from System.ValueType
35548         (maybe a bug in the ms compiler?)
35550         * metadata.c (mono_type_size): return the right size for value types
35552         * loader.c (mono_get_method): only initialize method header if not abstract
35554         * class.c (mono_class_from_mono_type): use mono_default values. 
35556 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35558         * *: use MonoClass pointers instead of <type_tokens>
35559         
35560         * class.h: new flag: metadata_inited.
35562         * class.c (mono_class_metadata_init): impl.
35563         (mono_class_instance_size): impl.
35564         (mono_class_data_size): impl.
35566 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35568         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35569         MonoClass now has the name and name_space fields. 
35570         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35571         mono_get_method () takes and optional MonoClass as argument.
35572         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35573         instead that takes advantage of a map from class names to typedef
35574         tokens in MonoImage.
35576 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35578         * metadata.c: zero is not a valid alignment boundary.
35579         Merge MONO_TYPE_VOID in default decoding code.
35581 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35583         * image.h: merged MonoMetadata into MonoImage
35585         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35586         identify the type of elements.
35588 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35590         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35591         * cil-coff.h: split MonoMSDOSHeader and add size info.
35592         * image.c: add some consistency checks.
35593         * metadata.c: fix row size computation: one programmer
35594         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35595         add explanation for the locator routine.
35596         Fix decoding of size in method header.
35597         
35598 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35600         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35601         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35602         function from gnome-libs.  This uses the right path separator
35603         based on the OS, and also works around a bug in some systems where
35604         a double slash is not allowed. 
35605         (default_assembly_name_resolver): Use g_concat_dir_and_file
35606         (mono_assembly_open): ditto.
35608 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35610         * metadata.c (mono_metadata_signature_equal): impl.
35612         * *: void is now a realy MonoType (instead of using NULL)
35613         
35614         * metadata.c (do_mono_metadata_parse_type): use
35615         mono_metadata_parse_type to parse void value.
35617 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35619         * metadata.c, metadata.h: in the signature and method header store
35620         only the space required for holding the loca vars and incoming arguments.
35622 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35624         * metadata.c (do_mono_metadata_parse_type): treat void like any
35625         other type (instead of assigning NULL);
35627 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35629         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35631 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35633         * image.c (do_mono_image_open): added a cache for arrays.
35635 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35637         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35638         decode a single column from a row in a metadata table and changes
35639         to take advantage of it in the typedef locator (gives a nice speed up).
35640         Store offset info for function params.
35642 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35644         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35646 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35648         * assembly.c: how could mono_assembly_close () had ever worked?
35649         * metadata.c, metadata.h: provide offset info for local vars.
35650         Implement mono_type_size () to take care of alignment as well
35651         as size (it was mono_field_type_size in cli/class.c before).
35653 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35655         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35657         * assembly.h (CORLIB_NAME): set to corlib.dll
35659         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35661 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35663         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35664         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35665         tokentype.h: massive namespace cleanup.
35667 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35669         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35671 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35673         * metadata.c (mono_metadata_free_type): added check for type !=
35674         NULL (void) before calling mono_metadata_free_type()
35676 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35678         * metadata.h, row_indexes.h: added header with enumerations to use
35679         to index in the columns from tables in metadata and to decode coded
35680         tokens: we should start using this instead of embedding magic numbers
35681         all over the code.
35683 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35685         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35686         Move metadata_t info from cli_image_info_t to MonoImage, where
35687         it's easily accessible. Changed all the uses accordingly.
35688         Added the method and class caches to MonoImage.
35689         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35690         and mono_metadata_decode_value () signature to be more consistent
35691         with the other parse functions (and simplify code). Taken advantage
35692         of zero-length array allocation with GCC. Removed reduntant (and
35693         wrong) MonoFieldType struct and use MonoParam instead. Changed
35694         mono_metadata_parse_field_type () to use common code for parsing.
35695         Added mono_metadata_typedef_from_field () and
35696         mono_metadata_typedef_from_method () to lookup a typedef index from a
35697         field or method token.
35698         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35700 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35702         * metadata.c (mono_metadata_parse_field_type): Implement. 
35703         (do_mono_metadata_parse_type): Split engine from
35704         mono_metadata_parse_type, so that we can create smaller structures
35705         for things that just have one pointer to the MonoType (look at
35706         the MonoFieldType)
35708 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35710         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35711         as Jan Gray found out, it is incorrect. 
35713 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35715         * assembly.c: Implement asssembly loading.  This loads an image
35716         and loads all the referenced assemblies.  Come to think of it, we
35717         could always do lazy loading of the assemblies. 
35719         * image.c (mono_image_open): Keep loaded images in a hashtable.
35721         * image.h (MonoImage): Add reference count.
35723 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35725         * assembly.c (mono_assembly_open): Keep track of the file name in
35726         case the assembly has no ASSEMBLY table.
35728         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35729         from get.c here.
35731 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35733         * metadata.c, metadata.h: decode local vars in method header
35734         parse function. Change callers accordingly.
35736 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35738         * metadata.h, cil-coff.h: protect against multiple inclusion.
35739         Added some new structures to hold information decoded from metadata:
35740         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35741         and relevant decoding/free functions.
35742         * metadata.c: implement decoding functions. Add warning for out of bounds
35743         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35744         all the info about a method signature and invocation. Remove check on
35745         uninitialized local var in parse_mh() and fix memory leak.
35747 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35749         * metadata.h: More macros.
35751         * tokentype.h: New file.
35753 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35755         * assembly.c: added a consistency check and initialize
35756         some structures with g_new0().
35757         * metadata.c: fixed a couple more bugs in table size computation
35758         and add other checks for out-of bound access to metadata.
35760 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35762         * metatada.c: fix bugs computing table sizes. Spew a
35763         warning when index in string heap is out of bounds.
35765 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35767         * metadata.h: Add a couple of macros to manipulate tokens. 
35769 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35771         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35772         cli_section_tables).
35774 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35776         * metadata.c (mono_metadata_user_string): New function, provides
35777         access to the UserString heap. 
35779 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35781         * metadata.c: Add inline documentation.
35783 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35785         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35786         files. 
35788 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35790         * typeattr.h: New file, TypeAttribute flags. 
35792 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35794         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35795         mono_assembly_ensure_section): Section loading code.
35796         (load_section_tables): Load the sections.
35798         * mono/metadata/metadata.c (mono_metadata_locate_token,
35799         mono_metadata_locate): Functions to locate the information
35800         definition given a token or a table and an index.
35801         (mono_metadata_compute_table_bases): New.
35802         (compute_size): New function to compute the sizes of the various
35803         tables.
35805         * mono/metadata/metadata.h: Finish listing the different index
35806         types. 
35808         * mono/metadata/pedump.c: Improve to dump new information.
35810 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35812         * mono/metadata/metadata.c: Entered all the tables matching
35813         Beta2. 
35815         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2