2010-02-04 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blob84bacd17414958a87a2aaf8bd5b4982871265aab
1 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
3         * mono-basic-block.c:
4         * mono-basic-block.h: New implementation of a basic block formation pass.
5         The formation pass does static liveness analysis as well to detect dead
6         basic blocks.
8 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
10         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
11         'this' argument in icalls.
13 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
15         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
17 2010-02-01  Mark Probst  <mark.probst@gmail.com>
19         * object.c, domain.c: When using SGen, we must register
20         vtable->type as a root if it's not a MonoType, because then it
21         wasn't pin-alloced.
23 2010-02-01  Mark Probst  <mark.probst@gmail.com>
25         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
26         at the start of nursery collections, because we might have had
27         degraded allocations which changed next_data.
29 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
31         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
32         custom attr so this function works in cross-compiling mode.
34 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
36         * class.c (make_generic_param_class): Initialize interface offsets since we
37         set klass->inited. Fixes #574819.
39 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
41         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
42         calling the JIT domain cleanup hook.
44 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
46         * pedump.c (main): Properly set the verifier mode when running the metadata
47         verifier.
49 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
51         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
52         overlapping fields now that we're called before has_references is set.
54         * pedump.c (dump_verify_info): Clear any loader error before verifying another
55         method. Otherwise all sort of weird stuff happens.
57 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
59         * object.c (mono_field_get_value_object): Handle nullable types correctly.
60         Fixes #572874.
62 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
64         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
65         Fixes #573322.
67 2010-01-23  Mark Probst  <mark.probst@gmail.com>
69         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
70         pin_staging_area_index is greater than 0.
72 2010-01-22 Miguel de Icaza (miguel@novell.com)
74         * loader.c: Since we do nothing with the error returned, pass NULL
75         to ignore the error.
77 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
79         * reflection.c (typebuilder_setup_fields): Pretend field setup already
80         happened before starting to encode the actual fields. This avoid ciclic
81         dependencies and eventual crashes.
83         Fixes #572660.
85 2010-01-21  Mark Probst  <mark.probst@gmail.com>
87         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
88         atomic and remove the half-constructed hack in SGen.
90 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
92         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
93         has a recursive reference to itself.
95         Fixes #571863.
97 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
99         * loader.c (mono_method_signature): Fix error message.
101 2010-01-21  Mark Probst  <mark.probst@gmail.com>
103         * sgen-gc.c: Reuse to-space sections between nursery collections.
105 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
107         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
108         from the current assembly or mscorlib. Fixes bug #322957.
110 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
112         * marshal.c: Calculate the target class of the delegete invoke wrappers using
113         get_wrapper_target_class.
115 2010-01-19  Mark Probst  <mark.probst@gmail.com>
117         * sgen-gc.c: Fix warnings.
119 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
121         * verify.c (store_local): Better error message.
123 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
125         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
126         arguments.
128 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
130         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
131         function is generics variance aware.
133 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
135         * security-core-clr.c (mono_security_core_clr_can_access_internals):
136         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
138 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
140         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
141           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
143         Code is contributed under MIT/X11 license.
145 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
147         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
148         on a GTD.
150 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
152         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
153         return a point to a wrapper specific info structure describing the wrapper.
154         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
156 2010-01-18  Mark Probst  <mark.probst@gmail.com>
158         * sgen-gc.c: Make minor collection section allowance adaptive,
159         depending on the amount of memory reclaimed in the last major
160         collection.  If more memory was reclaimed (i.e. more garbage
161         produced), do the next collection earlier.
163 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
165         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
166         to itself.
168         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
169         the token as parameter.
171         * verify-internals.h: Ditto.
173         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
175         Fixes #571460.
177 2010-01-18  Mark Probst  <mark.probst@gmail.com>
179         * sgen-gc.c: Make store_remset_buffer_index long.
181 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
183         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
185         Fixes #569579.
187 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
189         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
190         off precise marking if it is available.
191         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
193 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
195         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
197         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
198         pinned objects.
200         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
201         to the array allocator.
203 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
205         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
206         result of mono_compile_method (), it already includes an ftnptr.
208 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
210         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
212 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
214         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
215         hash value which doesn't depend on glib/eglib versions.
216         (mono_metadata_type_hash): Use it.
218         * object.c (mono_method_get_imt_slot): Ditto.
220 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
222         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
223         independently of the GTD.
225         * class.c (mono_class_setup_fields): Fail if field has negative offset.
227         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
228         to the upper limit since instance_size includes this amount.
230         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
232         Fixes #569544.
234 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
236         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
237         with static methods.
239         * object.c (build_imt_slots): Avoid asserting when static methods are
240         encountered in an interface.
242 2010-01-13  Mark Probst  <mark.probst@gmail.com>
244         * sgen-gc.c (to_space_expand): Fix assertion.
246 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
248         * string-icalls.c: missing declaration fixes.
249         * sgen-gc.c: portability fixes.
251 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
253         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
255         * class.c:
256         * cominterop.c:
257         * icall.c:
258         * object.c: 
259         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
261 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
263         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
264         it can fail loading the type.
266         * class.c: Add mono_class_inflate_generic_class_checked.
268         * class.c:
269         * verify.c:
270         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
272 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
274         * loader.c (mono_method_signature_checked): New internal function taking an
275         MonoError argument.
277         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
278         Fixes build on rh 7.3.
280 2010-01-10  Aaron Bockover  <abockover@novell.com>
282         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
283         at runtime in the same way as on Windows, which yields a relocatable
284         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
285         of the running mono process.
287         On TARGET_ARM, fallback () will always be executed.
289 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
291         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
293 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
295         * class.c (mono_class_is_assignable_from_slow): Support variant
296         generic delegates.
298         * class.c (mono_class_implement_interface_slow): Support types with
299         variant generic arguments.
301 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
303         * verify.c: Remove some code duplication.
305 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
307         * object.c: Update docs.
309 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
311         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
313         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
314         fallback trampoline as well.
316         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
317         out argument that is set to TRUE if the match was direct. 
319         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
321         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
323 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
325         * class.c: Add mono_class_interface_offset_with_variance function that does same
326         as mono_class_interface_offset but takes variance into account.
328         * class-internal.h: Export mono_class_interface_offset_with_variance.
330         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
332 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
334         * object.c:
335         * icall.c:
336         * class.c: Add some FIXME for due to variant generic arguments.
338         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
339         can't use the simple bitfield check, so call mono_class_is_assignable_from if
340         the bitfield check fails.
342 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
344         * class.c (mono_class_is_assignable_from): Rework the generics variance code
345         to be easier to read and fix bugs in the case a non generic type implements a variant
346         interface.
348         * class.c (mono_class_has_variant_generic_params): Make non static.
350         * class-internals.h: Export mono_class_has_variant_generic_params as part of
351         the private API.
353 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
355         * assembly.c: fix MONO_PATH debug output.
357 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
359         * culture-info-table.h : regenerated.
361 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
363         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
364         types that are meant to not have a parent.
366 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
368         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
369         from the image mempool, so it is not leaked.
371 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
373         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
375 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
377         * verify.c (verify_valuetype_layout_with_target): Fix case
378         that can lead to infinite recursion. Fix bug #567861
380 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
382         * pedump.c: Run code verifier even if image verification fails
383         due to a failed type we. This allows more errors to be shown.
385 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
387         * class.c (count_virtual_methods): Remove the assert and now
388         fail properly.
389         
390         * class.c (setup_interface_offsets): This can fail now.
392         * class.c (mono_class_setup_vtable_general): Check for parent vtable
393         errors. Check setup_interface_offsets errors.
395         * class.c (setup_interface_offsets): Simplify the return error logic
396         and remove class_init_ok.
398         Fixes #560327.
400 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
402         * class.c (mono_class_init): Do class verification at the beginning. Add
403         some asserts to avoid tripping into invalid memory.
405         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
406         g_error and a decent message.
408         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
410         Fixes #567548.
412 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
414         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
415         as inline functions instead of defining them in mempool.c.
417         * metadata-internals.h (MonoImageSet): New structure representing a set of
418         MonoImages, which own a collection of generic instances.
420         * metadata.c: Get rid of the global generic caches, instead assign each generic
421         instance to the image set which consists of all the images referenced by the
422         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
423         the memory used by generic instances to be allocated from a per image-set mempool
424         later.
426 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
428         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
430 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
432         * appdomain.c (zero_static_data): Fix a warning.
434         * locales.c (construct_culture_from_specific_name): Applied patch from
435         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
436         not found. Fixes #567900.
438 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
440         * loader.c (mono_method_get_signature_full): Remove two asserts.
441         Return NULL instead so that the verifier can handle both cases 
442         gracefully.
444 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
446         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
447         so we can properly fail types instead of crashing.
449         Fixes #567676.
451 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
453         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
454         generic method.
456 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
458         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
460 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
462         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
463         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
464         we can't remove it from it since we don't hold the lock.
465         (mon_new): Free the orphaned events here when a mon structure is added to the
466         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
467         this down.
469 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
471         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
472         as max stack might be zero.
474         Fixes #562320.
476 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
478         Rework all uses of mono_class_setup_methods to accept that it can fail now.
480         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
481         instances if the GTD did.
483         * class.c (mono_class_setup_properties): Ditto.
485         * class.c (mono_class_setup_events): Ditto.
487         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
489         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
490         error setting.
492         * class.c (mono_class_init): Fail if GTD did.
494         * cominterop.c:
495         * generic-sharing.c:
496         * icall.c:
497         * loader.c:
498         * object.c:
499         * verify.c: Properly handle failure of mono_class_setup_methods.
501 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
503         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
504         mono_class_inflate_generic_method_full internal.
506         * class.c (inflate_generic_context): Now takes a MonoError argument.
508         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
509         errors.
511 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
513         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
514         they cannot be patched. Partly fixes #564408.
516 2009-12-24  Mark Probst  <mark.probst@gmail.com>
518         * metadata-internals.h, reflection.c: Use the
519         MonoDynamicImage.handleref hash table only with unmanaged keys,
520         and add a managed hash table handleref_managed for managed keys.
522 2009-12-24  Mark Probst  <mark.probst@gmail.com>
524         * sgen-gc.c: Unset to-space bumper between collections.  It might
525         become invalid due to degraded allocations.
527 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
529         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
530         with the one from the original method.
532         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
533         compatibility.
535         * verify-internals.h: Add new function to the internal API.
537 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
539         * culture-info-tables.h: regenerated it to include the Georgian culture.
541 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
543         * sgen-gc.c: Include mono/utils/memcheck.h.
545         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
546         instead of the current domain, since the two might not match if this is called
547         from the debugger.
549         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
550         domain which created this assembly.
552 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
554         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
556 2009-12-17  Mark Probst  <mark.probst@gmail.com>
558         * sgen-gc.c: Managed implementation of the specialized generic
559         store write barrier.
561 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
563         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
564         A private virtual newslot method is used to implement an interface method without exposing
565         it to users. When querying for public instance methods, such method would hide a public one
566         on a parent type.
568         Fixes #564379.
570 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
572         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
573         conventions.
575 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
577         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
579 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
581         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
582         as they are no longer used.
583         
584          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
586         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
588 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
590         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
591         if the owner class has not been finished before returning reflection_info.      
593         Fixes #565127.
595 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
597         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
598         param doesn't have custom attributes. Fixes #565117.
600         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
601         #565120.
603 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
605         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
607 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
609         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
610         same amount done by a core-clr enabled runtime.
612 2009-12-15  Marek Habersack  <mhabersack@novell.com>
614         * appdomain.c (mono_make_shadow_copy): make sure access mode of
615         the target files is reset to writable by owner and readable by
616         everyone else to prevent problems when updating shadow copies of
617         files whose source is read-only. Fixes bug #556884
619 2009-12-15  Mark Probst  <mark.probst@gmail.com>
621         * class.c (mono_generic_class_get_class): Allocate the generic
622         class via malloc again, so that it can be freed when any one of
623         the images of its constituent types is closed.
625         * metadata.c: When closing an image, don't free generic insts and
626         generic classes right away, but put them into a list for later
627         freeing.
629         * image.c, metadata-internals.h: Store the free list and in the
630         second pass of closing an image, free it.
632 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
634         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
636         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
637         types in type_hash.
639         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
641 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
643         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
644         user type.
646         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
647         is used.
649 2009-12-14  Miguel de Icaza  <miguel@novell.com>
651         * verify.c (mono_method_verify): The Unused opcodes produce an
652         InvalidProgramException on .NET
654 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
656         * loader.c (mono_method_get_header): Move assert after the verifier
657         has been called on the method header.
659 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
661         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
663         * appdomain.c: Bump corlib version.
665 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
667         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
668         types as well since otherwise generic instances would not return UT as arguments but
669         their undelying system type.
671         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
672         to reflect the fact that they can have now multiple different types.
674         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
676         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
678         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
680         * reflection.c (mono_reflection_register_with_runtime): Init super types
681         if the image is not dynamic.
683         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
684         check if the generic type definition is a TypeBuilder.
686         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
687         doesn't belong to a dynamic image, skip initialization.
689         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
690         base definition is not a dynamic type.
692 2009-12-11  Marek Habersack  <mhabersack@novell.com>
694         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
695         mono_profiler_string_allocation
697         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
698         if string profiling is enabled, call
699         mono_profiler_string_allocation
701         * profiler.h: added two MonoProfileFlags -
702         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
703         installation functions for the hooks below.
705         * profiler-private.h, profiler.c: added two hooks:
706         mono_profiler_string_allocation called whenever a string is
707         allocated by InternalAllocateStr and mono_profiler_iomap called
708         whenever IOMAP code performs an adjustement on a file path.
710 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
712         * boehm-gc.c: fixed race condition while getting the target of a
713         disappearing link (bug #522233).
715 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
717         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
718         the error.
720 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
722         * reflection.c: Add mono_reflection_register_with_runtime icall to
723         allow a MonoGenericClass to register itself as the managed mirror of
724         a given generic instance.
725         This is a temporary workaround until all MGC instantiation happens in
726         managed code.
728         * object-internals.h: Ditto.
730         * icall-def.h: Ditto.
732 2009-12-10  Mark Probst  <mark.probst@gmail.com>
734         * sgen-gc.c (find_in_remsets): Also search the generic store
735         remsets.
737 2009-12-10  Mark Probst  <mark.probst@gmail.com>
739         * sgen-gc.c: Don't access class names in debugging code when
740         unloading a domain, because they might not be valid anymore.
742 2009-12-10  Mark Probst  <mark.probst@gmail.com>
744         * domain.c, domain-internals.h: New function mono_domain_unset().
746         * appdomain.c (unload_thread_main): Detach the thread again at the
747         end.
749         * threads.c: When a thread exists or is detached, unset its domain
750         so that it's NULL when, for example, a pthread destructor runs.
752         * sgen-gc.c: Assert that there is no domain set after a thread is
753         done.
755 2009-12-10  Mark Probst  <mark.probst@gmail.com>
757         * class.c (mono_generic_class_get_class),
758         metadata.c (free_generic_class): Allocate generic MonoClass's from
759         the image mempool, not via malloc.  The problem with malloc is
760         that when unloading a domain those classes are freed before
761         clearing the heap and SGen needs the classes.  Rewriting the
762         unloading code to do the free later would be more work and there's
763         no point in using malloc anyway.
765 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
767         * loader.c (mono_method_signature): Always call mono_loader_unlock 
768         before returning.
770 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
772         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
773         user string blobs.
775         * verify-internals.h: Add new function to the internal API.
777         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
778         check if it's a valid string.
780         * object.c (mono_ldstr): Ditto.
782         Fixes #561943.
784 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
786         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
787         from a method before returning it. This is the expected behavior.
789 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
791         * reflection.c (inflate_method): Handle the case of a regular system type.
793 2009-12-08  Mark Probst  <mark.probst@gmail.com>
795         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
796         gathering code.
798         * mempool.c, mempool-internals.h: New function
799         mono_mempool_get_bytes_allocated().
801         * Makefile.am: sgen-pinning-stats.c added.
803 2009-12-08  Mark Probst  <mark.probst@gmail.com>
805         * sgen-gc.c (create_allocator): Only use the fast path if the
806         object size is within the small object size limit.
808 2009-12-07  Mark Probst  <mark.probst@gmail.com>
810         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
811         possibly adding padding to sizeof (GCMemSection).
813 2009-12-07  Mark Probst  <mark.probst@gmail.com>
815         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
816         reference is not in the nursery.
818 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
820         * class.c (mono_class_from_typeref): Bounds check idx against the 
821         assemblyref table.
823 2009-12-07  Mark Probst  <mark.probst@gmail.com>
825         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
826         through the potential roots, then sort the results and find the
827         pinned objects from there.
829         * Makefile.am: sgen-pinning.c added.
831 2009-12-07  Mark Probst  <mark.probst@gmail.com>
833         * sgen-gc.c: Record generic stores in specialized remset buffers.
835 2009-12-06  Mark Probst  <mark.probst@gmail.com>
837         * sgen-gc.c: Make pinned chunks the same size as major heap
838         sections, and align them as well, so that we can check whether an
839         object is in a pinned chunk or a major section in constant time.
841 2009-12-06  Mark Probst  <mark.probst@gmail.com>
843         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
845 2009-12-06  Mark Probst  <mark.probst@gmail.com>
847         * sgen-gc.c: Make all major heap sections the same size (currently
848         128k) and allocate them on aligned addresses.  Small heap sections
849         give us better granularity with pinned objects - we can free up
850         much more memory.
852 2009-12-06  Mark Probst  <mark.probst@gmail.com>
854         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
855         output removed.
857 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
859         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
861         * mono/metadata/assembly.c: When opening an assembly image, pass the real
862         names in addition to the runtime generated one.
864         * mono/metadata/image.h: Add a function to take the real name of the assembly
865         image.
867         * mono/metadata/image.c: If a real name has been passed to load an assembly,
868         use it instead of the runtime generated one.
870         Code is contributed under MIT/X11 license.
872 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
874         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
875         before the other checks to prevent problems if the DateTime class is blittable.
876         Hopefully fixes #559600.
878 2009-12-05  Mark Probst  <mark.probst@gmail.com>
880         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
881         returns the largest string length that will not be put into the
882         LOS.
884         * sgen-gc.c, gc-internal.h: New function that returns the largest
885         object size that will not be put into the LOS.
887         * appdomain.c: Bump corlib version.
889 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
891         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
893         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
895 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
897         * reflection.c (inflate_method): Fix signature.
899         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
900         in managed code.
902 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
904         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
906 2009-12-03  Mark Probst  <mark.probst@gmail.com>
908         * sgen-gc.c: Abstract to-space handling.
910 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
912         * loader.c (find_method_in_class): Ignore methods with broken signatures.
914         Fixes #559906.
916 2009-12-03  Mark Probst  <mark.probst@gmail.com>
918         * sgen-gc.c: Only add references from outside the nursery to
919         within the nursery to the global remset list.
921 2009-12-03  Mark Probst  <mark.probst@gmail.com>
923         * appdomain.c (create_exceptions): Set the domain temporarily if
924         necessary to avoid cross-domain references.
926 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
928         * verify.c (get_stack_type): Return that the type is invalid instead of
929         asserting.
931         * verify.c (mono_method_verify): Verify that all locals and arguments
932         have valid stack types.
934         Fixes #559913.
936 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
938         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
939         bounds checking overflow aware.
941         Fixes #559910.
943 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
945         * verify.c (do_invoke_method): Check for invalid method signatures.
947         Fixes #553450.
949 2009-12-02  Jb Evain  <jbevain@novell.com>
951         * appdomain.c (MONO_CORLIB_VERSION): bump.
952         * icall-def.h (get_base_definition): renamed to get_base_method
953         and add a boolean argument indicating we want the original
954         method definition, or the immediate base method.
955         * icall.c: apply the get_base_definition to get_base_method change.
957 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
959         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
961         Fixes #558042.
963 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
965         * class.c: remove asserts for invalid type token in
966         mono_class_name_from_token(), mono_assembly_name_from_token() and
967         mono_class_create_from_typedef () (fixes bug #553318).
969 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
971         * metadata.c, class.c, loader.c: remove assert after bsearch() for
972         incorrect assemblies (bug #553322).
974 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
976         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
978         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
980         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
982         * class.c (inflate_generic_context): Ditto.
984         * loader.c (method_from_methodspec): Ditto.
986         Fixes #558230.
988 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
990         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
992         * class.c (mono_class_create_from_typespec): Ditto.
994         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
996         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
998         Fixes #558184.
1000 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1002         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
1004         * verify.c (verify_delegate_compatibility): Ditto.
1006         * verify.c (do_newobj): Ditto.
1008         Fixes #558046.
1010 2009-12-02  Mark Probst  <mark.probst@gmail.com>
1012         * sgen-gc.c: Use a gray queue instead of requiring that gray
1013         objects are in a contiguous region.
1015         * sgen-gray.c: The gray queue implementation.
1017         * Makefile.am: sgen-gray.c added.
1019 2009-12-02  Mark Probst  <mark.probst@gmail.com>
1021         * appdomain.c: When unloading a domain, zero its static data and
1022         perform a minor collection when using SGen.  That will get rid of
1023         all the remsets pointing into that domain's static data.
1025         * sgen-gc.c: Allow remsets into static data.  By doing this we
1026         need less checks so we're more efficient.
1028 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1030         * verify.c (mono_method_verify): Check for catch clauses with broken
1031         types.
1033         Fixes #558465.
1035 2009-12-01  Jb Evain  <jbevain@novell.com>
1037         * class.c (make_generic_param_class): set the namespace of
1038         the generic parameter class from its owner, if available.
1040 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1042         * verify.c (code_bounds_check): Do proper overflow checking.
1044         * verify.c (mono_method_verify): The number of switch entries is
1045         an unsigned int. Properly bounds check it.
1047         Fixes #558594.
1049 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1051         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
1052         mono_metadata_method_has_param_attrs which only checks if a given param
1053         list has a non zero flags entry.
1055         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
1056         to inform how many params should we expect to decode.
1058         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
1059         as it's faster than mono_metadata_get_param_attrs.
1061         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
1062         add mono_metadata_method_has_param_attrs.
1064 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1066         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
1067         failures.
1069         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
1070         is -1 but its class is broken.
1072         Fixes #558522.
1074 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1076         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
1077         for parameter overflow.
1079         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
1080         of mono_metadata_get_param_attrs.
1082         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
1083         API.
1085         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
1087 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1089         * class.c (mono_class_setup_fields): Check for fields with broken types.
1091         Fixes #558741.
1093 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
1095         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
1096         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
1097         its TypeBuilder::CreateType ().
1099         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
1100         if not needed.
1102         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
1103         to make setup_interface_offsets happy.
1105         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
1106         compilation now works.
1108 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
1110         * appdomain.c (create_exceptions): New helper function extracted from
1111         mono_runtime_init () to precreate objects used during exception handling.
1112         (mono_runtime_init): Call it.
1113         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
1115 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1117         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
1118         compilation until the proper one is found.
1120 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
1122         * class.c (mono_class_setup_vtable_general): Cache the result of
1123         get_virtual_methods () since it can be slow because of the metadata
1124         optimization.
1126         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
1127         from a MonoValueHashTable for now, since the later is based on an earlier
1128         version of hpj's internal probing code and seems to have serious collision
1129         issues.
1131         * loader.c (mono_get_method_full): Update after the change above.
1133 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1135         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
1137 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1139         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
1140         the GTD instead of the DGC instead of crashing.
1142         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
1143         required. Inflate fields if needed.
1145         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
1146         finished. Renamed.
1148 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1150         * class.c (check_interface_method_override): Check for NULL signatures and fail
1151         the type.
1153         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
1155         Fixes #553428.
1157 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1159         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
1160         the MONO_METHOD_FLAGS column instead of decoding the whole row.
1162 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1164         * loader.c (field_from_memberref): Resolve the class first then the field
1165         signature. Remove a lot of duplicated code and make sure we don't pass valid
1166         values to mono_loader_set_error_field_load.
1168         Fixes #553306.
1170 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1172         * class.c (inflate_generic_type): Change code to use new signature of
1173         mono_error_set_bad_image.
1175         Fixes #558124.
1177 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
1179         * verify.c (mono_method_verify): Don't free ctx.params items if 
1180         we aborted while inflating the ctx.locals. Complete previous fix
1182 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
1184         * verify.c (mono_method_verify): Use the uninflated type name, 
1185         when the inflated is null, to report errors. Also take care when
1186         freeing, not to free everything since, in case of an error, some
1187         stuff would be copies (i.e. not allocated by the function itself)
1188         Fix bug #558145
1190 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1192         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
1193         or overflow. The caller must have done this check explicitly. This guard us
1194         from accessing invalid memory.
1196         * verify.c (do_push_static_field): Check for stack overflow.
1198         Fixes #553333.
1200 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1202         * loader.c (find_method_in_class): Don't crash if the signature cannot
1203         be resolved.
1205         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
1206         of asserting for the case of invalid params.
1208         Fixes #553304.
1210 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
1212         * image.c (mono_image_load_module): Fix crash when a bad assembly
1213         has no module at all (fix bug #553412) and also replace the 
1214         g_assert with a return NULL (documented return value for failure)
1216 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
1218         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
1220 2009-11-23  Miguel de Icaza  <miguel@novell.com>
1222         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
1223         file attribute to managed code and avoid doing the mask/attribute
1224         checks here. 
1226 2009-11-22  Miguel de Icaza  <miguel@novell.com>
1228         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
1229         the managed world.
1231         * icall-def.h: New entry points.
1232         
1233 2009-11-19  Mark Probst  <mark.probst@gmail.com>
1235         * process.c: Don't put references to managed objects into a
1236         g_ptr_array.
1238 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
1240         * class.c (can_access_internals): Allow CoreCLR to participate in
1241         allowing (or not) [InternalsVisibleTo] between assemblies.
1242         * security-core-clr.c|h: Make sure that only trusted code (a 
1243         superset of platform code) can access the internals of platform
1244         code.
1246 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
1248         * reflection.c: use the correct base class to get the virtual method
1249         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
1251 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
1253         * security-core-clr.c (get_caller_no_reflection_related): 
1254         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
1255         it's still reflection and must be filtered correctly.
1257 2009-11-16  Mark Probst  <mark.probst@gmail.com>
1259         * object.c (compute_class_bitmap): Fix for large bitmaps.
1261 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
1263         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
1265         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
1266         koush@koushikdutta.com). Disable GC_no_dls on android.
1268 2009-11-12  Mark Probst  <mark.probst@gmail.com>
1270         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
1271         tlab_next points outside the TLAB because the allocator was
1272         interrupted.
1274 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1276         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
1278 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1280         * object-internals.h: Change signature for mono_string_to_utf8_image.
1282         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
1283         argument.
1285         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
1286         exceptions due to mono_string_to_utf8.
1288 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1290         * object-internals.h: Change signature for mono_string_to_utf8_mp.
1292         * object.c (mono_remote_class): Make sure all resources are released before
1293         raising an exception.
1295         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
1297 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1299         * mono-perfcounters.c (network_get_impl): Change variable initialization
1300         ordering to fix potential memory leak in case of exceptions.
1302         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
1303         encoded strings.
1304         
1305 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1307         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
1308         variable initialization ordering to fix potential memory leak in case
1309         of exceptions.
1311 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
1313         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
1314         needed.
1316 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1318         * appdomain.c: Fix shadow path code to better deal with exceptions.
1320 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1322         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
1323         exception in the middle of the runtime code.
1325 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1327         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
1328         leak memory with broken envvar value.
1330 2009-11-06  Mark Probst  <mark.probst@gmail.com>
1332         * reflection.c (mono_reflection_setup_internal_class): Because
1333         nested classes are not added to the name cache, we must put them
1334         in the reflection_info_unregister_classes list.
1336 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
1338         * class.c: When CoreCLR is enabled don't call mono_init_com_types
1339         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
1340         platform (trusted) code. Instead we return a TypeLoadException to
1341         be thrown later. This is the exception thrown by Silverlight 2 if
1342         a type, inside application (user) code is marked with [ComImport]
1344 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1346         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
1347         mono_is_debugger_attached () too.
1349         * mono-debug.c (mono_is_debugger_attached): New helper function.
1350         (mono_set_is_debugger_attached): Ditto.
1352 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1354         * object-internals.h: Add mono_string_to_utf8_checked.
1356         * object.c: Implement mono_string_to_utf8_checked.
1358 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1360         * class.c: Add missing check for load errors after every
1361         call to mono_class_setup_fields
1363         Fixes #552282.
1365 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1367         metadata-verify.c (verify_tables_schema): Fix the error message.
1369 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1371         * metadata.c: Change event table schema to use TDOR for event type
1372         as this is what it's meant to be.
1374         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
1375         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
1376         entry.
1378         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
1379         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
1380         rows in MONO_TABLE_GENERICPARAM.
1382         Fixes #552289.
1384 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1386         * class.c (mono_image_add_to_name_cache): Assert on duplicate
1387         insertion.
1389         * reflection.c (mono_reflection_setup_internal_class): Avoid
1390         registering a gc root the same MonoClass multiple times.
1391         Don't register nested types on the global scope as they should
1392         not be available there.
1394 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1396         * culture-info-tables.h: regenerated.
1398 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1400         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
1402 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
1404         * string-icalls.c|h: Remove string internal calls that are not 
1405         used anymore by the class libraries.
1406         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
1407         which is not used in the class librairies.
1408         * icall-def.h: Update tables.
1410 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1412         * class.h: Move mono_class_inflate_generic_type_checked...
1414         * class-internals.h: to here and make it internal. We don't want to
1415         further expose MonoGenericContext. 
1417 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1419         * verify.c (mono_method_verify): Improve error message.
1421 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1423         * reflection.c (fieldref_encode_signature): If field_image is NULL then
1424         the token is already properly encoded. Fixs 4.0 build.
1426 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1428         * locales.c (construct_number_format): Check if the number index is
1429         valid before trying to use it, if not, just return.
1430         
1431 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
1433         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
1434         since that loses the abort state. Fixes #539394.
1436 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
1438         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
1439         explicit this argument to the call signature.
1440         (mono_marshal_get_icall_wrapper): Ditto.
1442 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1444         * reflection.c (fieldref_encode_signature): Add new field_image parameter
1445         to indicate which assembly to use when resolving a custom-mod.
1447         Fixes handling of volatile fields used across assemblies as reported in #551513.
1449 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1451         * loader.c: Improve error messages.
1453 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1455         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
1456         of interfaces. Fixes IKVM.
1458         * class.c (mono_class_setup_vtable_general): Improve debug spew.
1460 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1462         * verify.c (verifier_inflate_type): Return the inflated type on success.
1464 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1466         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
1468         * threads.c (mono_thread_attach): Call the profiler thread start callback.
1470         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
1472         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
1473         flag set.
1475         * profiler.c: Add new profiler callbacks for runtime invoke.
1477         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
1479 2009-11-01  Mark Probst  <mark.probst@gmail.com>
1481         * sgen-gc.c: Keep track of the reason for a major collection and
1482         write it to the heap-dump file.
1484 2009-10-31  Miguel de Icaza  <miguel@novell.com>
1486         * threads.c: refactor the code that initializes the
1487         thread_start_args into a reusable function and use this in the two
1488         methods that start up threads.
1490 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
1492         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
1493         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
1495 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1497         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
1498         Until now, we only had the per-cpu(core) counters.
1500 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1502         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
1503         mono_gc_get_suspend_signal(), which returns the suspend signal
1504         number used by the GC.
1506 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1508         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
1510         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
1511         signalling start_notify.
1513 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1515         * appdomain.c: do not test the st_mode field for shadow-copies.
1516         Fixes bug #545276.
1518 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1520         * threadpool.[ch]: added hooks for thread start/finish and item
1521         processing begin/end. For monotouch use only.
1523 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1525         * threads.c (mono_thread_get_name): New helper function.
1527         * reflection.c (resolve_object): Set handle_class for strings too.
1528         (mono_reflection_create_custom_attr_data_args): New helper function to decode
1529         a cattr blob into a set of arrays and structures without creating the custom
1530         attributes themselves.
1531         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
1533         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
1535         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
1536         function.
1538 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1540         * verify.c: Replace calls to mono_class_inflate_generic_type with
1541         mono_class_inflate_generic_type_checked. Fixes #480005.
1543 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1545         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
1546         object since not all paths lead to callees initing it.
1548 2009-10-23  Alp Toker  <alp@nuanti.com>
1550         Fix embedding API breakage from r144688. mono-compiler.h is an internal
1551         header and should not be shipped:
1553         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
1554         which is specific to the mono build. Not going to work.
1556 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
1558         * security-manager.c: Report if core-clr is active from
1559         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
1560         to allow Moonlight BCL to behave appropriately (both in browser
1561         and outside, e.g. smcs)
1563 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1565         * mono-config.c: ignore UTF-8 BOM and report parser errors.
1566         Fixes bug #549108.
1568 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1570         * class.c: fix typo.
1572 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1574         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1575         a MonoError parameter.
1577         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1578         version that can does proper error handling.
1580         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1582         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1584         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1586 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1588         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1589         NO_UNALIGNED_ACCESS is defined.
1591 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1593         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1594         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1595         Fixes #549173.
1597 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1599         * sgen-gc.c: Shorten sections whenever possible.
1601 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1603         * sgen-gc.c: Use our portable semaphore #defines.
1605 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1607         * sgen-gc.c: A debug option for dumping the heap layout to a file
1608         after each collection.
1610 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1612         * sgen-gc.c: Make managed write barriers atomic via
1613         thread-restarts.
1615 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1617         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1618         methods. Fixes #543021.
1620 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1622         * socket-io.[ch]: fix VS build.
1624 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1626         * icall-def.h:
1627         * socket-io.[ch]: implemented SendFile.
1629 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1631         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1632         before the interfaces to avoid crashes later if class initialization fails.
1633         Fixes #548417.
1635         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1636         Fixes #548276.
1638 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1640         * domain.c: Bump 4.0 version.
1642 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1644         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1645         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1646         check since 'pubkey' can't be NULL at this stage
1647         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1648         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1649         initialization of 'iter'
1651 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1653         * cominterop.c : Search the interface parts of vtable to find 
1654           method matches.  Fixes 547030.
1656         Code is contributed under MIT/X11 license.
1658 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1660         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1661         multiple targets. Fixes bug #574426.
1663 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1665         * profiler.h: Put here the definition of
1666         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1667         (and fix the build...).
1669 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1671         * profiler.c, profiler.h, profiler-private.h:
1672         Added support for different ways of getting call chains in stat mode.
1674 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1676         * object.c, object-internals.h: New function for computing the
1677         size of an array, factored out of mono_array_new_full().  Use
1678         SGen's functions for allocating arrays and vectors.
1680         * sgen-gc.c, gc-internal.h: Special functions for allocating
1681         arrays and vectors without race conditions.  A managed array
1682         allocator method.
1684         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1686 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1688         * object.c, object.h, icall.c: Write barriers do the copying now,
1689         as well, so no need for an additional memcpy.
1691         * sgen-gc.c: Lock when storing remsets.  Do the memory
1692         copying/moving in the write barriers.
1694         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1696         * reflection.c: Added an assert.
1698 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1700         * threads.c, process.c: A few missing write barriers.
1702 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1704         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1705         network performance counters for bytes sent per second, bytes
1706         received per second, and bytes total per second.
1708         Code is contributed under MIT/X11 license.
1710 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1712         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1713         Fix warning.
1715 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1717         * threads.c, object-internals.h, object.c: Move code for
1718         transferring an object to a different domain (via
1719         serialization/remoting) to object.c.
1721         * object.c (call_unhandled_exception_delegate): If the exception
1722         is in a different domain than the delegate, transfer the exception
1723         to that domain.
1725 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1727         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1728         Fixes #322934.
1730 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1732         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1734 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1736         * object.c (mono_method_return_message_restore): Handle the case
1737         where the argument is an instance of a generic type.  Fixes
1738         #544446.
1740 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1742         * object.c (set_value): Write barrier fix - we must pass the
1743         count, not the size.
1745 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1747         * domain.c (mono_init_internal): Print a useful error message when encountering
1748         an old mscorlib, instead of crashing. Fixes #544307.
1750 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1752         * appdomain.c (copy_app_domain_setup): Fix a warning.
1754         * debug-helpers.c (dis_one): Ditto.
1756 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1758         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1759         into the new domain, instead of referencing the original one.
1761         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1762         non-static.
1764         * appdomain.c: Corlib version bump.
1766 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1768         * threadpool.c: one more...
1770 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1772         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1773         threads to die because we're shutting down. delgate5.exe works again.
1775 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1777         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1778           ccw_interface_hash table when a ccw is finalized.
1780         Code is contributed under MIT/X11 license.
1782 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1784         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1785         domain and image unloading into two steps.  We must do this
1786         because clearing the domain in SGen requires the class metadata to
1787         be intact, but we need to free the mono_g_hash_tables in case a
1788         collection occurs during domain unloading and the roots would trip
1789         up the GC.
1791 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1793         * object-internals.h: Remove serialized culture fields from
1794         MonoInternalThread.
1796         * icall-def.h, thread-types.h, threads.c: Remove serialized
1797         culture icalls.
1799         * appdomain.c: Corlib version bump.
1801 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1803         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1804         Fixes #543133.
1806 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1808         * sgen-gc.c: Try to shorten the new section after a major
1809         allocation to avoid ever-growing sections.
1811 2009-10-13  Martin Baulig  <martin@ximian.com>
1813         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1814         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1815         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1816         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1818         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1820 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1822         * threadpool.c: fixed the order in which 'completed' and the wait
1823         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1824         No need to use the wait_handle field of ASyncCall. Make sure the
1825         threadpool is active when adding a job or queueing an idle thread.
1827 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1829         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1831         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1832         when using --compile-all.
1834 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1836         * metadata.c (free_generic_class): Unregister the field_objects
1837         roots if we're using SGen.
1839 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1841         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1842         for GenericParamTableEntry.gparam.
1844 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1846         * marshal.c: don't create the handle when calling. It is created later
1847         if needed.
1849 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1851         * sgen-gc.c: Warning fixes.
1853 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1855         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1856         whole heap for cross-domain references before each collection.
1858         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1859         object.
1861         * threadpool-internals.h, threadpool.c: New function
1862         mono_thread_pool_is_queue_array() for checking whether a given
1863         array is used as a (cross-domain) queue by the thread pool code.
1865 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1867         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1868         searches the whole heap for objects containing a specific
1869         reference.  Only for debugging.
1871 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1873         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1875         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1876         byte arrays between domains.
1878 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1880         * threadpool.c:
1881         * class-internals.h:
1882         * mono-perfcounters-def.h:
1883         * mono-perfcounters.c:
1884         -There is a list of idle threads
1885         -Each of those idle threads wait on their own WaitHandle instead
1886         of all of them using the same semaphore. When a new work item is
1887         added, the job is assigned directly to an idle thread or a newly
1888         created one if possible and then the handle for that thread is
1889         signaled. Compare that to the current approach where all the
1890         threads in the pool compete to dequeue a job from the same
1891         queue.
1892         -New struct ThreadPool that brings together the bunch of static
1893         variable for each threadpool (IO and regular).
1894         -New performance counters: # of items added and its rate per
1895         threadpool. The rate will be used later, perhaps together with
1896         other perf. counters, to decide when idle threads should exit.
1898 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1900         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1901         Fix typo on Windows build.      
1902         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1903         
1904         Code is contributed under MIT/X11 license.
1906 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1908         * object-internals.h: The Thread class is split up into Thread and
1909         InternalThread now.  We have exactly one InternalThread per
1910         thread, and at most one Thread per appdomain per thread.  Most
1911         data is stored in InternalThread.  All InternalThread objects live
1912         in the root domain.
1914         * class-internals.h: Add internal_thread_class to MonoDefaults.
1916         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1917         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1918         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1919         resulting from the split of the Thread class.
1921         * gc-internal.h: Prototype for new function for checking whether a
1922         thread is the finalizer thread.
1924         * appdomain.c: Corlib version bump.
1926 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1928         * appdomain.c|h: Add a mono_domain_try_unload method which is
1929         equivalent to mono_domain_unload, except that it returns an exception
1930         instead of throwing it. Make mono_domain_unload use the
1931         mono_domain_try_unload method to avoid code-duplication.
1933 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1935         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1936         a problem.
1938 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1940         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1941         aborting when a conversion is not implemented.
1943 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1945         * verify.c: when comparing culture strings, use g_ascii_strcmp
1947         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1948         when comparing public key tokens to use memcmp on 16 bytes.   I do
1949         not believe this ever worked as advertised in the past.
1951         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1952         which would have always failed earlier.
1954 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1956         * gc.c: Raise a NullArgumentException if the object passed is
1957         null.
1959 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1961         * image.c (mono_image_close): Atomically decrement the reference count and
1962         remove the image from the hash tables, to prevent another thread from seeing a
1963         dying MonoImage. Fixes #541194.
1965 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1967         * threadpool.c: actually use the minimum number of 'completion ports'
1968         (for us is just a potential worker thread).
1970 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1972         * threadpool.c: remove ares_htable. It does not make sense any more
1973         since the same objects are now stored in GC-tracked arrays while they are
1974         in the queue.
1976 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1978         * threadpool.c: increase the minimum length of the queues to 128.
1979         Remove warning.
1981 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1983         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1984         return the modified signature used by string ctors.
1986 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1988         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1989         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1990         method, to be used by full-aot.
1992 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1994         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1995         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1996         be known to be good.
1998         * class.c (mono_class_init): Fail array types if their element type fails initialization
1999         as well.
2001         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
2002         initialization, additionally we request the element_type vtable to be initialized as well.
2004         This is fine and should not increase the working set in any meaningful way since it's reasonable
2005         to assume       that most code will create an array and eventually populate it, which will require the
2006         type's vtable to be initialized.
2008         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
2010 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
2012         * normalization-tables.h : regenerated.
2014 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
2016         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
2017         a leb128 encoding can take up to 5 bytes.
2019 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
2021         * class.c (verify_class_overrides): Remove useless argument.
2023         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
2024         before interface enumeration as this is no longer required.
2026 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
2028         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
2029         used under mono_class_init context. This functions avoid any code path that
2030         calls mono_class_init, which leads it to be slow as some things like the interface
2031         bitmap are not available.
2033         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
2034         of it's own broken version. Fixes the verifier part of #538588.
2036         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
2037         API.
2039 2009-09-15  Mark Probst  <mark.probst@gmail.com>
2041         * class.c (mono_class_init): Always set an exception in a class if
2042         vtable setup fails.  Fixes #538577.
2044         * generic-sharing.c: Raise an exception if mono_class_vtable()
2045         returns NULL.
2047 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
2049         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
2050         methods of vtypes, as they could be incorrectly shared with static methods
2051         taking an IntPtr argument.
2053 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
2055         * domain.c:
2056         * object.c:
2057         * class-internals.h: renamed waithandle_class to
2058         manualresetevent_class.
2059         * marshal.c: propagate the exception if a remoting BeginInvoke call
2060         fails.
2062 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2064         * object.c: Properly handle vtable failures.
2066 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2068         * socket-io.c: Assert on vtable failure.
2070         * mono-mlist.c: Assert on vtable failure.
2072 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2074         * marshal.c: Assert on vtable failure.
2076 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2078         * icall.c: Properly handle vtable failures.
2080 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2082         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
2084 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2086         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
2088         * console-unix.c (do_console_cancel_event): Same.
2090 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2092         * class-internals.h: Add mono_class_vtable_full function that allows control
2093         if an exception should be raised or not.
2095         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
2096         to do what its documentation say, that is to return NULL and set exception_type on
2097         failure.
2099         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
2100         and change the code to honor it.
2102 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2104         * verify.c: Fix typo in error message.
2106 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
2108         * security-core-clr.c: Fix default_platform_check so it can run
2109         the runtime coreclr tests (without an infinite recursion when
2110         throwing an exception).
2112 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2114         object.c (mono_delegate_ctor_with_method): Guard against null method.
2116 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2118         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
2119         that should be replaced with error handling later.
2121 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2123         * marshal.c (mono_delegate_end_invoke): Fix warning.
2125 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2127         * loader.c (mono_field_from_token): Properly handle invalid
2128         dynamic tokens.
2130 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2132         * pedump.c (verify_image_file): Skip types that can't be
2133         decoded.
2135 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2137         * verify.c: Look for recursive valuetypes only against the
2138         type been initialized as this is a lot simpler and works.
2140 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2142         * verify.c: Ensure that fields are properly loaded before
2143         checking them.
2145 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
2147         * object.c (mono_object_get_virtual_method) : Call 
2148           mono_cominterop_get_invoke if the object is a COM object.
2150         Code is contributed under MIT/X11 license.
2152 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
2154         * verify.c: Check for recursive valuetype definitions.
2156 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
2158         Use inheritance-aware interface offsets. Inherited types use the same offsets
2159         of their parents. This reduce offset duplication in case more than one type in
2160         the inheritance tree explicitly implements the same interface.
2162         This also removes a source of vtable bubbles found in #532409. An abstract type
2163         isn't required to provide abstract methods to all interfaces it implements, which
2164         resulted in a bubble with the previous scheme as the child would get a non-full
2165         vtable from its parent. We fail all concrete types with vtable bubbles, so this
2166         should be fixed.
2168         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
2169         it's expected to not cause any significant increase beyond that.
2171         * class.c (setup_interface_offsets): Compute super class iface offsets
2172         first to force sharing.
2174         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
2175         dumping only the relevant ones.
2177         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
2178         methods a new slot regardless if they belong to an interface or not. This allows
2179         an inherited type to override the iface method separately from the class one.
2181 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2183         * threadpool.c: make the Sleep() alertable to prevent delays exiting
2184         applications that take less than 2s to execute.
2185         Bug #524984 fixed.
2187 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
2189         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
2191         * object.c (mono_get_runtime_callbacks): New helper function to return
2192         the runtime callbacks.
2194         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
2195         mono_get_runtime_build_info () as the display name.
2196         
2197 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
2199         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
2200         argument, since NEWARR expects a native int. Fixes #481559.
2202 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2204         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
2205         against broken SRE methods.
2207 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2209         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
2210         a NULL variable. Abort early on failure.
2212 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2214         * class.c (can_access_type): Fail visibility test for non nested
2215         types with nested visibility.
2217 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
2219         * assembly.c (parse_public_key): Avoid allocating (and not 
2220         freeing) the public key array when it's not requested by the 
2221         caller.
2222         * threads.c (mono_thread_manage, mono_thread_create_internal, 
2223         ves_icall_System_Threading_Thread_Thread_internal): Free 
2224         allocated memory on error.
2226 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2228         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
2230 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2232         * class.c (mono_class_setup_fields): Remove duplicated local variable
2233         named gklass.
2234         Rename gklass to gtd to reflect the fact that it points to the generic
2235         type definition.
2236         Remove the duplicated call to mono_class_setup_fields on gtd and move
2237         the error check to the beginning.
2239 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2241         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
2242         Remove cruft of the previous patch.
2244 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2246         * metadata-verify.c (verify_method_table): Check for abstract + final.
2247         Fixes #534175.
2249 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2251         * verify.c (verify_class_fields): Check for duplicate fields.
2253 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2255         * metadata-verify.c: Verify the typeref table for duplicates.
2257 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2259         This reverts r140936 and properly handles interfaces with static methods. The
2260         right fix is to ensure vtables without bubles which is an easier to verify
2261         constraint. We should avoid such special cases as of the reverted patch as those
2262         only make the runtime more brittle.
2264         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
2265         static methods on interfaces.
2267         * class.c (setup_interface_offsets): Use the number of virtual methods when
2268         calculating interface offsets instead of the number of methods. This way we
2269         avoid bubles on the layout.
2271 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
2273         * metadata-verify.c (verify_metadata_header): Some very smart
2274         obfuscators like to add extra stream headers. Ignore them.
2276 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
2278         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
2279         methods correctly.
2281 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
2283         * metadata-verify.c: Verify for duplicated types.
2285 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
2287         * metadata-verify.c (verify_typedef_table): Verify for nested types
2288         without an entry on the nested class table.
2290 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
2292         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
2293         <tom_hindle@sil.org>. Add locking around hash table accesses.
2295 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2297         * verify.c (mono_verifier_verify_class): Verify all interface if
2298         really are interfaces. Fixes #534184.
2300 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
2302         * pedump.c: Initialize all types during metadata validation so we report
2303         errors only detected as part of class initialization.
2305 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
2307         * metadata-verify.c (verify_method_table): PInvoke requires method to
2308         be static. Fixes #534189
2310 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
2312         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
2313         being NULL.
2315 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2317         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
2318         for holes or bad methods. Fixes #525314.
2320 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2322         * class.c (setup_interface_offsets): Don't allocate slot
2323         for the same interface multiple times. This creates bubbles
2324         that waster space and make vtable verification harder.
2326         The same interface get a slot multiple times since we need
2327         to get the closure of all implemented interfaces, which means
2328         the same interface is reported multiple times.
2330 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2332         * verify.c (mono_verifier_verify_class): Don't check the fields
2333         of generic instances since the context on which they got expanded
2334         might lead to false positives.
2336         Such thing happens when a generic type is inflated in the context
2337         of a generic method and the inflated type of a field turns into a
2338         generic method argument, which causes the checking code to think
2339         it's an invalid class when it's not.
2341 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2343         * verify.c (mono_type_is_valid_in_context): Verify if type
2344         is NULL and remove duplicate test.
2346 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2348         * verify.c (mono_verifier_verify_class): Check fields for
2349         invalid generic arguments.
2351 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2353         * class.c (verify_class_overrides): Verify if for static
2354         and non virtual methods.
2356 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2358         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
2359         Check for errors after retrieving the vtable.
2361 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2363         * class.c (mono_class_setup_vtable_general): Verify
2364         if method overrides are valid before processing them.
2366 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2368         * marshal.c (mono_array_to_lparray): Fix minimal build with
2369         cominterop disabled.
2371         * marshal.c (mono_free_lparray): Same.
2373 2009-08-21  Mark Probst  <mark.probst@gmail.com>
2375         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
2376         the hash function for the ares_htable.
2378 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
2380         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
2381         bit for assembly flags. MS is ok with it but there is no spec anywhere
2382         on its mean
2384 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2386         * class.c (mono_class_create_from_typedef): Emit profiler events
2387         in all cases.
2389 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2391         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
2392         Release memory on failure.
2394 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2396         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
2397         to the internal API.
2399         * metadata.c (get_constraints): Use a single-linked table as we don't
2400         traverse it backward. Fail and return FALSE if only of the contraint types
2401         is not found.
2403         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
2404         to mono_metadata_load_generic_param_constraints except for having a return value.
2405         This has to be done since the later is part of the public API.
2407         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
2408         and fail the type.
2410         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
2411         and fail the method.
2413 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2415         * metadata-verify.c (is_valid_method_header): Add work-around to deal
2416         with MS broken behavior of emmitting EH section sizes without the
2417         header size added.
2419 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2421         * metadata.c (mono_type_create_from_typespec): Don't allocate image
2422         memory until we're sure that we'll need it. This avoids leaking for
2423         broken types or duplicated instantiation.
2425 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2427         * metadata-verify.c (is_valid_method_header): Fix stupid formating
2428         mistake.
2430 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2432         * metadata-verify.c (is_valid_method_header): Fix number of clauses
2433         and expected size calculation.
2435 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2437         * class.c (mono_class_get_field_idx): Add fixme for broken
2438         behavior for types with multiple fields with the same name.
2439         I would rather fix it, but have no idea on how to generate
2440         such artifact for testing.
2442 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2444         * verify.c (verifier_load_field): We should allow references to
2445         fields to be made using the generic type definition. It's up to
2446         the loader system to fail invalid ops.
2448         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
2449         are invalid.
2451 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2453         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
2455         * metadata-internals.h: Fix declaration of 
2456         mono_metadata_interfaces_from_typedef_full.
2458         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
2459         heap_alloc_result parameter that controls if the result should be
2460         g_malloc'd.
2462         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
2463         array be g_malloc'd and properly document this public API function.
2465 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2467         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
2468         remove METHOD_HEADER_TINY_FORMAT1.
2470         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
2472         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
2474         Both spec and MS uses only 2 bits to enumerate the kind of header.
2475         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
2476         is superfluous, only used for tiny headers with odd code lengths.
2478         This change also make sure that mono doesn't wronly interpret bit 2
2479         of fat header flags, which is currently reserved.
2481 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2483         * metadata.c (do_mono_metadata_parse_type): Do error
2484         checking for element types. Don't abort if presented
2485         with a broken type kind.
2487 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2489         * metadata.c (mono_metadata_parse_method_signature_full):
2490         Gracefully fail bad vararg signatures.
2492 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2494         * profiler.c:
2495         * class.c: Fix warnings for uninitialized variables.
2497 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2499         * icall.c: Fix _NSGetEnviron method declaration warning.
2501 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2503         * icall.c:
2504         * reflection.c: Make bitwise checks explicit.
2506 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2508         * debug-helpers.c:
2509         * marshal.c: Fix printf warnings.
2511 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
2513         * reflection.c (encode_cattr_value): Fix a warning.
2515 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2517         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
2518         of array bounds.
2520 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2522         * loader.c (mono_method_signature): Don't assert on broken
2523         signature. Print a more useful error message.
2525 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2527         * loader.c (mono_method_get_marshal_info): Assert if
2528         signature is invalid. Bounds check stores to the
2529         mspecs array;
2531 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2533         * loader.c (field_from_memberref): Fix warning.
2535 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2537         * loader.c (mono_method_get_param_names): Check if signature
2538         is null. Don't store beyond the size of the name array.
2540 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2542         * loader.c (mono_get_method_constrained): Check if signature
2543         is null.
2545 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2547         * loader.c (mono_loader_set_error_bad_image): Improve
2548         error messages.
2550 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2552         * loader.c (mono_get_method_full): Convert an assertion
2553         into a loader error.
2555 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2557         * class-internals.h, class.c: Better naming and documentation.
2559 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
2561         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
2562         obj is NULL.
2564 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2566         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
2567         parsing fails.
2569 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2571         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2572         errors with no class set.
2574         * loader.c (field_from_memberref): If the field signature is of the wrong
2575         type fail with a MissingFieldException instead of a BadImageException as
2576         this is the behavior observed on MS. 
2578 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2580         * loader.c (field_from_memberref): Don't crash if either the field
2581         signature or the typespec class are invalid.
2583 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2585         * verify.c (verifier_load_field): Don't allow field related
2586         ops to reference fields on generic type definition.
2588 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2590         * metadata-verify.c: Add new warning level for errors specified
2591         by ECMA 335 but that MS ignores.
2593         * metadata-verify.c (verify_method_table): Make compiler controled
2594         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2595         this check is safe because the end result will only be some visibility
2596         exceptions been thrown.
2598 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2600         * verify.c (get_boxable_mono_type): Don't allow the
2601         use of the generic type definition on boxed type positions.
2603         Fixes #531237.
2605 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2607         * threadpool.c: Make sure no cross-domain references remain in
2608         ares_htable or the arrays that are thrown away when resizing.
2610 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2612         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2613         list of classes for which we have to unregister reflection_info
2614         with the GC and which are not in the namespace cache.
2616         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2617         the class to the list.
2619 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2621         * domain.c (mono_domain_free): Unregister the GC roots in
2622         MonoDomain.
2624 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2626         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2628 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2630         * class.c: Add mono_class_get_field_from_name_full which does
2631         the same as mono_class_get_field_from_name but does check field
2632         signature as well.
2634         * class-internals.h: Export mono_class_get_field_from_name_full as
2635         part of the internal API.
2637         * loader.c (field_from_memberref): Search fields by name and signature
2638         as it's valid to have two fields with same name but different types.
2640         Fixes #528055.
2642 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2644         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2646         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2648         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2649         System.Type.
2651 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2653         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2655         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2657 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2659         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2660         to sgen-scan-object.h, which can be included and parameterized via
2661         macros.
2663         * Makefile.am: sgen-scan-object.h added.
2665 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2667         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2669 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2671         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2672         before clearing a domain in the GC.
2674 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2676         * exception.c (mono_exception_from_name_domain): Actually create
2677         the exception in the specified domain.
2679         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2680         OutOfMemoryException a bit later so that the domain is inialized
2681         "enough" that it works.
2683 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2685         * threads.c (thread_cleanup): Clean up the cached_culture_info
2686         array to prevent cross-domain references.
2688 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2690         * metadata.c: more documentation for MonoType accessors.
2692 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2694         Fix incorrect size definitions where the tail array isn't a list
2695         of pointers
2696         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2697         define size.
2698         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2699         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2700         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2702 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2704         * reflection.h:
2705         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2707 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2709         * metadata.c:
2710         * loader.c:
2711         * metadata-internals.h:
2712         * method-builder.c:
2713         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2715 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2717         * cominterop.c:
2718         * metadata.c:
2719         * metadata.h:
2720         * loader.c:
2721         * marshal.c:
2722         * reflection.c: #define for sizeof in MonoType and
2723         MonoMethodSignature.
2725 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2727         * domain.c:
2728         * domain-internals.h: add and use #define's instead of sizeof()
2729         for MonoJitInfo and MonoJitInfoTable.
2731 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2733         * object.c:
2734         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2736 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2738         * metadata.c:
2739         * metadata.h:
2740         * object.c:
2741         * class-internals.h:
2742         * generic-sharing.c:
2743         * marshal.c: use a #define instead of sizeof() for a few
2744         structures that use a zero-length array.
2746 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2748         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2749         to handle inflated generic methods.
2751         * appdomain.c: Bump corlib version.
2753         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2754         instances.
2756         * reflection.c (fixup_method): Same
2758         * reflection.c (resolve_object): Same.
2760         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2761         g_error and a decent message.
2763 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2765         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2766         from the object because it could not yet be available globally
2767         (it happens if the profiler tries to create a gchandle on the
2768         MonoThread object of a thread that is still registering itself
2769         with the runtime).
2771 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2773         * reflection.c (mono_generic_class_get_object): Initialized the
2774         managed type arguments array.
2776         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2778         * appdomain.c: Bump corlib version.
2780 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2782         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2783         #527902.
2785 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2787         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2788         Avoid a crash if synch_cs is not set.
2789         
2790         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2791         Handle the case when the handle is 0.
2793         * appdomain.c: Bump corlib version.
2795 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2797         * reflection.c (mono_type_get_object): Fix a warning.
2799 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2801         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2802         descriptor here.  We assume it's already been computed.
2804         * generic-sharing.c (instantiate_other_info): Compute the GC
2805         descriptor for info type MONO_RGCTX_INFO_KLASS.
2807 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2809         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2810         type, so don't use MONO_OBJECT_SETREF to set a field.
2812 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2814         * gc.c: We were missing one case where invoking a finalizer would
2815         not reset the domain.  Also, in the finalizer thread loop, assert
2816         that we're in the root domain.
2818 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2820         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2821         if the type is not an array.
2823 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2825         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2826         method bound to the declaring type of the method. Raise an exception
2827         if the type is not a generic param.
2829 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2831         * class.c (print_unimplemented_interface_method_info): Print the
2832         full type name.
2834         * class.c (mono_class_setup_vtable_general): When dealing with a
2835         generic instance first check if the generic type definition is
2836         not broken.
2838 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2840         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2842         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2844         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2846         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2848         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2850         Code is contributed under MIT/X11 license
2852 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2854         * verify.c: Fix naming of stelem and ldelem.
2856 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2858         * generic-sharing.c: Replace the templates lock with the loader
2859         lock because of very hard to resolve deadlock issues.
2861 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2863         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2864         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2865         directly. Fixes #525338.
2867         * class.c (mono_class_get_vtable_size): New helper function.
2869         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2870         the field belongs to the type. Fixes #525733.
2872 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2874         * sgen-gc.c: When we stop a thread and its stack top is not within
2875         its allocated stack (because it's in an altstack signal handler),
2876         restart it and stop it again, until it is.
2878 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2880         * sgen-gc.c: Take a thread's stack top and registers from the
2881         sigcontext in the suspend signal handler.
2883         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2884         stuff to sgen-archdep.h.
2886         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2887         caller, because have code in sgen-archdep.h to acquire that data.
2889 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2891         * profiler.c, profiler.h, profiler-private.h:
2892         Added support for keeping track of code chunks and buffers.
2894 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2896         * metadata-verify.c: Fix endianness problems on decoding functions.
2897         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2899 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2901         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2902         schema for vectors and one dimension SZARRAY.
2904 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2906         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2907         schema for vectors and one dimension SZARRAY.
2909 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2911         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2912         Interlocked.(Compare)Exchange with object arguments, which invoke
2913         write barriers.
2915 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2917         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2918         passed invalid arguments.   Fixes another crasher in the
2919         Silverlight test suite.
2921         * class.c (mono_class_array_element_size): Return 0 for the size
2922         of the class;  This fixes the crasher exposed by :
2924         typeof (void).MakeArrayType ();
2926         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2927         if there is no method to dereference.    Put all the code that
2928         depends on this inside the if (method) block.
2930         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2931         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2933         With this change, we pass the test.
2934         
2935         * reflection.c (mono_reflection_sighelper_get_signature_local):
2936         Only dereference the assembly if it has been set.    Fixes a
2937         crasher exposed by #525328
2939 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2941         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2942         don't perform the store in mono_gc_wbarrier_generic_nostore().
2943         Remove the second argument (value), which is not needed.
2945 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2947         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2948         the build.
2950         * boehm-gc.c: Ditto.
2951         
2952 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2954         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2955         not perform the store itself.  Introduce
2956         mono_gc_wbarrier_generic_nostore(), which is the same as
2957         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2958         store.
2960 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2962         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2963         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2964         we still need the memcpy().
2966 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2968         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2969         so that big arrays are handled correctly.  Always use
2970         safe_object_get_size() to calculate array object sizes, which
2971         takes bounds into account.
2973 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2975         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2976         GC descriptor is computed before we use it.
2978 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2980         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2981         write barrier if necessary.
2983 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2985         * icall-def.h, icall.c, thread-types.h: New separate icall for
2986         VolatileWrite(object&,object) that uses a write barrier.
2988         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2989         barriers in icalls which write to "ref" or "out" arguments.
2991 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2993         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2994         handler in a separate icall, to reduce the size of the wrappers.
2996 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2998         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
3000 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3002         * metadata-verify.c (parse_field): Allow byref field.
3004         * metadata-verify.c (parse_locals_signature): Allow byref locals.
3006         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
3008 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3010         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
3011         Fixes #522784.
3013 2009-07-20  Robert Jordan  <robertj@gmx.net>
3015         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
3016         Fix invalid IL in valuetype handling (STOBJ must push the
3017         corresponding class). Fixes bug #523149.
3019         Code is contributed under MIT/X11 license.
3021 2009-07-20  Geoff Norton  <gnorton@novell.com>
3023         * gc.c: Use proper semaphores where available on posix and darwin.
3025 2009-07-19  Geoff Norton  <gnorton@novell.com>
3027         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
3029 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
3031         * refletion.c (is_sre_usertype): Change name to is_usertype and
3032         invert it's result so it returns true if the type is an user type
3033         and not the opposite.
3035         * reflection.c (is_*_type): Change all of those to use new macro
3036         check_corlib_type_cached that cached the type lookup so we don't
3037         need to do string comparisons all the type. Changed the signature
3038         to take a MonoClass instead.
3040         * reflection.c: Change mono_image_create_token and resolve_object
3041         to use is_sre_* functions.
3043 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3045         * sgen-gc.c: Check for writes to the stack in the managed
3046         wbarrier as well.
3048 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3050         * sgen-gc.c: When a thread is unregistered, don't free its remsets
3051         but put them on a list which is processed with the other thread's
3052         remsets.
3054 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3056         * sgen-gc.c: Fix and enable the internal allocator instead of
3057         using malloc/free (which causes deadlocks).
3059 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
3061         * refletion.c: Fix builds with SRE disabled by adding a minimal
3062         implementation of mono_reflection_type_get_handle.
3064 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3066         * refletion.c: Make mono_reflection_type_get_handle non static.
3068         * object-internals.h: Export mono_reflection_type_get_handle.
3070         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
3071         unmanaged handle using mono_reflection_type_get_handle.
3073 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3075         * refletion.c: Replace all reads of MonoReflectionType::type with
3076         calls to mono_reflection_type_get_handle. Only the functions that
3077         deal with constructing TypeBuilder::type have not been changed
3078         because they have to deal with NULL values.
3080         This is a first step into supporting reflection types that don't
3081         map directly into their unmanaged counterpart.
3083 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3085         * metadata-verify.c (parse_locals_signature): Don't complain
3086         on signature with zero locals since MS generates it and doesn't
3087         bother with.
3089 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3091         * reflection.c (mono_image_get_array_token): Resolve return
3092         type using mono_reflection_type_get_handle.
3094         * reflection.c (mono_image_get_array_token): Resolve array method
3095         parent type using mono_reflection_type_get_handle.
3097 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
3099         * reflection.c (mono_image_basic_init): Applied patch from
3100         <Dax@daxxfiles.net>. Set the public key token from the assembly
3101         builder. Fixes #518909.
3103         * appdomain.c: Bump corlib version.
3105 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
3107         * class.c (mono_class_needs_cctor_run): Make this return false if
3108         the class has no cctor.
3110 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3112         * sgen-gc.c: When the minor GC needs to allocate a new section,
3113         invoke the major GC afterwards.
3115 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
3117         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
3118           Applying the window_style field to the SHELLEXECUTEINFO struct.
3120         Code is contributed under MIT/X11 license.
3122 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3124         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
3125         locking earlier.  Fix it in the managed allocator by making sure
3126         that no thread is stopped there before the GC runs.  If we do stop
3127         a thread there, we restart it and let it run a but, until it stops
3128         somewhere else.
3130         * gc-internal.h, gc.c: Function for getting the IP from a signal
3131         context via a function registered by mini.
3133 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
3135         * object-internals.h (MonoIntPtr): New structure describing a boxed
3136         IntPtr.
3138         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
3139         returns. Fixes #519953.
3141         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
3143 2009-07-09  Mark Probst  <mark.probst@gmail.com>
3145         * class-internals.h, generic-sharing.c: New RGCTX info type for
3146         getting a remoting invoke with check wrapper.
3148 2009-07-07  Geoff Norton  <gnorton@novell.com>
3150         * icall-def.h: Fix the enable-minimal build.
3152 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3154         * object-internals.h: Add MonoReflectionDerivedType.
3156         * reflection.c: Implement support for PointerType.
3157         Fixed tons of warnings.
3159 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3161         * object-internals.h: Add MonoReflectionByRefType.
3163         * reflection.c: Implement support for ByRefType.
3165 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3167         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
3169         * object-internals.h: Add MonoReflectionArrayType and
3170         mono_reflection_create_unmanaged_type.
3172         * reflection.c: Implement support for ArrayType.
3174 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3176         * metadata-verify.c (is_valid_method_header): Parse EH block
3177         flags correctly.
3179 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3181         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
3182         processing the disappearing links, and process disappearing links
3183         in a loop until no new objects are copied.
3185 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3187         * object.c (handle_enum): Invoke the write barrier when copying
3188         value type instances.
3190         * sgen-gc.c: Register remsets for unmanaged write barriers only
3191         when the address written to is actually on the heap.  This makes
3192         set_value() in object.c work without requiring that the result be
3193         on the heap.
3195 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3197         The runtime wrappers are all bound to a given type that must
3198         exist in the same image. For regular images we use the <Module>
3199         type, which is required to exist for all images.
3201         The <Module> type can't be used for dynamic images because it
3202         might not exist at the time the wrapper is required, so we create
3203         a synthetic type to use instead.
3205         The current code works because of the 2 stage setup of MonoClass,
3206         but once this is gone it will no longer work.
3208         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
3210         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
3212         * object-internals.h: Export mono_image_set_wrappers_type icall
3213         as part of the internal API.
3215         * marshal.c (get_wrapper_target_class): If the image is dynamic,
3216         use MonoDynamicImage::wrappers_type instead of the <Module> type.
3218         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
3219         image wrappers_type to the provided value.
3221 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
3223         * appdomain.c (deregister_reflection_info_roots): No need
3224         to use the image lock here.
3226 2009-07-02  Mark Probst  <mark.probst@gmail.com>
3228         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
3230 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
3232         * threads.c: Store the thread start argument in a hash table instead of
3233         registering it as a root, as libgc doesn't support unregistering roots
3234         under windows, leading to 'too many root sets' errors when many threads
3235         are created.
3237         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
3238         shutdown, they can still be referenced by the other dying objects.
3239         Fixes #514506.
3241 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3243         * socket-io.c: DontLinger does not allow LingerOptions.
3245 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3247         * metadata-verify.c: The spec doesn't mention that it's possible to add
3248         custom attribute to a generic parameter. Fixed.
3250 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3252         * class.c (inflate_generic_type): Don't crash while trying to output a message
3253         on why we're aborting.
3255 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3257         * socket-io.c: DontLinger can take an int or a boolean too.
3259 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
3261         * gc.c: check for a null argument to SuppressFinalize () and
3262         ReRegisterForFinalize ().
3264 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3266         * loader.c (method_from_methodspec): Call into the verifier to check
3267         the signature.
3269         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
3271         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
3272         part of the internal API.
3274 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3276         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
3277         the signature.
3279         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
3281         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
3282         part of the internal API.
3284 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3286         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
3287         the signature.
3289         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
3290         blob verification.
3292         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3293         part of the internal API.
3295 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3297         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
3298         when doing basic verification. 
3300         This check must be done since the runtime peeks into signatures in much
3301         more places than it does decoding so it makes sense to ensure that all
3302         pointers to blob objects are well formed.
3304 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3306         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
3307         Use proper overflow dectection. Fix usage of it.
3309 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3311         * loader.c (field_from_memberref): Call into the verifier to check
3312         the signature.
3314         * loader.c (mono_method_get_signature_full): Same.
3316         * loader.c (method_from_memberref): Same.
3318         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
3320         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3321         part of the internal API.
3323 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3325         * threadpool.c (mono_thread_pool_add): If the domain is unloading
3326         or unloaded, still return an AsyncResult, but don't add it to the
3327         threadpool.
3329 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3331         * threads.c: fix missing colon when DEBUG is defined.
3333 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3335         * threadpool.c: Don't add new calls to a threadpool if the domain
3336         of the call is unloading or unloaded.  When dequeuing a job, null
3337         the reference in the queue.
3339 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3341         * sgen-gc.c (null_link_in_range): Add the dislink for the old
3342         generation if an object was moved.
3344 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
3346         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
3347           parameters of type SAFEARRAY[VARIANT].
3349         * reflection.c (encode_marshal_blob): Properly generate element type
3350           (SafeArraySubType marshal attribute option).
3352         Code is contributed under MIT/X11 license.
3354 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
3356         * reflection.c: in mono_method_clear_object () really ensure all the
3357         objects are removed.
3359 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3361         * loader.c (mono_method_signature): Call into the verifier to check
3362         the method signature.
3364         * metadata-verify.c (verify_method_table): Move signature verification
3365         to verify_method_table_full.
3367         * metadata-verify.c: Add mono_verifier_verify_method_signature.
3369         * verify-internals.h: Export mono_verifier_verify_method_signature as
3370         part of the internal API.
3372 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3374         * loader.c (mono_method_get_header): Call into the verifier to
3375         check the method header.
3377         * metadata-verify.c: Add mono_verifier_verify_method_header.
3379         * verify-internals.h: Export mono_verifier_verify_method_header as
3380         part of the internal API.
3382 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3384         * class.c (mono_class_find_enum_basetype): Call into the verifier to
3385         check the field signature. Replace an assert with an explicit check.
3387         * class.c (mono_class_setup_fields): Call into the verifier to check
3388         the field signature.
3390         * metadata-verify.c: Add mono_verifier_verify_field_signature.
3392         * verify-internals.h: Export mono_verifier_verify_field_signature as
3393         part of the internal API.
3395 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3397         * class.c (mono_class_find_enum_basetype): Simplify this function
3398         by moving code outside of the loop and not decoding static fields.
3400 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3402         * metadata-verify.c (verify_typedef_table): Check the extends
3403         token here. Move to here a flags check from verify_typedef_table_full.
3405 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3407         * metadata-verify.c (is_valid_method_header): Fix a warning.
3409         * metadata-internals.h (MonoImage): Remove the unused 
3410         static_rgctx_invoke_wrapper_cache.
3412         * image.c marshal.c: Ditto.
3414 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3416         * image.c (do_mono_image_load): Enable table data verification.
3418 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3420         * metadata-verify.c (is_valid_constant): Fix nullref check.
3422 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3424         * metadata-verify.c (is_valid_constant): Fix string bounds check.
3426 2009-06-22  Mark Probst  <mark.probst@gmail.com>
3428         * sgen-gc.c: Managed allocation with pthreads TLS.
3430         * threads.c, threads-types.h: Functions for the JIT to tell the
3431         runtime whether it supports the MONO_TLS opcode.
3433 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3435         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
3436         without methods.
3438 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3440         * metadata-verify.c (is_valid_constant): Fix the string length check.
3441         Use safe overflow checking. Add decent error messages.
3443 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3445         * metadata-verify.c: Move remaininh blob checks to the offline
3446         verification path.
3448 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3450         * metadata-verify.c: Move more blob checks to the offline verification
3451         path.
3453 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
3455         * object-internals.h : Adding interrupt_on_stop field.
3457         * threads.c (mono_thread_request_interruption) : On Windows exit the
3458           thread if interrupt_on_stop is set.
3460         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
3461          Removing old interrupt logic and setting the interrupt_on_stop for the
3462          thread when calling accept.
3464         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
3465          setting the interrupt_on_stop for the thread when calling accept.
3467         Contributed under MIT/X11 license.
3469 2009-06-20  Martin Baulig  <martin@ximian.com>
3471         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
3473 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
3475         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
3476         running in no-exec mode.
3478 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3480         * metadata-verify.c (verify_method_table): Move header
3481         checking to verify_method_table_full.
3483         * metata-verify.c (mono_verifier_verify_full_table_data):
3484         Call verify_method_table_full.
3486 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3488         * metadata-verify.c (verify_field_table): Move signature
3489         checking to verify_field_table_full.
3491         * metata-verify.c (mono_verifier_verify_full_table_data):
3492         Call verify_field_table_full.
3494 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3496         * metadata-verify.c (verify_typedef_table): Move remaining
3497         stuff to verify_typedef_table_full.
3499 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3501         * metadata-verify.c: Kill is_corlib from VerifyContext.
3502         It is only used by the offline mode.
3503         So we better remove it from the runtime path.
3505 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3507         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
3508         function that perform the offline metadata verification steps.
3510         * metadata-verify.c (verify_typedef_table): Move some checks to
3511         verify_typedef_table_full and make it been called by new function
3512         mono_verifier_verify_full_table_data.
3514         * pedump.c: Call mono_verifier_verify_full_table_data.
3516         * verify-internals.h: Export mono_verifier_verify_full_table_data as
3517         part of the internal API.
3519 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3521         * metadata-verify.c (typedef_is_system_object): Fix System.Object
3522         check.
3524         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
3525         flags bits. SupportLastError was confused as bit 7 instead of 6.
3527         * metadata-verify.c (verify_implmap_table): Fix import scope verification
3528         to check against the module ref table instead of module.
3530         * metadata-verify.c (verify_implmap_table): Fix corlib check.
3532         * pedump.c: Call mono_image_load_names.
3534 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3536         * image.c: Extract mono_image_load_names from do_mono_image_load.
3538         * metadata-internals.h: Export mono_image_load_names as part of
3539         the internal API.
3540         
3541 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3543         * metadata.c (mono_metadata_cleanup): Free the generic method cache
3544         first, as it could reference data in the other caches.
3546 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3548         * metadata-verify.c: Finished with method header verification.
3550 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3552         * metadata-verify.c: Added more header verification code.
3553         Now only EH clauses are missing.
3555 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3557         * marshal.c (get_runtime_invoke_type): Don't share primitive types
3558         for return values.
3560 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3562         * metadata-verify.c: Initial method header verification.
3564 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3566         * metadata-verify.c (verify_import_table): The IAT contents
3567         might end been patched by the windows DL when running with
3568         coree enabled.
3570 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3572         * class.c (mono_class_from_typeref): If the enclosing type is not
3573         found return null instead of crashing. Fixes #508487.
3575 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3577         * normalization-tables.h : updated to the latest unicode charcter
3578           data.
3579         * appdomain.c : bump corlib version.
3581 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3583         * class.c (mono_class_from_name): Fix support for assembly references
3584         in the EXPORTEDTYPE table. Fixes #511704.
3586 2009-06-13  Geoff Norton  <gnorton@novell.com>
3588         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3589         assembly in the target domain.
3591 2009-06-12  Robert Jordan  <robertj@gmx.net>
3593         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3594         because "this" of the managed signature has become an
3595         ordinary parameter in the unmanaged signature.
3597 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3599         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3600         field for owner-less generic containers.
3602         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3603         image field of the owner-less generic containers created here.
3605         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3606         contain is ownerless until the caller sets its owner.
3608         * metadata.c (type_in_image): Handle owner-less generic containers
3609         correctly.
3610         
3611 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3613         * image.c (mono_image_close): Support debug_assembly_unload for
3614         dynamic images too.
3616 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3618         * class.c: Fix some typos in comments.
3620 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3622         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3624         * threads.c (mono_thread_execute_interruption): Avoid creating the
3625         abort exception object while holding the synch_cs lock.
3627 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3629         * metadata-verify.c: Verify basic cattr content.
3631 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3633         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3634         nested types.
3635         
3636         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3637         support for nested types. Fixes #511704.
3639 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3641         * metadata-verify.c: Verify methodspec signatures.
3643 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3645         * metadata-verify.c: Verify typespec signatures.
3647 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3649         * metadata.c (free_inflated_method): Call 
3650         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3652 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3654         * mono-config.c: Small change to report the PPC64/ILP32 model.
3656 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3658         * metadata-verify.c (parse_type): Check szarray.
3660 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3662         * metadata-verify.c (parse_type): Check fnptr.
3664 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3666         * metadata-verify.c (parse_type): Check generic instances.
3668 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3670         * metadata-verify.c (parse_type): Check array shape.
3672 2009-06-05  Robert Jordan  <robertj@gmx.net>
3674         * class.c (mono_class_create_from_typedef): Check only for
3675         mscorlib's System.Array.
3677 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3679         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3680         and generic params. 
3682         * metadata-verify.c (parse_field): Check the signature.
3684 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3686         * metadata-verify.c: Implement locals signature check.
3688 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3690         * domain.c: Add .NET 4.0 Beta 1 version.
3692 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3694         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3695           For QueryInterface on CCWs consider the base class
3696           interfaces as well.
3698         Code is contributed under MIT/X11 license.
3700 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3702         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3704         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3705         used.
3707         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3708         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3710         * generic-sharing.c (inflate_other_data): Ditto.
3711         
3712 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3714         * metadata-verify.c: Implement property signature check.
3716 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3718         * sgen-gc.h: Register saving support for PPC.
3720 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3722         * sgen-gc.c: Fixed a pthread TLS screwup.
3724 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3726         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3727         supported.
3729 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3731         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3732         keyword is not supported.
3734 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3736         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3737         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3738         the inflated method is freed. Fixes #508389.
3740         The code is contributed under the MIT/X11 license.
3741         
3742 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3744         * marshal.c (get_wrapper_target_class): New helper function.
3745         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3746         the <Module> class of the image. Fixes #509049.
3748 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3750         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3751         Check if the thread was interrupted and proccess it straight away.
3752         Makes abortion much more responsive.
3754 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3756         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3757         MonoThread::interruption_requested to match it's counterpart.
3759         Fixes a hang in abort-stress-1 on a 2 core x86.
3761         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3762         Fix warning.
3764 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3766         Change MonoImage::name_cache to be protected by the image lock
3767         instead of the loader lock.
3769         * appdomain.c (deregister_reflection_info_roots): Protect access
3770         to name_cache.
3772         * class.c (mono_image_init_name_cache): Change from the loader lock
3773         to the image lock. Check if the cache wasn't already created.
3775         * class.c: Change from the loader to the image lock.
3777         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3778         the code to hold the image lock while iterating over name_cache and
3779         not go into mono_array_new holding it.
3781         * metadata-internals.h: Add a comment about this change.
3783 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3785         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3786         Under the 2.0 profile raise the loader error.
3788         Fixes #508532.
3790 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3792         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3793         of ldind opcode for generic instances so we don't fail for direct wrappers.
3794         This only affect direct calls.
3796 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3798         * reflection.c (create_dynamic_mono_image): Fix warnings.
3800         * generic-sharing.c (other_info_equal): Ditto.
3801         
3802 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3804         * metadata-verify.c: Implement field signature check.
3806 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3808         * metadata-verify.c: Implement standalone signature check.
3810 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3812         * metadata-verify.c: Implement methodref signature check.
3814 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3816         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3817         callbacks supplied by the runtime.
3819         * object.c (mono_install_callbacks): New internal function to install
3820         the callbacks.
3822         * object.c (mono_create_ftnptr): Move the implementation of this to
3823         mini/.
3825         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3827 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3829         * metadata-verify.c (parse_return_type): Proper byref check.
3830         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3831         generic signatures and method params.
3833 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3835         * metadata-verify.c (decode_signature_header): Fix bounds check.
3837         * metadata-verify.c (parse_custom_mods): Check custom mods.
3839         * metadata-verify.c (parse_type): Do initial basic verification
3840         of valid values.
3841         
3842         * metadata-verify.c (is_valid_method_signature): Parse the generic
3843         param count.
3845 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3847         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3848         discarded based on their most specific definition so we set the method_slots
3849         array before checking if the method is acceptable or not.
3851         Fixes #506757.
3853 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3855         * icall.c: Free the old array when resizing a mono_ptr_array.
3857 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3859         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3860         for the hashes whose keys are managed objects.
3862 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3864         * object-internals.h, threads.c: Set the execution context on
3865         thread start here, not in corlib.
3867         * appdomain.c: Bump corlib version.
3869 2009-05-27  Martin Baulig  <martin@ximian.com>
3871         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3872         if `_mono_debug_using_mono_debugger' is set to make things work
3873         properly when embedding Mono.
3875 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3877         * class.c (mono_class_setup_fields): Don't mark simd types as having
3878         16 bytes alignment as the whole runtime doesn't support.
3880 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3882         * metadata-verify.c (safe_read): Use endian safe read macros.
3884 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3886         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3887         it is read-only when using full aot.
3889 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3891         * metadata-verify.c (is_valid_method_signature): Verify parts
3892         of the return type. Provide an error message in case of failure.
3894 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3896         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3898 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3900         * metadata-verify.c: Include the size prefix in the bounds check.
3902 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3904         * icall.c: Remove warnings.
3906         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3907         prevent auto-detection based on GCC defines.
3909         Add PS3
3911         * metadata-verify.c: Do not include signal.h
3913         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3914         messages.  Not sure why the g_assert_not_reached is not enough to
3915         quiet the compiler.
3916         
3918         * appdomain.c: Remove code that is not used when
3919         DISABLE_SHADOW_COPY is set.
3921         * image.c: use g_getenv
3923 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3925         * reflection.c: Remove code that it not used with
3926         DISABLE_REFLECTION_EMIT is defined.
3928 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3930         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3931         invoke wrappers.
3933 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3935         * socket-io.c
3936         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3937         the ifdef here and instead put that on io-layer
3939 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3941         * metadata-verify.c: Verify the generic param constraint table.
3943 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3945         * metadata-verify.c (verify_generic_param_table): Fix
3946         thinko on the valid flags bits for generic params.
3948 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3950         * metadata-verify.c: Verify the methodspec table.
3952 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3954         * metadata-verify.c: Verify the generic param table.
3956 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3958         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3960 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3962         * sgen-gc.c: Use generation enum more consistently and use the
3963         correct generation in mono_gc_register_for_finalization().
3965 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3967         * metadata-verify.c: Verify the nested class table.
3969 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3971         * metadata-verify.c: Verify the manifest resource table.
3973 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3975         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3977 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3979         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3980         wrappers, this is now done in the JIT.
3981         
3982         * class.c (mono_set_generic_sharing_supported): New internal function.
3983         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3985 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3987         * metadata-verify.c: Verify the exported type table.
3989 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3991         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3993 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3995         * metadata-verify.c: Verify the file table.
3997 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3999         * metadata-verify.c (verify_assembly_table): Fix an error message.
4001         * metadata-verify.c: Verify the assemblyref table.
4003 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4005         * metadata-verify.c (verify_assembly_table): Fix the valid
4006         bits mask for flags.
4008 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4010         * debug-helpers.c (mono_method_full_name): Print generic parameters of
4011         generic methods as well.
4013 2009-05-15  Geoff Norton  <gnorton@novell.com>
4015         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
4016         use-case and is significantly more performant than the wapi layer.
4018 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4020         * metadata-verify.c: Verify the assembly table.
4022 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4024         * metadata-verify.c: Fix rows limit check.
4026 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4028         * metadata-verify.c: Verify the fieldrva table.
4030 2009-05-13  Mark Probst  <mark.probst@gmail.com>
4032         * sgen.c: Speed up weak links and finalizers by grouping them by
4033         generation.
4035 2009-05-13  Mark Probst  <mark.probst@gmail.com>
4037         * marshal.c (delegate_hash_table_add): When overwriting an entry,
4038         free the old GCHandle (only applies to SGen).
4040 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
4042         * loader.c (mono_get_method_from_token): Avoid the expensive call to
4043         mono_metadata_load_generic_params () for non-generic methods.
4045 2009-05-12  Mark Probst  <mark.probst@gmail.com>
4047         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
4048         New function for returning a monitor's weak link if it has one.
4050         * sgen-gc.c: Remove an object's monitor's weak link (if it has
4051         one) when clearing a domain.  These can still be around because
4052         the object might not have been collected.
4054 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
4056         * gc.c: Fix a warning.
4058 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
4060         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
4061         prevous wait that resulted in a deadlock on Windows when initializing
4062         the runtime form DllMain. Also results in improved startup time.
4063         (finalizer_thread): Get rid of thread_started_event.
4064         * threads.c, threads-types.h (mono_thread_create_internal): Return the
4065         resulting MonoThread.
4067         Contributed under MIT/X11 license.
4069 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
4071         * metadata-verify.c: Verify the implmap table.
4072         Don't require that #US and #Strings be present.
4074 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
4076         * security-core-clr.c: Delegate checks are done at creation time,
4077         not a invocation time. Fix exception for Telerik Silverlight demo
4079 2009-05-11  Mark Probst  <mark.probst@gmail.com>
4081         * sgen-gc.c (need_remove_object_for_domain): Remove the special
4082         case for the Thread class.
4084         * threads.c: Do clean-up of abort exception/state in
4085         thread_cleanup() instead of Thread.free_internal().  Also clean up
4086         current_appcontext.  The reason we have to do that is because
4087         those references might point into another domain and if that
4088         domain is unloaded before the thread is finalized, they point to
4089         invalid data.
4091 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
4093         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
4094         stub signatures.
4095         
4096         Contributed unter MIT/X11 license.
4098 2009-05-09  Miguel de Icaza  <miguel@novell.com>
4100         * verify.c, metadata-verifier.c: Add support for disabling the
4101         verifier in some builds.
4103         [ Sorry, my previous commit accidentally commited some work in
4104         progress ]
4106 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
4108         * class.c (mono_class_setup_fields): Set class->field.first for
4109         generic instances.
4111 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4113         * metadata-verify.c: Verify the typespec table.
4115 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4117         * metadata-verify.c: Verify the module table.
4119 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4121         * metadata-verify.c: Verify the methodimpl table.
4123 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4125         * metadata-verify.c: Verify the property table.
4127 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
4129         * debug-helpers.c (mono_method_desc_match): Add support for generic
4130         glob patterns.
4132 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
4134         * metadata-verify.c: Verify the propertymap table.
4136 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
4138         * metadata-verify.c: Verify the event table.
4140         * metadata-verify.c (search_sorted_table): Fix offset
4141         calculation.
4143 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
4145         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
4147 2009-05-01  Mark Probst  <mark.probst@gmail.com>
4149         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
4150         because mono_delegate_free_ftnptr() needs it.
4152 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4154         * metadata-verify.c: Verify the eventmap table.
4156 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4158         * metadata-verify.c: Verify the standalonesig table.
4160 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4162         * metadata-verify.c: Verify the field layout table.
4164 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4166         * class.c (mono_type_get_name_recurse): Don't crash
4167         for ownerless generic params.
4169         * debug-helpers.c (mono_type_get_desc): Correct the format
4170         for ownerless generic params.
4172 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4174         * metadata-verify.c: Verify the class layout table.
4176 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4178         * metadata-verify.c: Verify the decl security table.
4180 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4182         * domain.c (mono_domain_set_internal_with_options): Don't do
4183         anything if the old domain is the same as the old one.  Fixes
4184         #499326.
4186 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4188         * appdomain.c: Deregister the reflection_info roots when unloading
4189         a domain.
4191         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
4192         memory allocated by a domain and frees its disappearing links.
4194         * boehm-gc.c, null-gc.c: Empty implementation of
4195         mono_gc_clear_domain().
4197 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4199         * appdomain.c (clear_cached_vtable): Free the static fields memory
4200         block.
4202 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4204         * gc.c: Set the correct domain when invoking finalizers.
4206         * appdomain.c: Set the correct domain when creating threads.
4208 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4210         * sgen-gc.c: Fix skip size for vectors.
4212 2009-05-03  Martin Baulig  <martin@ximian.com>
4214         * mono-debug-debugger.c
4215         (mono_debugger_check_breakpoints): Check class init handlers even
4216         if we don't have any method load handers.
4218 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
4220         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
4221         returning refonly assemblies if refonly is FALSE. Fixes #499013.
4223 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4225         * metadata-verify.c: Verify the field marshal table.
4227 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4229         * metadata-verify.c: Verify the custom attribute table.
4231 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4233         * metadata-verify.c: Verify the constant table.
4235 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4237         * metadata-verify.c: Verify the memberef table.
4239 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4241         * metadata-verify.c (get_coded_index_token): Remove
4242         dead argument.
4244 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4246         * metadata-verify.c: Verify the interfaceimpl table.
4248 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4250         * verify.c: Improve error message.
4252         * debug-helpers.c (mono_type_get_desc): Harden the code that
4253         deals with VAR and MVAR.
4255 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
4257         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
4258         part of #498692.
4260 2009-04-23 Tom Hindle <tom_hindle@sil.org>
4262         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
4263         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
4265 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
4267         * security-core-clr.c: Avoid redundant checks for platform code, 
4268         e.g. check for method and for class (very common) and check
4269         for class and outer class (less common)...
4271 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
4273         * reflection.c: Avoid returning random cattrs for synthetic methods.
4274         Fixes #498545.
4276 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4278         * assembly.c: assemblies in the GAC should never be shadow-copied.
4280 2009-04-26  Mark Probst  <mark.probst@gmail.com>
4282         * domain.c, domain-internals.h: Disable
4283         track_resurrection_{objects,handles}_hash in MonoDomain if using
4284         SGen.
4286 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4288         * metadata-verify.c: Verify the param table.
4290 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4292         * metadata-verify.c (verify_typedef_table): Range check FieldList and
4293         MethodList.
4295         * metadata-verify.c (verify_method_table): Proper check the ParamList
4296         field.
4298 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4300         * metadata-verify.c (verify_method_table): Check for runtime
4301         implemented functions such as delegate .ctors. Remove spurious
4302         printf.
4303         
4304 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4306         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
4308 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4310         Don't allocate MonoGenericInfo for ownerless generic params.
4311         * class-internals.h (MonoGenericParam::info): Move field to ...
4312         (MonoGenericParamFull): ... this.  New struct.
4313         (MonoGenericContainer::type_params): Change type to
4314         MonoGenericParamFull.
4315         (MonoGenericParam, MonoGenericContainer): Update accessors.
4316         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
4317         'info' field for ownerless generic param.
4318         (mono_metadata_load_generic_params): Update to changes.
4319         * reflection.c (mono_reflection_create_generic_class): Likewise.
4320         (reflection_methodbuilder_to_mono_method): Likewise.
4321         (mono_reflection_initialize_generic_parameter): Likewise.
4323 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4325         Don't use MonoGenericParamInfo for ownerless generic params.
4326         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
4327         use ParamInfo class at all.
4328         (mono_class_from_generic_parameter): Use them.
4329         (make_generic_param_class): Fix a couple of instances where 'pinfo
4330         == NULL' wasn't handle.
4332 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4334         * class.c (make_generic_param_class): Carve out of ...
4335         (mono_class_from_generic_parameter): ... here.
4337 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4339         Simplify mono_class_from_generic_parameter
4340         * class-internals.h (MonoGenericParamInfo::token): New field.
4341         * metadata.c (mono_metadata_load_generic_params): Initialize it
4342         from metadata.
4343         * class.c (mono_class_from_generic_parameter): Use it instead of
4344         searching through metadata.
4346 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4348         * metadata-verify.c: Add verification of the method table.
4350 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4352         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
4353         Delegate::Invoke optimization.
4355 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4357         * appdomain.c (mono_domain_create_appdomain_internal): Free the
4358         string returned by get_shadow_assembly_location_base.
4360         * appdomain.c (get_shadow_assembly_location_base): Add a comment
4361         about caller's ownership.
4363 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4365         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
4366         reflection memory on domain unload.
4368         * domain.c (mono_domain_free): Don't free refobject_hash, let the
4369         reflection cleanup code do it.
4371         * domain-internals.h: Add mono_reflection_cleanup_domain.
4373         This fixes a memory leak for managed mirrors of reflection objects
4374         on domain unload. 
4376 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4378         * metadata-verify.c: Implement more verification of the field table.
4380 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4382         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
4383         doesn't try to parse the input assembly, which can be broken.
4385 2009-04-23  Mark Probst  <mark.probst@gmail.com>
4387         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
4388         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
4389         by using the lowest bit in the link to store whether the link is
4390         tracked.  Move the track_resurrection hashes into boehm-gc.c.
4392 2009-04-22  Miguel de Icaza  <miguel@novell.com>
4394         * Makefile.am: Split the console support in platform specific code
4395         and put together a framework for making this easy in the future so
4396         that we can start splitting code instead of having a mess of PLATFORM_WIN32
4398 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4400         * pedump.c: Fix a warning.
4402 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4404         * verify.c (mono_delegate_type_equal): Compare valuetypes using
4405         mono_class_from_mono_type to avoid bad interactions with the dual representation
4406         of the generic type definition.
4408 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4410         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
4411         get the MonoClass for the call context type as it might be a generic
4412         instance.
4414         Fixes #491483.
4416 2009-04-21  Mark Probst  <mark.probst@gmail.com>
4418         * object-internals.h: The Thread object has no execution_context
4419         member anymore.
4421         * threads.c, threadpool.c, threads-types.h: Accessor functions for
4422         the execution context.
4424         * appdomain.c: Bump corlib version.
4426 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4428         * verify.c (do_newobj): Improve error message.
4430 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4432         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
4433         is nested in the filter block.
4435         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
4436         block is not fully nested.
4438         Fixes #495656.
4440 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4442         * verify.c (verify_type_compatibility_full): Compare MonoClass and
4443         not MonoType to check for equality of valuetypes as the generic type
4444         definition allows for two different encodings: the generic type definition
4445         class or a generic instance over the GTD arguments.
4447         Fixes #496175.
4449 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4451         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
4453         * verify.c (do_initobj): Improve error message.
4455 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4457         * metadata-verify.c: Enable pe verification as the issue with #496453
4458         is that the authenticode data directory have a different unspecified
4459         format. Ignore it for now.
4461         * pedump.c: Run the metadata verifier together with the IL verifier.
4463         Fixes ##496453.
4465 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4467         * metadata-verify.c: Temporarily disable pe verification due to #496453.
4469 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4471         * class.c (can_access_type): Check visibility against
4472         the element type for pointers and arrays.
4474         Fixes #496150.
4476 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4478         * metadata-verify.c: Fix cli and table verification to use information
4479         from the MonoImage. A lot of duplicated code got killed.
4481 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4484         This patch starts to integrate the metadata verifier with the runtime code.
4486         This patch causes major regression in functionality for the metadata verifier
4487         as cli and table verification are disabled since they require to be ported to
4488         use MonoImage information.
4490         * image.c (do_mono_image_load): Split the code in this function
4491         into mono_image_load_pe_data and mono_image_load_cli_data.
4492         Add     care_about_pecoff parameter to not load pecoff data.
4493         Call into the metadata verifier for pecoff and cli verification.
4495         * image.c (mono_image_open_raw): New function that doesn't perform
4496         any parsing of the image contents.
4497         
4498         The reason for the 3 new functions is to give pedump better control
4499         into the interaction with the verifier.
4501         * metadata-internals.h: Add new functions from image.c as part of the
4502         internal mono API.
4504         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
4505         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
4506         to make those functions work together with the runtime.
4508         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
4509         true if the image needs to be verified.
4511         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
4513         * pedump.c: Use new metadata verifier API.
4515 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
4517         * object.c (mono_install_vtable_trampoline): Make this receive a
4518         trampoline creation function instead of trampoline, allowing the JIT
4519         to use a different trampoline for each vtable.
4521 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4523         * object.c (mono_raise_exception): Don't reset the thread abort
4524         exception state here.
4526 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4528         * icall-def.h: New icall for getting the thread abort exception
4529         state for a thread.
4531         * object.c, thread.c, object-internals.h: A thread's abort
4532         exception state is now a GC handle.  To get the object it stands
4533         for, we must move it into the current app domain, if it's
4534         different than the one where it originated from.
4536         * appdomain.c: Bump corlib version.
4538         * domain.c, domain-internals.h: New function for setting the
4539         domain and migrate the thread abort exception or not.
4541 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4543         * metadata-verify.c: Add initial verification of the
4544         field table.
4546 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4548         * metadata-verify.c: Add a macro to conditionally enable
4549         dumping of verification information. Add  make_coded_token
4550         and search_sorted_table to enable search sorted tables
4551         by a given coded token.
4553 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4555         * metadata-verify.c: Add array mapping from table index
4556         to description offset. Add get_col_offset and get_col_size
4557         functions.
4559 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4561         * metadata-verify.c: Add remaining table descriptions offsets.
4562         Add remaining coded index descriptions.
4564 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4566         * metadata-verify.c: Fixed constant table description.
4567         Fixed calculation of HasCustomAttribute coded index size.
4568         Fixed calculation of size for many table indexes. 
4570 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4572         * pedump.c (dump_metadata): Dump table offset instead
4573         of useless pointer in memory.
4575 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4577         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4579 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4581         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4582         a missing of for interface types.
4584 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4586         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4587         the code is commented.
4589         * metadata-verify.c (verify_resources_table): Remove spurious printf
4590         and don't fail if there are unmanaged resources. Gmcs generates a useless
4591         one     for all assemblies - I bet it's some MS compatibility junk.
4593 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4595         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4597         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4599         * verify-internals.h: Same.
4601         * pedump.c: Fix for mono_image_verify new signature.
4603 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4605         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4606         flags combinations.
4608 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4610         * metadata-verify.c (verify_module_table): Ignore the generation field.
4612 2009-04-15  Martin Baulig  <martin@ximian.com>
4614         * debug-mono-symfile.c
4615         (mono_debug_symfile_lookup_location): Don't print a warning for
4616         unknown extended opcodes if they're within 0x40 and 0x7f.
4618 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4620         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4621         invoke signatures returning an enum. Fixes #494847.
4623 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4625         * metadata-verify.c: Initial code to verify the typedef table.
4627 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4629         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4630         with non empty stack happens before the beginning of a try block.
4632         Fixes #494812.
4634 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4636         * metadata-verify.c: Verify typename and typenamespace fields of
4637         the typeref table.
4639 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4641         * metadata-verify.c: Initial code to verify the typeref table.
4643 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4645         * verify.c (verify_delegate_compatibility): Fix error message.
4647 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4649         * security-core-clr.c: Fix typo
4651 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4653         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4654         a MonoGHashTable to keep its values alive.
4655         (emit_marshal_boolean): Fix a warning.
4657 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4659         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4660         not have any interface configured for IPv4/IPv6.
4662 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4664         * assembly.c: fix typo in error message.
4666 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4668         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4669         allocating the location holding the this argument to prevent
4670         'too many root sets' errors.
4672         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4673         to mark fields as special static.
4674         (mono_field_static_get_value): Handle special static fields.
4675         (mono_field_static_set_value): Ditto.
4677         * class-internals.h (struct _MonoClassField): Document this.
4679 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4681         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4682           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4683           case.  This will handle when managed code returns null to native code.
4685         Code is contributed under MIT/X11 license.
4687 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4689         * object.c (build_imt_slots): Changing a free to a g_free to match
4690           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4692         Code is contributed under MIT/X11 license.
4694 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4696         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4697           the correct TRUE value is passed through the marshaling layer.
4699         Code is contributed under MIT/X11 license.
4701 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4703         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4704         correctly. Fixes #492330.
4705         
4706         * marshal.c: Fix the embedding of object pointers into JITted code in
4707         the native-to-managed wrappers by allocating some GC tracked memory, and
4708         embedding the address of that.
4710 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4712         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4713         pointers into the vtable.
4715 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4717         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4719         * verify.c (verify_ldftn_delegate): Improve error message.
4721 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4723         * reflection.c (my_mono_class_from_mono_type): Remove.
4725 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4727         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4728         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4729         and constraints fields into ...
4730         (MonoGenericParamInfo): ... this.
4731         (mono_generic_param_info, mono_generic_container_get_param_info):
4732         New accessors.
4733         * class.c, debug-helpers.c, icall.c: Update to changes.
4734         * metadata.c, reflection.c, verify.c: Likewise.
4736 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4738         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4740         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4741         
4742         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4743         booleans with sbytes.
4745 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4747         * class.c (can_access_instantiation): Verify accesibility of element types
4748         for arrays and pointers.
4750         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4752         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4754         Fixes #493068.
4756 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4758         * verify.c (do_invoke_method): Improve error messages.
4760 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4762         * verify.c:  Fixing the MSVC build.
4764         Code is contributed under MIT/X11 license.
4766 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4768         * security-core-clr.c: Simplify get_reflection_caller not to call
4769         mono_method_get_last_managed (another stack walk) and adjust the
4770         callers to handle a (should not happen) NULL return value.
4772 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4774         Add accessors to some MonoGenericParam fields
4775         * class-internals.h (mono_generic_param_owner): New accessor.
4776         (mono_generic_param_num): Likewise.
4777         (mono_type_get_generic_param_owner): New helper.
4778         (mono_type_get_generic_param_num): New helper.
4779         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4781 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4783         * class-internals.h (mono_generic_container_get_param): New wrapper.
4784         * class.c, icall.c, metadata.c, verify.c: Use it.
4786 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4788         Fix gtest-252.cs
4789         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4790         the standard case/loop.  In particular, don't complain about
4791         references to generic type definitions.
4793 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4795         * debug-helpers.c (dis_one): Decode string arguments.
4797 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4799         * pedump.c (dump_verify_info): Dump type name correctly.
4801 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4803         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4804         are larger than code size.
4806         This can happen in valid code if the try/catch block is not followed by any instruction
4807         and do a backward branch on the leave instruction.
4809         Fixes #492494.
4811 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4813         * security-core-clr.c: Fix typo while comparing second method names
4814         in can_avoid_corlib_reflection_delegate_optimization
4816 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4818         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4820         Fixes #487738.
4822 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4824         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4825         a MVAR using a class context.
4827         Fixes #490335.
4829 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4831         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4833         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4835         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4836         functions supplied by the JIT for the SGEN GC.
4838         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4839         
4840 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4842         monitor.c (mono_monitor_try_enter_internal):
4843         Added calls to profile monitor contentions.
4844         Also duplicated a small piece of code (the "get the monitor" logic)
4845         from the fast path to the slow path, and changed the relevant goto
4846         statements, so that monitor acquisition events can be emitted from the
4847         slow path (this is by Paolo Molaro).
4849 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4851         * profiler.c, profiler.h, profiler-private.h:
4852         Added support for profiling monitor contentions.
4854 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4856         * metadata-verify.c: Verify the modules table.
4858 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4860         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4861         using the context of the method been verifier and not of the method been called.
4863         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4864         safely inflate generic types. 
4866 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4868         * security-core-clr.c: Change the strategy for checking the 
4869         "reflection using delegates optimization" to avoid unneeded 
4870         attributes in multiple class libraries.
4872 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4874         * sgen-gc.c: Remove object element in the disappearing link struct
4875         by storing the object pointer in the link.
4877 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4879         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4881 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4883         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4885         * verify.c (mono_method_verify): Do proper bounds checking of exception
4886         clause ranges.
4888 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4890         * loader.c (mono_field_from_token): Don't crash if the field parent could
4891         not be decoded.
4893 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4895         * sgen-gc.c: Execute critical finalizers after ordinary
4896         finalizers.
4898         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4899         mono_defaults.
4901 2009-03-31 Jb Evain <jbevain@novell.com>
4903         * verify.c (do_ldstr): don't check if a string is in the user strings
4904         heap if the current image is dynamic.
4906 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4908         * sgen-gc.c: Wait until the last finalizer has executed when
4909         returning from WaitForPendingFinalizers.
4911 2009-03-31  Martin Baulig  <martin@ximian.com>
4913         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4914         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4915         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4916         (mono_debugger_event_create_appdomain): New function.
4917         (mono_debugger_event_unload_appdomain): New function.
4919         * appdomain.c (mono_domain_create_appdomain_internal): Call
4920         mono_debugger_event_create_appdomain().
4922 2009-03-31  Martin Baulig  <martin@ximian.com>
4924         * mono-debug-debugger.c
4925         (mono_debugger_register_class_init_callback): Also register the
4926         class init callback if the class is already initialized to make
4927         things work with shadow copied assemblies.
4929 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4931         * security-core-clr.c
4932         (mono_security_core_clr_ensure_reflection_access_field): Let 
4933         critical code access the field (just like we do for methods). Use
4934         check_field_access helper.
4935         (mono_security_core_clr_ensure_reflection_access_method): Use 
4936         check_field_access helper.
4938 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4940         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4941         call the run-finalize function directly.
4943         * gc.c, gc-internal.h: Make run_finalize() non-static.
4945 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4947         * sgen-gc.c: Use a separate struct for disappearing links.
4949 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4951         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4952         * MaxIOVectorLength enabled, just ignore them.
4953         Fixes bug #349688.
4955 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4957         * metadata-verify.c: Fix eglib build.
4959 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4961         * threads-types.h: Fix the win32 build.
4963 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4965         * class.c: move coreclr inheritance/override checks to 
4966         security-core.clr.c
4967         * security-core.clr.c|h: add code from class.c with additional
4968         documentation. Fix override check when the method is not critical.
4970 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4972         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4973         (match_class): Ditto.
4975 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4977         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4979         * metadata-verify.c: Implement table layout row size calculation. Verify
4980         the total size of the tables.
4982 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4984         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4986 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4988         * appdomain.c:
4989         * console-io.[ch]: added new mono_console_init() to make sure that
4990         file descriptors 0, 1 and 2 are opened.
4991         Bug #489019 fixed.
4993 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4995         * appdomain.h: Export a new callback type and a new function to
4996         set this callback. This allow a mono host to provide it's own
4997         definition for "platform code".
4998         * metadata-internals.h: Add a core_clr_platform_code flag on 
4999         _MonoImage to (cache and) know if it is representing platform 
5000         code.
5001         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
5002         on platform code images.
5003         * security-core-clr.c|h 
5004         (mono_security_set_core_clr_platform_callback): Allow the host
5005         to provide it's own platform check definition.
5006         (mono_security_core_clr_determine_platform_image): Detect if an 
5007         image is platform code (using the specified callback).
5008         (mono_security_core_clr_is_platform_image): Return cached value 
5009         for platform code.
5011 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
5013         * threads.c (mono_create_thread): New helper function to wrap CreateThread
5014         which has different parameter types for the 'tid' argument in windows and
5015         the io-layer.
5017         * appdomain.c attach.c threads.c: Use the new helper.
5019 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
5021         * metadata-verify.c: Verify valid table bits.
5023 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
5025         * metadata-verify.c (verify_metadata_header): Store size in the size field.
5027         * metadata-verify.c: Add initial table schema verification.
5029 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5031         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
5032         obtain the refclass argument needed by mono_param_get_objects (). Fixes
5033         #488383.
5035         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
5037         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
5039 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
5041         * security-core-clr.c: Add/update documentation
5043 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5045         * marshal.c (emit_marshal_object): Generate code to throw an exception
5046         instead of throwing it. Fixes #488670.
5048 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
5050         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
5051         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
5052         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
5053         and add a call to mono_security_core_clr_ensure_delegate_creation
5054         to do the extra checks required by CoreCLR.
5055         * security-core-clr.c|h: Add function to check delegate creation,
5056         both in the binding and accessibility, under CoreCLR.
5058 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
5060         * reflection.c (mono_reflection_create_dynamic_method): when 
5061         coreclr is enabled make sure that every resolved object are
5062         checked (e.g. field and method access).
5063         * security-core-clr.c|h: Add function to check objects resolved
5064         when a dynamic method is created.
5066 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5068         * metadata-verify.c: Cache directory rva translations.
5070         * metadata-verify.c: Add cli-header and streams verification.
5072 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5074         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
5075         the wrong offset (8 instead of 6).
5077 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
5079         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
5080         methods, return the native function address itself. Fixes
5081         #487758.
5083 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
5085         * console-io.c: some of the values for control characters might not be
5086         present.
5088 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
5090         * exception.c|h: Add helpers to create [Field|Method]AccessException
5091         * icall.c: Add required coreclr check calls for field reflection.
5092         Move the existing (method) check logic into security-core-clr.c
5093         * security-core-clr.c: Add functions to check if the access of a
5094         field or method is allowed when reflecting under coreclr. This is
5095         mostly done using a stack walk to find the "real" caller: i.e. the
5096         code that is calling the reflection
5098 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
5100         * gc-internal.h: Change location of gc_wrapper.h
5102 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
5104         * class.c: Simplification to coreclr checks for overrides that
5105         makes it easier to set breakpoints.
5107 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
5109         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
5110         mono_security_core_clr_method_level): Avoid potential 
5111         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
5112         user/application code) and make it easier to set breakpoints
5114 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5116         * metadata-verify.c: Reject cli header tables that mono don't handle.
5118 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5120         * pedump.c: Fix CLI header dumping.
5122 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5124         * metadata-verify.c: More CLI header verification.
5126 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5128         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
5130 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5132         * metadata-verify.c: Initial verification of the CLI header.
5134 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5136         * metadata-verify.c (verify_resources_table): Fix verification of zero
5137         sized resource section and id entries count.
5139 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
5141         * icall.c: Handle user types in many Type icalls. Fixes #486303.
5143 2009-03-17  Jb Evain  <jbevain@novell.com>
5145         * profiler.c: call mono_gc_base_init from mono_profiler_load.
5147 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
5149         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
5150         (mono_gc_make_descr_for_array): Ditto.
5152 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5154         * verify.c (mono_verifier_is_class_full_trust): Add support for
5155         CoreCLR security mode where trusted assemblies are defined as
5156         "platform code".
5158 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5160         * metadata-verify.c: Add minimal PECOFF resource verification.
5162 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5164         * metadata-verify.c: Be less restrictive with some coff fields.
5166 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5168         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
5169         params as boxed values on stack. Fixes #485706.
5171 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5173         * console-io.c: the termios values may vary in different flavors of unix.
5175 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5177         * console-io.[ch]: return the entire set of control characters when
5178         initializing the terminal.
5179         * appdomain.c: bump corlib version.
5181 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
5183         * mono-perfcounters.c: added support for in-process custom
5184         performance counters.
5186 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5188         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
5190 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5192         * metadata-verify.c: Verify the data pointed by the import table. 
5194 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5196         * metadata-verify.c (load_data_directories): Store data
5197         directory contents.
5199         * metadata-verify.c: Verify the import table. 
5201 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5203         * metadata-verify.c: Verify data directories.
5205 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5207         * metadata-verify.c: Check section header flags.
5209 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5211         * appdomain.c: if the assembly name is a shadow-copied file, return
5212         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
5213         in mono_make_shadow_copy.
5214         * icall.c: if the assembly name is a shadow-copied file, replace it
5215         with the original assembly path.
5217         Bug #484244 fixed. NUnit tests for corlib can be run without
5218         --noshadow now.
5220 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
5222         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
5223         entries when the table is reallocated.
5225         * icall.c: Allocate the memory used by the mono_ptr_array macros using
5226         mono_gc_alloc_fixed () since it contains GC refs.
5228 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
5230         * reflection.c (ensure_complete_type): New helper function to call
5231         type resolve handlers for unfinished dynamic types.
5232         (resolve_object): Call it for MonoClassFields. Fixes #483852.
5234 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
5236         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
5237         #483247.
5239 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
5241         * appdomain.c (get_shadow_assembly_location): Fix memleak.
5243 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
5245         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
5246         between GCHandles of type WeakTrackResurrection and the objects they
5247         point to.
5249         * gc.c: Partly implement the sematics of GCHandles of type 
5250         WeakTrackResurrection: these handles should only be cleared after the
5251         finalizer of the object they are pointing to has ran.
5253 2009-03-06  Mark Probst  <mark.probst@gmail.com>
5255         * icall.c: Partially revert r126631 because using the jump
5256         trampolines for generic shared methods makes it superfluous.
5258 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
5260         * threads.c (handle_store): Create the 'threads' hash table with the proper
5261         MONO_HASH_VALUE_GC type.
5263 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
5265         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
5266         FIRST_GC_TRACKED.
5268         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
5269         and LAST_GC_TRACKED as a GC root.
5271         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
5273         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
5274         the static data even if it consists of 1 reference.
5276         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
5277         if there is a GC descriptor.
5279         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
5280         instead of through the GC since they contain no object references.
5282 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5284         * generic-sharing.c (instantiate_other_info): Always return a jump
5285         trampoline for method code.
5287 2009-03-05  Marek Habersack  <mhabersack@novell.com>
5289         * culture-info-tables.h: generated to include the en-tt culture.
5291 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5293         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
5294         capture the thread context.
5296         * object.c (mono_async_result_new): Cache the invoke wrappers to
5297         ExecutionContext::Capture.
5299 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5301         * marshal.h: Add a prototype for what mono_compile_method returns
5302         for invoke wrappers.
5304         * gc.c: Use the new prototype declaration.
5306 2009-03-04  Geoff Norton  <gnorton@novell.com>
5308         * boehm-gc.c: Add some MONO_LOG tracing for the GC
5309         * gc-internal.h:
5310         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
5312 2009-03-04  Martin Baulig  <martin@ximian.com>
5314         * mono-debug.h
5315         (mono_debugger_runtime_invoke): Removed.
5317         * mono-debug-debugger.c
5318         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
5320 2009-03-02  Martin Baulig  <martin@ximian.com>
5322         * mono-debug.h
5323         (mono_debugger_unhandled_exception): Removed.
5324         (mono_debugger_handle_exception): Removed.
5325         (mono_debugger_throw_exception): Removed.
5327         * mono-debug.c
5328         (mono_debug_debugger_version): Bump to 5.
5330         * mono-debug-debugger.c: Moved the exception handling code to
5331         ../mini/debug-mini.c
5333 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5335         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
5336         finalize_objects_hash.
5338         * gc.c: Use the separate lock to access the finalize_objects_hash field.
5339         
5340         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
5341         field.
5343         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
5344         cache.
5346         * image.c (mono_image_close): Free it.
5347         
5348         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
5349         allowing a creation of a wrapper which invokes its method using a CALLVIRT
5350         on the this argument.
5352         * gc.c (run_finalize): Optimize the calling of the finalizers.
5354 2009-03-03  Martin Baulig  <martin@ximian.com>
5356         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
5357         of the `MonoGenericInst' changes.
5359 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
5361         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
5362         mono_array_class_get_cached to reduce locking contention. Extract
5363         a domain var.
5365         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
5366         intermediary managed arrays. Use caching version of mono_array_new
5367         to allocate the result array.
5369         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
5371         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
5373         * locales.c (create_names_array_idx):  Use mono_array_new_cached
5374         to reduce locking contention.
5376 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5377                 
5378         * object.c (mono_method_add_generic_virtual_invocation): Put back the
5379         thunk builder code for the non-interface case.
5381 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5383         * object.c (get_generic_virtual_entries): New helper function to collect
5384         the virtual generic method instances which need to be added to an IMT
5385         thunk.
5386         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
5387         Instead of creating a new IMT thunk, reset the vtable slot to the
5388         trampoline, the thunk will be created the next time the trampoline is called.
5389         (build_imt_slots): Add support for virtual generic methods in interfaces by
5390         adding to the IMT thunk all the methods registered using 
5391         mono_method_add_generic_virtual_invocation ().
5393         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
5394         (struct _MonoIMTCheckItem): Ditto.
5396         * object.c (mono_method_add_generic_virtual_invocation): Take a
5397         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
5398         the IMT thunk to include all items.
5399         
5400         * object.c (mono_class_create_runtime_vtable): Add a missing
5401         mono_loader_unlock ().
5403 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5405         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5407         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
5409 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5411         * object-internals.h: Rename _MonoReflectionEvent to
5412         MonoReflectionMonoEvent so it reflects the right managed type.
5413         Add a MonoReflectionEvent that correctly represents System.EventInfo.
5415         * icall.c:
5416         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
5417         type.
5419 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5421         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
5422         intermediary managed arrays. Use caching version of mono_array_new
5423         to allocate the result array.
5425 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5427         * reflection.c: Use cached version of mono_array_new alongside
5428         the mono_reflection_get_custom_attrs_by_type call path.
5430 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5432         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
5433         intermediary managed arrays. Use caching version of mono_array_new
5434         to allocate the result array.
5436         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
5438 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5440         * icall.c: Add small implementation of a growable stack bound array.
5442         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
5444         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
5445         intermediary managed arrays. Use caching version of mono_array_new
5446         to allocate the result array.
5448 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
5450         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
5451         helps Enum::CompareTo to be implemented without reboxing all enums
5452         to their underlying type.
5453 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
5455         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
5456         since it acquires a global lock leading to scalability problems.
5458         * profiler.c: Make the stat profiler work with multiple appdomains, this
5459         currently only works when no appdomains are unloaded.
5461 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5463         * appdomain.c: make the check to avoid copying when the assembly is
5464         already shadow copied actually work.
5466 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
5468         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5470         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
5471         changes to the managed side.
5473 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
5475         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
5476         classes + a separate lock for it, as it is used frequently at runtime, not
5477         just during metadata loading/JIT compilation.
5479         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
5480         for szarrays.
5481         
5482         * object-internals.h (mono_class_from_name_cached): New macro to cache
5483         the results of the lookup locally without having to declare a static
5484         variable to hold it.
5485         (mono_class_get_field_from_name_cached): Ditto.
5486         (mono_array_class_get_cached): Ditto.
5488         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
5489         the new macros.
5490         
5491         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
5492         slower search in metadata.
5494         * pedump.c: Fix a warning.
5496 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5498         * reflection.c (encode_locals): Add checks for user types.
5499         (method_encode_clauses): Ditto.
5500         (method_encode_code): Ditto.
5501         (mono_image_create_token): Ditto.
5503         * object-internals.h: Change the type of more fields from MonoReflectionType*
5504         to MonoObject*.
5506 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
5508         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
5509         the a thread does not suspend within 100ms.
5511         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
5512         in addition to StopRequested as well.
5514         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
5516         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
5517         search the method_hash before inserting a new entry, to avoid crashes when
5518         the same method is inserted multiple times, causing the old 
5519         MonoDebugMethodInfo structure to be freed by the value dtor function.
5521 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5523         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
5524         SO_EXLUSIVEADDRUSE where available.
5526 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5528         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
5529         runtime invoke wrappers, this time it is string ctor wrappers, which
5530         pass a dummy string as 'this' instead of their obj argument. Fixes
5531         #478473.
5533 2009-02-21  Jb Evain  <jbevain@novell.com>
5535         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5536         only get create_culture once.
5538 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5540         * reflection.c (mono_reflection_setup_internal_class): Move the user type
5541         check before the locking.
5542         
5543         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
5544         (mono_reflection_create_runtime_class): Ditto.
5545         (mono_reflection_sighelper_get_signature_local): Ditto.
5546         (mono_reflection_sighelper_get_signature_field): Ditto.
5548         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
5549         is a System.MonoType object or similar.
5550         (monotype_cast): New helper function to cast a MonoObject to a 
5551         MonoReflectionType object.
5553         * object-internals.h: Change MonoReflectionType* members in structures to
5554         MonoObject* members to force the usage of the monotype_cast () function.
5556         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
5557         structures/arrays. This causes us to assert instead of crashing when 
5558         instances of user defined subclasses of System.Type are encountered.
5560 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5562         * cil-coff.h:
5563         * icall-def.h:
5564         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
5565         win32 resource loaded from a PE file.
5567         * image.c: fix mono_image_lookup_resource.
5569 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5571         * icall-def.h:
5572         * threads-types.h:
5573         * threads.c: added internal call for WaitHandle.SignalAndWait.
5575 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5577         * cominterop.c : Adding cominterop_type_from_handle and 
5578           registering it as an icall.  Replacing all references
5579           to type_from_handle.
5581         Code is contributed under MIT/X11 license.
5583 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5585         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5587         * appdomain.c: Call the tracer init function.
5589         * domain-internals.h: Enable the tracer for the domain locks.
5591         * image.c: Enable the tracer for image locks.
5593         * loader.c: Enable the trace for the loader lock.
5595         * lock-tracer.h:
5596         * lock-tracer.c: Initial implementation of the lock trace utility.
5597         The tracer requires a compile time define to be enabled and a env var
5598         to be enabled at runtime.
5600 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5602         * domain.c (mono_domain_code_foreach): Improve documentation.
5604 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5606         * appdomain.c:
5607         * generic-sharing.c:
5608         * object.c:
5609         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5610         comes first.
5612 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5614         * domain.c: Add mono_domain_code_* functions that perform locking
5615         around the domain codeman.
5617         * domain-internals.h: Export those functions.
5619         * object.c: Use new functions instead of acquiring the domain lock.
5621 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5623         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5624         delegate. Fixes #477396.
5626 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5628         * reflection.c (create_custom_attr): Get rid of alloca.
5630 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5632         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5633           Adding exception handling for all CCW calls.
5635         Code is contributed under MIT/X11 license.
5637 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5639         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5641         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5642         native->managed marshalling code. Fixes #476247.
5644 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5646         * class.c (mono_class_get_vtable_entry): Move the addition of
5647         static rgctx invoke wrappers for vtable methods here, this simplifies
5648         a lot of code and causes fewer rgctx wrappers to be created.
5650         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5651         name of the statistics to begin with an uppercase.
5653 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5655         * reflection.c: Revert previous change as it breaks the build.
5656         
5657 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5659         * verify.c: Properly handle SZARRAY element type.
5661         Fixes #474271.
5663 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5665         * reflection.c (mono_image_create_method_token): Correctly encode
5666         MethodDef MemberRefParent token.
5668         Fixes #472845.
5670 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5672         * image.c (mono_image_close): Delete the critical section before
5673         freeing the memory holding it.
5675 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5677         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5678         Fixes #476257.
5680 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5682         * pedump.c (main): Call mono_marshal_init so pedump
5683         doesn't crash.
5685 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5687         * loader.c (method_from_memberref): Properly fix #474271 and
5688         don't break the runtime bad.
5690 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5692         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5693         (mono_domain_alloc0): Ditto.
5695 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5697         * loader.c (method_from_memberref): Don't abort if the array
5698         method is not found. A regular loader failure is more informative
5699         and correct.
5701         Fixes #474271.
5703 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5705         *loader.c: Guard MonoImage::method_cache/methodref_cache
5706         using the image lock instead of the loader lock.
5708         * metadata.h: Add comments about which fields are protected by
5709         the image lock.
5711 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5713         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5715         * generic-sharing.c (mono_method_construct_object_context): Remove the
5716         wrapper_type == NONE assert, it is not needed.
5718 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5720         * reflection.c (clear_cached_object): New helper function.
5721         (mono_method_clear_object): New function to clear the cached reflection
5722         objects for a dynamic method.
5724         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5725         Partly fixes # 463323.
5726         
5727 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5729         * class.c:
5730         * loader.c:
5731         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5733 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5735         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5736         take the image lock instead of the loader lock.
5738         * metadata-internals.h: Export new functions.
5740 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5742         * domain.c (app_config_parse): Remove another use of stat that is
5743         not necessary as g_file_get_contents already does the presence
5744         check. 
5746 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5748         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5750         * marshal.c: Move the bstr handling code to cominterop.c.
5752         * marshal.c: Remove some COM interop code missed previously.
5754 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5756         More Paolo patches from the Wii port:
5757         
5758         * security.c: Remove ves_icall_System_Environment_get_UserName
5759         from here.
5761         * icall.c: And put ves_icall_System_Environment_get_UserName
5762         here. 
5764         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5765         redundant call to stat that was only used to test for the file
5766         existence.   Patch from Paolo.
5768         * gc.c (run_finalize): If COM is disabled, do not link in
5769         mono_marshal_free_ccw.
5771         * generic-sharing.c: Use alloca.h here as well.
5773 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5775         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5777 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5779         * cominterop.c cominterop.h: New files.
5781         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5782         function/typedefs which are needed by cominterop.c global.
5784 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5786         * generic-sharing.c: Don't take the loader lock to guard image
5787         mempool allocs.
5789 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5791         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5792         called without the loader lock which is required to guard MonoImage:tokens.
5794 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5796         * class.c:
5797         * metadata.c:
5798         * method-builder.c:
5799         * marshal.c:
5800         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5802 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5804         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5805         Rework the code to use regular mono_image_alloc/0.
5807         * loader.c: Rework the code to use regular mono_image_alloc/0.
5809         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5811 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5813         * object-internals.h : Fixing a typo in the 
5814           MonoReflectionComVisibleAttribute struct.
5816         * marshal.c (cominterop_com_visible): Check the implemented 
5817           interfaces for ComImport.
5819         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5820           assume that bools should be treated as VARIANTBOOLs.
5822         * marshal.c (emit_marshal_boolean): Adding cases for 
5823           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5825         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5826           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5828         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5829           should be treated as VARIANTBOOLs.    
5831         Code is contributed under MIT/X11 license.
5833 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5835         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5836         allocation with the image lock.
5838 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5840         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5841         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5843         * object.c: Add mono_string_to_utf8_image.
5845         * object-internals.h: Export mono_string_to_utf8_image.
5847         * reflection.c: Rework all explicit references to the the image mempool to go thought
5848         the mono_image_alloc set of functions.
5850 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5852         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5853         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5854         and generics-sharing.c.
5856         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5857         as first argument. Note that this function remains broken as it doesn't perform locking around the
5858         mempool allocation.
5860         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5862         * image.c: Add g_slist_append_image.
5864         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5865         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5867         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5868         Fix all related code to do the same.
5870         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5872         * metadata-internals.h: Fix the signatures.
5874 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5876         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5877         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5878         and similar to work using MonoImage.
5880         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5881         MonoMemPool.
5883         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5885         * class.c (mono_metadata_signature_deep_dup): Same.
5887         * class.c (inflate_generic_type): Same.
5889         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5891         * metadata.c (mono_metadata_signature_dup_full): Same.
5893         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5894         mono_metadata_signature_dup_full.
5896         * metadata.c (mono_metadata_type_dup): Same.
5898         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5900         * reflection.c: Same.
5902         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5904         * metadata-internals.h: Fix the signatures.
5906         * class-internals.h: Same.
5908 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5910         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5911         and use mono_image_alloc set of functions instead. 
5913         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5914         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5915         of a MonoMemPool.
5917         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5919         * class.c (g_list_prepend_mempool): Removed.
5921         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5923         * image.c: Add g_list_prepend_image.
5925         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5927         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5930 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5932         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5933         mono_image_unlock.
5935         * image.c (mono_image_init): Init the lock field.
5937         * image.c (mono_image_init): Cleanup the lock field.
5939         * image.c: Add mono_image_(un)lock functions.
5941 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5943         * class.c, class-internals.h: mono_method_get_context_general()
5944         combines the functionality of mono_method_get_context() and
5945         mini_method_get_context().
5947         * generic-sharing.c, domain-internals.h:
5948         mono_method_construct_object_context() and
5949         mono_domain_lookup_shared_generic() moved from mini.
5951         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5952         method doesn't have the correct instantiation because it's shared
5953         generic code.  Fixes #473999.
5955 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5957         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5959         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5960         
5961 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5963         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5965         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5967         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5968         and recheck the cache for dups after it.
5970         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5972         Fixes one of the deadlocks found in #473150.
5974 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5976         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5977           For Win32, add additional break conditions for accept.
5979         Code is contributed under MIT/X11 license.
5981 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5983         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5984         lazily initialize the native wrapper cache.
5985         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5986         cache, since they are different from the normal wrappers.
5988         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5990         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5991         AOT compiled native wrappers.
5993 2009-02-09  Geoff Norton  <gnorton@novell.com>
5995         * appdomain.h:
5996         * security-core-clr.c: Allow enabling core-clr from the embedding
5997         API.
5999 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6001         * socket-io.c: when requesting all the local ips, if there are no
6002         interfaces up and running, MS returns 127.0.0.1.
6004 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6006         * mono-perfcounters-def.h: processor time is an inverse time.
6007         Fixes bug #468625.
6009 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6011         * socket-io.c: an empty host name returns the list of local IPs.
6012         Fixes bug #386637 part 1/2.
6014 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
6016         * verify.c (mono_class_interface_implements_interface): Call
6017         mono_class_setup_interfaces ().
6018         (merge_stacks): Ditto.
6020 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6022         * class.c (mono_class_setup_interfaces): New function to lazily initalize
6023         klass->interfaces.
6024         (mono_generic_class_get_class): Don't initalize klass->interfaces.
6025         (mono_generic_class_get_class): Ditto.
6027 2009-02-06  U-QUACK\miguel  <miguel@quack>
6029         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
6030         they live in security.c
6032         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
6033         another bit from Paolo's code.
6035 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6037         * object.c (build_imt_slots): Add a small optimization to avoid inflating
6038         methods which will be discarded by add_imt_builder_entry ().
6040         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
6041         need to be boxed.
6043         * loader.c: Add a statistics for the size of the memberref signature cache.
6044         
6045         * loader.c (find_cached_memberref_sig): New helper function.
6046         (cache_memberref_sig): Ditto.
6048         * loader.c: Cache the result of parsing memberref signatures, since otherwise
6049         they will be parsed again for every generic instantiation, leading to unbounded
6050         memory growth.
6052 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6054         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
6055         parameters of generic methods.
6057         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
6058         after the original method is copied to the inflated method.
6059         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
6061         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
6062         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
6064         * class.c metadata.c: Update after the changes above.
6066 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6068         * metadata-verify.c: Simplified error handling and added
6069         section table validation.
6071 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6073         * class-internals.h (MonoClassExt): New structure containing rarely used
6074         fields of MonoClass.
6075         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
6076         through a new 'ext' field.
6078         * class.c (mono_class_alloc_ext): New helper function to allocate 
6079         class->ext.
6081         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
6083 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6085         * object.c (mono_object_get_virtual_method): Properly inflate
6086         generic methods.  Fixes #472692.
6088 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6090         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
6091         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
6092         for the parent type, the created type must be ready to be used on a generic
6093         instantiation.
6094         We fill this_arg/byval_arg if the parent is a generic instance to make sure
6095         we won't have duplicated entries in generic_inst_cache.
6097         Fixes #469553.
6099 2009-02-05  Miguel De Icaza  <miguel@novell.com>
6101         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
6102         replace with plain BSD per the comments on the bug MONO77637.
6104 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6106         * class.c (mono_class_get_generic_class): New accessor function.
6107         (mono_class_get_generic_container): Ditto.
6109         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
6110         fields, similar to the ones in MonoMethod.
6112         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
6113         (mono_class_create_from_typedef): Set klass->is_generic if needed.
6115         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
6116         
6117         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
6118         the same information as element_class->byval_arg.
6120         * class.c reflection.c: Remove references to class->byval_arg.
6122         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
6123         klass->enum_basetype directly.
6125         * verify.c metadata.c object.c icall.c reflection.c: Use 
6126         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
6127         directly.
6129 2009-02-04  Miguel de Icaza  <miguel@novell.com>
6131         * icall-def.h: Remove internal calls for sockets when
6132         DISABLE_SOCKET is defined, file system writing features when the
6133         OS only support reading and not writing data and Policy support if
6134         the Policy is disabled.
6135         
6136         * image.c (do_mono_image_open): Apply Paolo's patches for using
6137         mono_file_map_ APIs here.
6139         * assembly.c: Add support for platforms to avoid prefix
6140         auto-detection. 
6142 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6144         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
6145         warning.
6147         * class.c (mono_class_inflate_generic_class): New helper function.
6149         * class.c: Use mono_class_inflate_generic_class in a few places. Add
6150         statistics for inflated methods/classes.
6152         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
6154         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
6155         the call is made from Delegate.CreateDelegate () for the invoke method of
6156         a delegate.
6158         * loader.c: Add a statistics for the memory occupied by inflated signatures.
6160         * metadata.c (mono_metadata_signature_size): New helper function.
6162         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
6163         generic instances.
6165         * metadata.c (inflated_method_in_image): Avoid calling 
6166         mono_method_signature () if the method does not already have a signature.
6168 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6170         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
6171         valuetype is compatible with target type, check by inheritance as a
6172         VT is not really compatible with System.ValueType, for example.
6174         * verify.c (do_invoke_method): Improve error message.
6176         * verify.c (do_box_value): If boxing a nullable, use the type argument
6177         on stack instead.
6179         * verify.c (do_newobj): Improve error message.  
6181         Fixes #469549.
6183 2009-02-03  Miguel de Icaza  <miguel@novell.com>
6185         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
6187 2009-02-03  Mark Probst  <mark.probst@gmail.com>
6189         * generic-sharing.c: Don't hold domain lock when calling
6190         instantiate_other_info().  Fixes #471958.
6192         * domain-internals.h, loader.c: Describe locking policy of domain
6193         lock vs loader lock.
6195 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6197         * verify.c (mono_delegate_signature_equal): Make it possible to check
6198         first-arg-bound delegates to static method.
6200         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
6201         static methods with the first arg bound.
6203         Fixes #469529.
6205 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6207         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
6208         errors.
6210         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
6211         under strict mode. Any type, when boxed can be seen as a reference type.
6213         Fixes #469528.
6215 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6217         * object.h: The lower bound of an array is a signed integer value.
6218         Introduce mono_array_lower_bound_t typedef. It should be used instead of
6219         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
6221         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
6222         calculate the upper bound.
6223         
6224         Fixes #471252.
6226 2009-02-02  Miguel de Icaza  <miguel@novell.com>
6228         From Paolo's work, refactored, cleared up:
6229         
6230         * threadpool.c, icall.c: ifdef code that requires a working socket
6231         stack.
6233         * metadata.c (mono_metadata_field_info): Do not attempt to return
6234         a value from a function declared as void.
6236         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
6237         from the console stack.
6239         * assembly.c: use strrchr instead of rindex.
6241         * class.c, object.c, marshal.c, icall.c, reflection.c: include
6242         alloca.h on systems that have it.
6244         * environment.c: Avoid code that uses stuff from
6245         HAVE_SYS_UTSNAME_H
6246         
6247         * appdomain.c: Include sys/time.h.
6249         * console-io.c: include sys/ioctl.h if it is available.
6251 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
6253         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
6255         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
6256         the method builder.
6258         * marshal.c: Set mb->skip_visibility instead of setting it on the method
6259         after it was created and cached, as the later is not thread safe.
6260         
6261 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6263         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
6264         called while the debugging module is not initialized. Fixes #471669.
6266 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
6268         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
6270         Fixes #471255.
6272 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6274         * generic-sharing.c (lookup_or_register_other_info): Make sure the
6275         loader lock is not taken while the templates lock is held.  Fixes
6276         #471089.
6278 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6280         * metadata.c (type_in_image): Added a check to fix a monodis
6281         crash.
6283 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6285         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
6286         nullable arguments.
6288         * object.c (mono_runtime_invoke_array): Ditto.
6289         
6290         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
6291         freeing wrappers of dynamic methods.
6293         * loader.c (mono_free_method): Call it. Fixes #463323.
6294         
6295         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
6296         methods taking vtype/byref arguments, to fix yet another bug caused by
6297         the sharing of runtime invoke wrappers. Partly fixes #471259.
6299 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
6301         * debug-mono-symfile.c (check_line): Return NULL instead of returning
6302         <first file in file table>:1 when the IL offset does not have an associated
6303         line number.
6305 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
6307         * mono-debug.c (mono_debug_lookup_locals): New function to return local
6308         variable info for a method.
6310         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
6311         
6312 2009-01-30  Jb Evain  <jbevain@novell.com>
6314         * pedump.c: reuse code from monodis to make sure pedump honors
6315         MONO_PATH, which is needed to verify net_2_1 assemblies.
6317 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6319         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
6320         there is no line number info.
6322 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
6324         Avoid some MonoType allocations
6325         * reflection.c (mono_reflection_initialize_generic_parameter):
6326         Reuse MonoType from param->pklass rather than allocating one.
6327         (mono_dynamic_image_free): Update to changes.
6329 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6331         Rearrange some code to improve consistency
6332         * reflection.c (mono_reflection_setup_generic_class): Move body ...
6333         (mono_reflection_initialize_generic_parameter): ... here.
6335 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
6337         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
6338         with type constraints as an experiment.
6340         * boehm-gc.c (on_gc_notification): Update mono_stats.
6342 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6344         Avoid some allocations
6345         * class-internals.h (_MonoGenericInst::type_argv): Convert from
6346         pointer to tail array to avoid extra allocation.
6347         * metadata.c (free_generic_inst): Update to changes.
6348         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
6349         on-stack struct.
6351 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
6353         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
6354         return TRUE if the two type objects are the same.
6356 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6358         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
6359         (mono_class_native_size): Use klass->marshal_info->min_align instead of
6360         klass->min_align, since klass->min_align contains the managed alignment,
6361         while the native alignment can be different, like for longs on x86.
6362         Fixes #469135.
6364         * class-internals.h (MonoMarshalType): Add a min_align field.
6366 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
6368         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
6369         the 1.0 format.
6371 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6373         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
6374         some comments about the usage of the used_regs field.
6376         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
6377         Fixes #469217.
6379 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
6381         * appdomain.c: return NULL instead of throwing FileNotFoundException
6382         when LoadAssembly() fails.
6384 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6386         * metadata.c (mono_metadata_generic_param_equal): Only compare the
6387         image if the owner is NULL.  Fixes the AOT failures.
6389 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6391         * metadata.c (mono_metadata_load_generic_params): Initialize the 
6392         MonoGenericParam structure using memset so the image field is initialized
6393         as well.
6395 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6397         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
6398         a plain store.
6400 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6402         * class.c (mono_class_setup_vtable_general): In the generic instance
6403         optimization, set method->slot for abstract virtual methods. Fixes part of
6404         #467834.
6406 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6408         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
6409         which signals that the unloading has started but all appdomain services must
6410         remain operational.
6412         * appdomain.c (mono_domain_unload): The initial state for unloading now
6413         is unloading_start and we switch to unloading after the managed call to
6414         AppDomain::DomainUnload has finished.
6416         The new unloading state has to be created because managed code in the
6417         DomainUnload event can depend on things like the threadpool still working.
6418         The domain must remain fully functional while the event executes.
6420         This shown as an issue due to Process::WaitForExit, which waits for
6421         async reads of stdout and stderr to complete. Since those are processed
6422         in the threadpool the code deadlocks because the DomainUnload callback 
6423         waits for the async read finished event, which should have been set by a
6424         threadpool job but has been discarded due to the domain been in unload
6425         state.
6427 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6429         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
6430         image must match.
6432 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6434         * reflection.c (resolve_object): For fields, inflate the class and
6435         then get the field in the inflated class.
6437 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6439         * object-internals.h (struct _MonoException): Added a comment
6440         explaining the new use of trace_ips.
6442 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6444         * generic-sharing.c (inflate_other_data): Inflate array methods
6445         correctly.
6447         * loader.c, class-internals.h: Rename search_in_array_class() to
6448         mono_method_search_in_array_class() and make it non-static.
6450 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6452         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
6453         Hopefully fixes #458168.
6455 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6457         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
6458         as it is performed elsewhere.
6460         Code is contributed under MIT/X11 license
6462 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6464         * mono-perfcounters-def.h: Add counters for asp.net requests total and
6465         requests queued.
6466         * object.c (mono_raise_exception): Increment the exceptions total
6467         counter when an exception is thrown.
6468         * class-internals.h: Add a location for storing the total number of
6469         asp.net requests served.
6470         * mono-perfcounters.c: Implement update support for asp.net counters
6471         from the class libraries. Implement read support for asp.net counters
6472         and exceptions total counter.
6474 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6476         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
6477         accessing klass->methods. Fixes #467385.
6479 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6481         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
6482         for byval arguments without an [Out] attribute. Fixes #467212.
6484         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
6485         Fix compilation under android.
6486         
6487         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
6488         processed, scan them directly after they are copied, to achieve better locality
6489         and cache usage.
6491         * socket-io.c: Applied patch from Koushik Dutta
6492         (koush@koushikdutta.com). Disable IPV6 when running under android.
6494 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6496         * icall.c (ves_icall_InternalExecute): Add write barriers.
6498         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
6499         the GC code.
6501         * sgen-gc.c: Implement write barriers in IL code.
6503 2009-01-17  Geoff Norton  <gnorton@novell.com>
6505         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
6507 2009-01-17  Geoff Norton  <gnorton@novell.com>
6509         * image.c: When unloading the image->references table, there can be gaps
6510         in it.  Ensure that we iterate every entry to avoid leaking assembly references
6511         when unloading an appdomain.
6513 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
6515         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
6516         speed up ptr-in-nursery checks.
6518         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
6519         threads_lock () to prevent deadlocks.
6521         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
6522         does not need to be scanned during minor collections, since writes to it
6523         must use write barriers.
6525 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
6527         * metadata-verify.c: Add pe nt header verification.
6528         
6529 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6531         * gc.c: Fix a few warnings when using SGEN.
6533 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
6535         * metadata-verify.c: Add pe optional header verification.
6537 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6539         * sgen-gc.c: Add support for user defined marker functions, used by
6540         MonoGHashTable to avoid registering a GC root for every hash node.
6542 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6544         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
6545         non-pinned roots into separate hashes to avoid having to traverse them
6546         in functions which are only interested in one kind.
6548 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6550         * metadata-verify.c: Add pe header machine field verification.
6551         
6552 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6554         * metadata-verify.c: Add pe header size verification.
6556 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6558         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
6559         using the GC, they don't contain references.
6561         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
6563 2009-01-13  Geoff Norton  <gnorton@novell.com>
6565         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
6566         AppDomains created on the native side can be cleaned up on the native side.
6568 2009-01-13  Geoff Norton  <gnorton@novell.com>
6570         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6571         as well as the managed api.
6573 2009-01-13  Geoff Norton  <gnorton@novell.com>
6575         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6576         with a MonoAppDomain initialized against it.
6578 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6580         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6581         
6582         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6584         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6585         into the wrapper caches. Fixes #465700.
6587         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6588         method builder.
6589         (mono_mb_create_method): Set the clauses from the method builder.
6591 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6593         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6594         Patch from Makoto Kishimoto.
6596 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6598         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6599         encoding them as ROOT_DESC_COMPLEX.
6600         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6602 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6604         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6605         no longer point to the nursery.
6607         * sgen-gc.c: Add a few comments/FIXMEs.
6608         
6609         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6611         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6612         initialization of the various _method variables thread safe. Fixes
6613         #465377.
6615 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6617         * domain.c, domain-internals.h: Remove the shared_generics_hash
6618         and its lookup functions.
6620 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6622         * socket-io.c:  Fixing the MSVC build. 
6624         Code is contributed under MIT/X11 license.
6626 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6628         * metadata-verify.c: Add pe header watermark verification.
6630 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6632         * metadata-verify.c: Add lfanew verification.
6634 2009-01-12  Jb Evain  <jbevain@novell.com>
6636         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6637         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6639 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6641         * socket-io.c: Fix the build.
6643         * environment.c: Fix an #ifdef.
6645 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6647         * threadpool.c (async_invoke_thread): Handle the wait function returning
6648         WAIT_IO_COMPLETION as well.
6649         (async_invoke_io_thread): Ditto.
6651 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6653         * threads.c: Fixing the Windows build.
6655         Code is contributed under MIT/X11 license.
6657 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6659         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6660         interrupt a wait.
6661         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6662         the thread to wait again.
6664 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6666         * metadata-verify.c: Initial skeleton of the metadata verifier.
6668         * pedump.c: Add support for the metadata verifier.
6670         * verify-internal.h: Export the whole assembly metadata verifier function.
6672 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6674         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6676 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6678         * Makefile.am: Upgrade dtrace-prelink.sh location.
6680 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6682         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6683         well. Otherwise the shutdown deadlock that happens on unix will can happen
6684         as well.
6685         If the main thread code finishes too fast it's possible that the finalizer
6686         thread won't have executed yet, won't record itself as the finalizer thread
6687         and the shutdown sequence will wait on it forever.
6689 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6691         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6692         with MSVC.
6694 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6696         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6697         Robert Jordan for pointing this out.
6699 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6701         * icall.c
6702         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6703         ves_icall_System_IO_DriveInfo_GetDriveType.
6705 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6707         * icall.c: Wrap calls to mono_strtod in CriticalSection
6708         invocations when using eglib, to work around #464316.
6710 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6712         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6713         return value of GetCurrentDirectory to never access unitialized memory.
6715 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6717         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6718         return value of GetCurrentDirectory and expand the buffer if needed.
6720         Fixes #459094.
6722 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6724         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6725           Adding a call to mono_init_com_types.
6727         Code is contributed under MIT/X11 license.
6729 2009-01-07  Geoff Norton  <gnorton@novell.com>
6731         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6732         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6733         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6734         be the value of the ip buffer.
6736 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6738         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6739         interfaces_packed here.
6741         Fixes part of #463294.
6743 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6745         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6747         Fixes part of #463294.
6749 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6751         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6752         is a boxed complex as well.
6754         Fixes part of #463294.
6756 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6758         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6759         control if a methodspec should be created for the generic method definition from external assemblies.
6760         Caching of methodspec is done using the handleref hash table.
6762         Fixes #462592.
6764 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6766         * loader.c (find_method): When searching the interfaces of a class
6767         check the transitive closure of implemented interfaces.
6769         Fixes #463303.
6771 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6773         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6774         
6775 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6777         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6778         interfaces calculation to fill_valuetype_array_derived_types.
6780         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6781         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6782         for example.
6784         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6785         interfaces for valuetypes if needed.    
6787         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6788         for their basetype as well. Types are array expanded if rank is > 0.
6790         Fixes #400716.
6792 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6794         * socket-io.h : Changing the signature of
6795           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6796           the blocking state.
6798         * icall-def.h :  Changing the signature of
6799           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6801         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6802           For Windows only.  Avoid blocking when calling accept by
6803           querying for a connection via select.  The loop also queries
6804           the thread state every 1000 micro seconds for the thread
6805           stop state.  This will avoid the process hanging on shutdown
6806           when using a TcpChannel that is never connected to.
6808         Code is contributed under MIT/X11 license.
6810 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6812         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6814 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6816         * class.c (get_implicit_generic_array_interfaces): Extract common
6817         code to a helper function making it a lot easier on the eyes.
6819 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6821         * class.c (get_implicit_generic_array_interfaces): If the internal
6822         enumerator is an interface inflate System.Object instead of itself.
6824         Fixes #461261.
6826 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6828         * object.c (mono_runtime_invoke_array): Don't assert with
6829         byref nullable types.
6831         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6832         byref nullables we unbox the object and store it on the
6833         stack. 
6834         We can't use the boxed object since it is the T of Nullable<T>
6835         and the boxed representation of a nullable it's underlying type
6836         or null.
6837         We could cheat and create a boxed nullable and use the same
6838         machinery of other byref VTs but this feels like a hack and
6839         using the stack has the bonus of reducing heap pressure.
6841         Fixes #461941.
6843 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6845         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6846         return value.
6848         Fixes #461867.
6850 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6852         * icall-def.h : Adding an internal call definition for 
6853           System.Environment.internalBroadcastSettingChange.
6855         * icall.c : Adding a Windows only implementation to broadcast a 
6856           WM_SETTINGCHANGE when an environment variable has changed.
6858         Code is contributed under MIT/X11 license.
6860 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6862         * class.c, class-internals.h: Made
6863         mono_class_has_parent_and_ignore_generics() non-static.
6865 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6867         * image.c: deal with the mmap failing when loading an image.
6869 2008-12-17  Geoff Norton  <gnorton@novell.com>
6871         * threadpool.c: Ensure that the io_queue_lock is initialized
6872         in all circumstances, as we always attempt to cleanup against it.
6874 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6876         * icall.c (ves_icall_System_Environment_get_Platform): For
6877         compatibility reasons for existing client code we will keep
6878         returning 4 for a while.   
6880         For how long will depend on the documentation being updated, and
6881         for us to give client code a chance to be updated.
6883         This reverts the original decison on #433108 since we did not
6884         catch roughly 33 instances of the broken code in our own source
6885         code base, we did not catch failures on the buildbots, and QA did
6886         not bring this as a problem.
6888         Only today I found some customer's code breaking due to our own
6889         class libraries not being fully updated and tracked it down to
6890         this change.  I am reverting it because if we could not even get
6891         our story straight in our own code base, how can we hope that our
6892         end user code be fixed?
6894         As of this morning, our Wiki page that documents how to detect
6895         Unix had not been fixed.    
6897 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6899         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6901         * class.c (mono_class_get_fields): Handle loading errors.
6903 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6905         * 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.
6906         
6907 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6909         * mono-perfcounters.c: avoid warning.
6911 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6913         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6914         make sure all interfaces have MonoClass::interface_id set.
6916         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6917         method table is property set.
6919 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6921         * class.c: New function mono_class_setup_interface_id that setup
6922         MonoClass::interface_id if needed.
6924         * class-internals.h: Export new function.
6926 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6928         * class.c: Add code to sanity check the vtable after setup_vtable_general
6929         has done it's work.
6931 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6933         * icall.c: make Assembly.GetExecutingAssembly work properly when
6934         reflection is used to invoke the method.
6935         Bug #321781 fixed.
6937 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6939         * metadata/generic-sharing.c: Look for constraints in all type
6940         arguments, not just the first one.
6942 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6944         * appdomain.c: return the correct CodeBase for an Assembly instance
6945         that was loaded from the shadow-copy directories.
6946         Bug #458190 fixed.
6948 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6950         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6952         * sgen-gc.c (check_object): New debugging helper function.
6954         * object.c: Fix calls to mono_value_copy_array ().
6956 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6958         * class.c (mono_class_setup_fields): If working on an inflated class
6959         first check if the generic definition did init with success.
6961         Fixes #445361.
6963 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6965         pedump.c (main): Fix a warning.
6967 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6969         * object-internals.h : Adding a definition for 
6970           MonoReflectionComVisibleAttribute.
6972         * marshal.c (cominterop_com_visible) :  Method added to check the 
6973           ComVisible attribute of a class.
6975         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6976           cominterop_raise_hr_exception added to consolidate common code 
6977           to raise hr exceptions.
6979         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6980           if a managed class should support IDispatch.
6982         * marshal.c 
6983           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6984           Added additional checks for managed object when getting 
6985           an IDispatch interface.
6987         Code is contributed under MIT/X11 license.
6989 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6991         pedump.c (main): Handle mono_get_method () returning NULL. 
6993 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6995         * marshal.h: Fix a warning.
6997 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6999         * marshal.c : Adding cominterop_release_all_rcws to release all
7000           runtime callable wrappers held by the runtime.
7002         * marshal.h : Adding declaration for cominterop_release_all_rcws.
7003           
7004         Code is contributed under MIT/X11 license.
7006 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7008         * metadata.c (mono_image_alloc_lock): New helper function.
7009         (mono_image_alloc0_lock): Ditto.
7011         * metadata.c: Use the alloc_lock () helper functions for allocating
7012         memory from the image mempool.
7014 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
7016         * class.c (mono_class_from_generic_parameter): Document it's
7017         locking behavior. Fix double checked locking here, we stored in
7018         param->pklass a partially initialized MonoClass and no membar was used.
7020 2008-12-05  Marek Habersack  <mhabersack@novell.com>
7022         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
7023         (3) functions are present in the C library use them to do the
7024         job. If they are absent, make sure that the sum of int_part and
7025         dec_part is rounded before returning. This is necessary due to the
7026         division of dec_part by the power of 10 before the final addition
7027         is performed - if the result is not rounded in some cases it will
7028         yield invalid results.
7030 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
7032         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
7033         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
7034         instruction instead of a pointer constant.
7036 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
7038         * loader.c (mono_method_get_header): Do most of the work outside the
7039         loader lock, to avoid assembly load hook deadlocks.
7041         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
7042         (mono_metadata_parse_type_full): Ditto.
7044 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
7046         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
7047         Make the stack depth fixed. Ensure proper argument passing to the backtrace
7048         funtions. Finally, use a lock to produce well ordered output.
7050         The lock looks silly, as all calls to the corlib mempool should be guarded
7051         with the loader lock, but for some reason this fact doesn't help. 
7053         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
7055 2008-12-02  Mark Probst  <mark.probst@gmail.com>
7057         * socket-io.c: 64 bit big-endian fixes.
7059 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
7061         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
7062         targets that require strict compatibility between the types.
7064         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
7065         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
7066         Kill the strict argument and create a new one valuetype_must_be_boxed.
7068         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
7069         state that all valuetypes must be boxed.
7071         Fixes #448560.
7073 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
7075         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
7076         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
7078         Contributed under MIT/X11 license.
7080 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
7082         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
7083         the inflate_generic_type machinery should handle it.
7085         This avoids a crash when the field's flags is zero and it's type is
7086         a primitive.
7087         What happens is that mono_metadata_parse_type_full will see that opt_attrs
7088         is zero and will return one of the cached built-in primitive types. Since
7089         those types live in read-only memory, the code that copies it crashes.  
7091 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7093         * object.c: Don't put function descriptors into generalized IMT
7094         thunks.
7096 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7098         * class.c: Enable generic code sharing on PPC64.
7100 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7102         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
7103         from mini/mini.c.
7105         * generic-sharing.c: Allocate the method template slists from the
7106         image mempool so it doesn't leak.
7108 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
7110         * class.c (generic_array_methods): Release the linked list.
7112 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7114         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
7115         invocation to g_utf16_to_utf8().
7117 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7119         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
7120         arguments on big endian archs.
7122 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7124         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
7125         the type name (test added in corlib).
7127 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7129         * pedump.c: initialize perf. counters. Fixes a segv.
7131 2008-11-25  Martin Baulig  <martin@ximian.com>
7133         * mono-debug-debugger.c
7134         (mono_debugger_runtime_invoke): Return the exception object if an
7135         exception was thrown.  Visual Studio displays the exception object
7136         in the locals window.
7138 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7140         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
7141         ftnptr.
7143 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7145         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
7146         MONO_TYPE_U are sizeof (gpointer), too.
7148 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7150         * marshal.c (mono_type_native_stack_size): Fixed size and
7151         alignment for reference types.
7153 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7155         * class.c (mono_class_generic_sharing_enabled): Disable generic
7156         code sharing for PPC64.
7158 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
7160         * icall.c (mono_method_get_equivalent_method): Make sure
7161         method->klass->methods is inited before looping over it.
7163 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7165         * object.c: when calling ExecuteAssembly in a newly created domain,
7166         the configuration file and application base are already set up.
7167         Bug #446353 take 2 fixed.
7169 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
7171         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
7172         Fixes #444715. Fix a warning.
7174 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
7176         * appdomain.c: write the full path of the assembly to the .ini file
7177         created when "shadow-copying"
7178         Bug #446353 fixed.
7180 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
7182         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
7183         if signature==FALSE.
7185 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7187         * marshal.h : Fix the cygwin build.
7188            marshal.c:12442: undefined reference to `_IID_IMarshal'
7189           
7190         Code is contributed under MIT/X11 license.
7192 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7194         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
7195           free threaded marshaler when QueryInterface is called on a COM callable
7196           wrapper requesting the IMarshal interface.
7197           
7198         Code is contributed under MIT/X11 license.
7200 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
7202         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
7204         * reflection.c (mono_type_get_object): Special case the very common
7205         void type.
7207         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
7208         hold typeof(void).
7210 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
7212         * process.h : Adding method declaration for
7213           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7214           
7215         * process.c : Adding implementation for
7216           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7217           
7218         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
7219           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7221         Code is contributed under MIT/X11 license.
7223 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
7225         * appdomain.c (unload_thread_main): Clean up threadpool by
7226         calling mono_thread_pool_remove_domain_jobs.
7228         * domain-internals.h (struct _MonoDomain): Add new fields to
7229         help coordinate the cleanup of the threadpool.
7231         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
7232         that cleans up the threadpool of all jobs associated with an appdomain.
7233         It does that by cleaning up the queues and making sure all active
7234         threads are accounted.
7236         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
7237         unloaded or in the process of. Take this is such way that there is
7238         no race condition between another thread starting the unload and the
7239         current thread acknowledging it.
7241         * threadpool.c (async_invoke_thread): Same.
7243         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
7244         firing the new thread.
7246         * threadpool.c (start_tpthread): Same.
7248         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
7250         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
7252 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
7254         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7255         Add support for DuplicateHandle.
7256         
7257         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7258         Add support for DuplicateHandle.
7259         
7260         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7261         Add support for DuplicateHandle.
7263         Code is contributed under MIT/X11 license.
7265 2008-11-06  Mark Probst  <mark.probst@gmail.com>
7267         * class-internals.h: Make min_align into a whole byte.
7269         * class.c: Set min_align for SIMD types to 16.
7271 2008-11-05  Geoff Norton  <gnorton@novell.com>
7273         * attach.c: Default the attacher to enabled for all cases including
7274         embedded.
7276 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
7278         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
7279         change r117650.
7281 2008-11-04  Mark Probst  <mark.probst@gmail.com>
7283         * monitor.c, monitor.h: New function for querying offsets of
7284         members of MonoThreadsSync.
7286 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
7288         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
7289         to speed up this function and to avoid the boundless memory growth caused by
7290         the signature_dup () calls.
7292 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
7294         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
7295         wrapper.
7297         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
7298         by 1 bit.
7300         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
7302 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7304         * appdomain.c:
7305         * domain-internals.h: made mono_set_private_bin_path_from_config()
7306         "internal".
7307         * object.c: call the above function after setting the configuration
7308         file path for the root domain.
7309         Fixes bug #314478.
7311 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7313         * assembly.c: when the assembly is loaded from an absolute path, end
7314         basedir with a directory separator.
7315         Bug #440781 fixed.
7317 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7319         * monitor.c (mono_monitor_get_fast_enter_method): If
7320         CompareExchange is not available, don't create the fastpath
7321         instead of asserting.  (The method is missing in the 1.1 profile.)
7323 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7325         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
7327         * monitor.c, monitor.h: Code for generating Monitor.Enter and
7328         Monitor.Exit IL fastpaths.
7330 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7332         * class.c (mono_class_create_from_typedef): Added Vector2ul.
7334 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7336         * class.c (mono_class_create_from_typedef): Added Vector2l.
7338 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7340         * class.c (mono_class_create_from_typedef): Added Vector2d.
7342 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7344         * appdomain.c: translate \ into / for cache_path.
7345         * domain-internals.h: new mono_is_shadow_copy_enabled().
7346         * icall.c: (fill_reflection_assembly_name) do the same path
7347         manipulations that get_code_base does.
7348         (get_code_base) use mono_is_shadow_copy_enabled.
7350 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7352         * appdomain.c: shadow-copied assemblies go to CachePath +
7353         ApplicationName when both are set. DynamicBase has nothing to do with
7354         shadow copies.
7355         Bug #406877 fixed.
7357 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
7359         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
7360         STANDALONESIG table.
7362         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
7363         standalone signatures.
7365         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
7366         comparison code: instead of comparing the signatures using a custom
7367         equals function, transform them to a common signature and compare that. This
7368         works better with AOT.
7370 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
7372         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
7374         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
7375         call for generic instances.
7376         (mono_class_setup_properties): Call setup_properties () before accessing
7377         gklass->properties.
7379         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7380         over the virtual methods of a class using metadata if possible, avoiding the
7381         creation of MonoMethod's for non-virtual methods.
7382         
7383         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7384         get_virtual_methods () to iterate over the virtual methods of classes.
7386 2008-10-25  Martin Baulig  <martin@ximian.com>
7388         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
7390 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7392         * class.c (mono_class_create_from_typedef): Added Vector4i.
7394 2008-10-24  Mark Probst  <mark.probst@gmail.com>
7396         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
7397         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
7398         special-casing applies to eliminate the call completely.
7400 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7402         * class.c (mono_class_create_from_typedef): Added Vector8s.
7404 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7406         * class.c (mono_class_create_from_typedef): Added Vector16sb.
7408 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7410         * icall.c: get rid of annoying warning.
7412 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7414         * threadpool.c: in 1.x, if you change the background status of the
7415         threadpool thread, it's not reset.
7416         Remove unnecessary calls to SetState.
7418 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7420         * threadpool.c: asynchronously create a set of idle threads upon first
7421         use of the threadpool. SetMinThreads will now start the appropriate
7422         number of idle threads if they are not already running. The default is
7423         1 threadpool thread per CPU. Increased the maximum number of threads
7424         per CPU to 10.
7426 2008-10-22  Martin Baulig  <martin@ximian.com>
7428         Revert r116521 from Zoltan, it breaks the debugger:
7430         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7431         over the virtual methods of a class using metadata if possible, avoiding the
7432         creation of MonoMethod's for non-virtual methods.
7433         
7434         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7435         get_virtual_methods () to iterate over the virtual methods of classes.
7437 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7439         * threads.c: when creating a threadpool thread, set its state to
7440         'background'.
7441         * threadpool.c: reset the background state of a threadpool thread
7442         after finishing each work item
7443         Bug #437888 fixed.
7445 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7447         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
7448         
7449         * class.c (mono_class_setup_vtable_general): Add an optimized version for
7450         generic instances which works by inflating the methods in the container
7451         class's vtable.
7453         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
7454         variant which doesn't make a copy if no inflation was done.
7455         (mono_class_setup_fields): Use it.
7457         * metadata.c (mono_metadata_get_shared_type): New helper function to
7458         return a shared instance of a given MonoType.
7460         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
7461         a copy of most non-generic types.
7463 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
7465         * threadpool.c: remove one more GetSystemInfo () call.
7467 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7469         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
7470         use the code in mono-proclib.h to get processor information.
7472 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7474         * appdomain.c: fixed the logic that determines whether assemblies in a
7475         directory are "shadow-copied" or not. Bug #433483 fixed.
7477 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7479         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
7480         warning.
7482 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7484         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
7485         returning a vtype.
7487         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
7488         reflection.c: Use mono_field_get_name () for accessing a field's name.
7490         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
7491         class.c
7493         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
7494         field.
7496         * loader.c (find_method_in_class): Reenable the metadata optimization by
7497         not using it for generic instances.
7499         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
7500         data/def_type fields from MonoClassField into a separate structure.
7501         (struct MonoClassField): Remove data/def_type fields.
7502         (struct _MonoClass): Add a 'field_def_values' array to store the default
7503         values/RVA for fields.
7505         * class.c reflection.c: Update after the changes.
7506         
7507         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
7508         for accessing field->data.
7510         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
7512         * loader.c (find_method_in_class): Revert the last change for now as
7513         it breaks Mono.C5 unit tests.
7515         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
7516         'field_generic_types' and 'field_objects' which contain the information
7517         previously stored in MonoInflatedField.
7518         (MonoInflatedField): Delete.
7519         (struct _MonoClassField): Delete 'generic_info' field.
7521         * reflection.c: Store the information which was previously in 
7522         field->generic_info in MonoDynamicGenericClass instead.
7524         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
7525         MonoClassField changes.
7527 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
7529         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
7530         store the value inside the data array of the MonoMethodWrapper.
7531         This saves memory, is faster and fixes the lifetime issues (methods
7532         were never removed from the hash previously). May also fix bug#436996.
7534 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7536         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
7537         generic instances, compute the type from the generic definition instead of
7538         looking in field->generic_info.
7540         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
7541         for inflated fields, the only user was get_fieldref_token () which no
7542         longer needs it.
7544         * class.c (mono_class_init): Revert the last change as it seems to cause
7545         crashes.
7547         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
7548         bytes on 64 bit platforms.
7550         * object.c (mono_class_create_runtime_vtable): Fix a warning.
7551         
7552         * object.c (mono_class_create_runtime_vtable): Don't initalize
7553         field->data/field->def_type here, it is done lazily by 
7554         mono_class_get_field_default_value ().
7556         * icall.c (ves_icall_get_enum_info): Call 
7557         mono_class_get_field_default_value () instead of directly accessing
7558         field->data and field->def_type.
7560         * object.c (get_default_field_value): Ditto.
7562         * class.c (mono_field_get_data): Ditto.
7563         
7564         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
7565         call for generic instances.
7567         * loader.c (find_method_in_class): If klass != from_class, then inflate
7568         the method with the context of from_class, since the caller assumes this.
7570 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7572         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7573         for accessing method->slot.
7575 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7577         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7579 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7581         * class.c (mono_method_get_vtable_index): Use
7582         mono_method_get_vtable_slot () for accessing method->slot.
7584         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7585         accessing klass->methods.
7587         * class.c (mono_method_get_vtable_slot): New helper function.
7588         (mono_class_get_vtable_entry): Ditto.
7589         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7590         accessing method->slot.
7592         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7593         method to get_inflated_method ().
7595         * class.c (mono_class_get_inflated_method): New helper method to obtain
7596         a method of an inflated class without calling setup_methods ().
7597         (mono_class_get_cctor): Use get_inflated_method.
7599         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7600         
7601         * marshal.c image.c: Lazily create all the marshal caches.
7603         * image.c (mono_image_init): Move initialization of runtime_invoke
7604         caches to marshal.c.
7606         * marshal.c (get_cache): New helper function to lazily initialize a 
7607         wrapper cache.
7608         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7610         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7612 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7614         * loader.c: fixed check for interface type.
7616 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7618         * appdomain.c: check for NULL setup before it's referenced.
7621 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7623         * class.c: remove the unused old vtable setup code.
7625 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7627         * class.c: don't depend on interface order in
7628         setup_interface_offsets (bug #435777).
7629         * reflection.c: sort the InterfaceImpl table (patch from
7630         Jb Evain  <jbevain@novell.com>).
7632 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7634         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7635         the low level assemblies lock.
7637 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7639         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7640         object.c, reflection.c, socket-io.c, threads.c: introduced
7641         mono_framework_version () to return the major framewrok version,
7642         changed the code that was using more complex patterns to use it.
7643         Return the correct value for PlatformID for OSX.
7645 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7647         * icall-def.h, process.h, process.c: added an icall to get info about
7648         processes using mono-proclib.
7650 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7652         * mono-perfcounters.c: use the mono-proclib functions to
7653         access process information.
7655 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7657         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7658         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7659         reflection.c: remove rawbuffer usage: mmap support is more sanely
7660         provided by utils/mono-mmap.
7662 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7664         * gc.c: use posix semaphores when possible so that
7665         mono_gc_finalize_notify() is signal safe.
7667 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7669         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7670         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7671         be #ifdef-ed out, the linker will remove the rest.
7673         * marshal.c: Implement DISABLE_COM.
7675         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7677 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7679         * locales.c (string_invariant_compare_char): Optimization: do not
7680         call g_unichar_type unless we actually need the information.
7682 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7684         * object.c, class-internals.h: Also create remoting trampolines
7685         for generic methods.  Pass the domain to the remoting trampoline
7686         creation function, too.
7688 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7690         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7692 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7694         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7695         Vector4ui.
7697 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7699         * assembly.c:
7700         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7702 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7704         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7705         for the least possible amount of time (extending the fix in r113458).
7707 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7709         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7711 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7713         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7714         as possible simd intrinsic types.
7715         Optimized the test to check for the common prefix first.
7717 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7719         * class.c: back out part of a broken optimization committed on
7720         May 23th (bug #433908).
7722 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7724         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7725         Win32.  Should fix #432388 for most cases until we have the new
7726         profiler on Win32.
7728 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7730         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7731         instead of using inst->id so the hash is stable for AOT.
7733 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7735         * appdomain.c:
7736         * icall.c: create a .ini file for shadow-copied assemblies that
7737         contains the location of the original assembly. Use this to return the
7738         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7739         Also fix the number of '/' for windows when returning the CodeBase.
7740         Fixes bug #430920.
7742 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7744         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7746         Code is contributed under MIT/X11 license.
7748 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7750         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7751           if if the class vtable needs initialized.
7753         Code is contributed under MIT/X11 license.
7755 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7757         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7758           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7759           STRING->BSTR, and CLASS->INTERFACE.
7761         Code is contributed under MIT/X11 license.
7763 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7765         * sysmath.h: changed the declaration of the
7766         ves_icall_System_Math_Round2 icall by adding an extra
7767         away_from_zero parameter.
7769         * sysmath.c (ves_icall_System_Math_Round2): added support for
7770         away from zero rounding. The icall now takes an extra boolean
7771         parameter to signal that away from zero operation is requested.
7773 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7775         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7776         the delegate klass so it can work with full-aot.
7777         (mono_marshal_get_delegate_end_invoke): Ditto.
7778         (mono_marshal_get_delegate_invoke): Ditto.
7780 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7782         * gc.c, attach.h, attach.c: remove a bad pattern:
7783         add_finalizer_callback () is not implemented correctly, it can't
7784         without adding more overhead to the finalizer loop and it's not
7785         even needed, since we know exactly what we need to call, so there is
7786         no need to do so through an expensive function pointer.
7788 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7790         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7791         for the no-gc case.
7792         * attach.c (mono_attach_init): Remove the #ifdef.
7794 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7796         * attach.c (mono_attach_init): Don't use
7797         mono_gc_add_finalizer_thread_callback when compiling without GC.
7798         Fixes #432306.
7799         
7800         Code is contributed under MIT/X11 license.
7802 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7804         * class.c (mono_class_create_from_typedef): Remove the 
7805         #ifndef DISABLE_SIMD stuff.
7807 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7809         * class-internals.h (MonoClass): Added simd_type bit field.
7811         * class.c (mono_class_create_from_typedef): Check if type is a simd
7812         intrinsic.
7814 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7816         * object.c (mono_method_add_generic_virtual_invocation): Only add
7817         instantiations to the thunk whose count is at least as large as
7818         the threshold.
7820 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7822         * icall.c: changed the Type of the exception thrown when trying to
7823         invoke a constructor on an abstract class. Part of the fix for bug
7824         #324185.
7826 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7828         * class.c, class-internals.h (mono_method_get_vtable_index): New
7829         function which returns the index into the vtable and properly
7830         handles inflated virtual generic methods.
7832 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7834         * object.c, domain.c, object-internals.h, domain-internals.h:
7835         Generalize IMT thunk machinery to also handle thunks for virtual
7836         generic method invokes.  When a virtual generic method is invoked
7837         more than a number of times we insert it into the thunk so that it
7838         can be called without lookup in unmanaged code.
7840         * generic-sharing.c, class-internals.h: Fetching a
7841         MonoGenericInst* for a method from an (M)RGCTX.
7843 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7845         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7846         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7847         marshalling. Fixes #431304.
7849 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7851         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7852           handle when ref is specified without In or Out.
7854         Code is contributed under MIT/X11 license.
7856 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7858         * loader.c (mono_get_method_constrained): Don't expand method with
7859         the class's context, because it's already a method of that class.
7861 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7863         * attach.c : should be correct build fix.
7865 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7867         * attach.c: Fix the previous change.
7869 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7871         * attach.c : quick w32 build fix.
7873 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7875         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7876         crashes MonoDevelop: #430455.
7878 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7880         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7881         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7883         * domain.c: Remove initialization/cleanup of the removed fields.
7885 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7887         * class.c (mono_class_generic_sharing_enabled): Enable generic
7888         code sharing for PPC.
7890 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7892         * attach.c : Fixing the Windows builds.
7894         Code is contributed under MIT/X11 license.
7896 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7898         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7899         the default generic sharing mode to 'all'.
7901 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7903         * generic-sharing.c, class-internals.h: New function for checking
7904         whether a method needs a static RGCTX invoke wrapper.  A few
7905         funtions moved from mini/generic-sharing.c.
7907         * icall.c: New function used.
7909 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7911         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7912         Static RGCTX invoke wrapping applies to value type methods, too.
7914         * class.c (mono_class_setup_vtable_general): In generic-shared
7915         value types, wrap methods with a static RGCTX invoke wrapper.
7917 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7919         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7920         osx build.
7922 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7924         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7925         register a callback which is called when the finalizer thread is woken
7926         up.
7927         (finalizer_thread): Call the callback if it exists.
7929         * attach.h attach.c: New files, implementing the attach mechanism.
7931         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7932         
7933         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7934         by the previous change.
7936 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7938         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7939         loader.c, marshal.c, metadata-internals.h, metadata.c,
7940         method-builder.c, object.c, reflection.c: introduced specific functions
7941         to allocate from the domain and image mempools and cleaned up most of
7942         the code to use them (still missing a few in reflection.c).
7943         Keep the loader bytes counter updated.
7945 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7947         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7948         loader-related counters.
7950 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7952         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7953         added more MS-compatible counters.
7955 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7957         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7958         class->blittable. Fixes #428217.
7960 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7962         * reflection.c (mono_image_get_field_on_inst_token): Call 
7963         field_encode_signature () since that handles custom modifiers too.
7964         Fixes #424663.
7966 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7968         * reflection.c (add_custom_modifiers): New helper function to merge custom
7969         modifiers stored in objects to a MonoType.
7970         (fieldref_encode_signature): Encode custom modifiers.
7971         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7972         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7974 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7976         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7977         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7978         64-bit IL only images because imports are not resolved for IL only images.
7979         Special thanks to Bill Holmes for finding this bug and testing the patch.
7980         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7982         Contributed under MIT/X11 license.
7984 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7986         * mono-config.c (dllmap_start): Add support for the bits keyword
7987         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7989 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7991         * reflection.c (inflate_mono_method): When the class the method is
7992         to be inflated for is itself not inflated, just return the method.
7994 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7996         * mono-perfcounters.c: use more user friendly process instance names.
7998 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
8000         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
8001           handle "[in] ref" and "[in][out] ref" cases.
8003         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
8004           to mono_mb_create_method.  This was causing problems calling native to
8005           managed passing Variants by value.
8007         Code is contributed under MIT/X11 license.
8009 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
8011         * class.c (can_access_internals): Call mono_assembly_load_friends ()
8012         before accessing the friend_assembly_names field.
8014         * assembly.c (mono_assembly_load_friends): Make this callable multiple
8015         times.
8016         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
8017         called lazily when it is needed.
8019         * metadata-internals.h (struct _MonoAssembly): Add 
8020         'friend_assembly_names_inited' flag.
8022 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
8024         * mono-perfcounters-def.h: fix the types of a few counters.
8025         * mono-perfcounters.c: implemented the instance names getter
8026         and a few bugfixes.
8028 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
8030         * culture-info-table.h : regenerated.
8032 2008-09-17  Robert Jordan  <robertj@gmx.net>
8034         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
8035         context bound objects. Fixes #415577.
8037         Code is contributed under MIT/X11 license.
8039 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
8041         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
8042         implementation (bug #423582).
8044 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
8046         * object.c (mono_object_get_virtual_method): Handle the case method->slot
8047         is not set. Fixes #426309.
8049 2008-09-16  Jb Evain  <jbevain@novell.com>
8051         * class.c (mono_class_from_name): fix the exported type look up
8052         when the type is defined in a referenced assembly.
8054 2008-09-16  Jb Evain  <jbevain@novell.com>
8056         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
8057         increment the next index counter on each iteration to make that work
8058         for more than one type forwarder. Unmanaged part to fix #422929.
8060 2008-09-15  Mark Probst  <mark.probst@gmail.com>
8062         * object-internals.h: enum ComInterfaceType in
8063         MonoInterfaceTypeAttribute is guint32, not guint16.
8065 2008-09-12  Mark Probst  <mark.probst@gmail.com>
8067         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
8068         writing code.
8070 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8072         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
8073         not gboolean.
8075 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8077         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
8078         Endianness fixes for MonoSymbolFileOffsetTable.
8080 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8082         * process.c (complete_path) : Removing quotes from the 
8083           input path.  The glib file routines do not handle file paths
8084           that have quotes around them.
8086         Code is contributed under MIT/X11 license.
8088 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8090         * socket-io.h : Adding a comment to provide locations where 
8091           changes to MonoSocketAsyncResult need to be synced.
8093         Code is contributed under MIT/X11 license.
8095 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
8097         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
8098         parameters as well. Fixes #425001.
8100 2008-09-08  Miguel de Icaza  <miguel@novell.com>
8102         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
8103         windows build.
8105 2008-09-07  Miguel de Icaza  <miguel@novell.com>
8107         * console-io.c: Add support for tracking the window size if it
8108         changes.
8110         The setup is very simple: the TtySetup function will now return a
8111         pointer to a location in memory that tracks the current console
8112         size.  The managed code checks its current value every time its
8113         queried against the last value set, and updates accordingly.
8115         With this setup we can work with multiple consoles, and we do not
8116         require to poke into managed code from a signal handler.
8118         Additionally, the environment for COLUMNS and LINES is now handled
8119         in unmanaged code.
8121         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
8123 2008-09-07  Mark Probst  <mark.probst@gmail.com>
8125         * marshal.c (mono_type_native_stack_size): Treat
8126         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
8128 2008-09-04  Jb Evain  <jbevain@novell.com>
8130         * class.c (mono_class_is_assignable_from): fix assignability of nullables
8131         to nullables.
8133 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
8135         * verify.c (verify_type_compatibility_full): Revert change
8136         to allow converting a native int to unmanaged pointer be verifiable
8137         under non-strict mode.
8138         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
8140         * verify.c: Added some TODOs.
8142 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
8144         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
8145           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
8146           Changed to use GlobalAlloc for the memory returned on Windows platforms.
8148         Code is contributed under MIT/X11 license.
8150 2008-09-02  Jb Evain  <jbevain@novell.com>
8152         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
8154 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
8156         reflection.c (typebuilder_setup_fields): Handle classes with
8157         explicit size.
8159 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
8161         class.c (mono_class_setup_events): Add memory barrier due to
8162         double checked locking.
8163         
8164         class.c (mono_class_setup_properties): Same.
8166 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
8168         * class.c (mono_class_is_assignable_from): Fix the build.
8169         
8170         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
8171         before accessing klass->interface_bitmap. Fixes #421744.
8173 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
8175         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
8176         the runtime into no-exec mode, useful when running the AOT compiler.
8178         * appdomain.c gc.c object.c: Avoid executing managed code when running
8179         in no-exec mode.
8180         
8181         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
8183         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
8184         special case when the mono_assembly_loaded () returns NULL because the 
8185         search hook is not installed.
8187 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
8189         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
8190         crashes in bstr marshalling on linux.
8192 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8194         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
8195         with more than one parameter.
8197 2008-08-24  Miguel de Icaza  <miguel@novell.com>
8199         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
8200         start/stop flow control as well when turning off ICANON (allows
8201         C-s and C-q to be read by Console.ReadKey).
8203 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8205         * class.c (mono_class_init): Move the initialization of nested classes
8206         into mono_class_get_nested_types (). Fixes #418433.
8208         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
8209         flag.
8211         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
8212         iterating tough the nested classes of a class.
8214 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
8216         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
8217         on arm.
8219 2008-08-22  Miguel de Icaza  <miguel@novell.com>
8221         * console-io.c (sigcont_handler): Support signal chaining for
8222         SIGCONT.
8224         (console_set_signal_handlers): Use best practices with sigaction,
8225         clear the structure before using it. 
8227 2008-08-22  Robert Jordan  <robertj@gmx.net>
8229         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
8230         Fix the Windows build.
8232 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
8234         * class.c (mono_class_generic_sharing_enabled): Make the default
8235         sharing mode 'corlib'.
8237 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
8239         * console-io.c (console_set_signal_handlers): Fix a warning.
8241         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
8242         method normally, the JIT will take care of avoiding recursion.
8244 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8246         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
8248         Code is contributed under MIT/X11 license.
8250 2008-08-20  Miguel de Icaza  <miguel@novell.com>
8252         * console-io.c (sigcont_handler): We need to restore the entire
8253         termios state, not only the original settings, as things like echo
8254         can be controlled after this (Booish exposes this issue with its
8255         own ReadLine implementation).
8257         Additionally, we need to set the terminal back into keypad_xmit
8258         mode.
8259         
8260         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
8261         string as a paramter as well.   Otherwise we get different
8262         keyboard sequences.
8264 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
8266         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
8267         delegates with byref out parameter passing. Fixes #351520.
8269         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
8270         a generic context.
8271         (mono_type_get_desc): Add the type arguments for GENERICINST.
8272         (mono_method_full_name): Stringify the class name using mono_type_full_name
8273         so it picks up generic arguments.
8275 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
8277         * console-io.c: Removed debug output.
8279 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
8281         reflection.c (mono_reflection_create_runtime_class): Alloc
8282         the nested classes linked list using the dynamic image mempool.
8283         Fixes leak in corlib compilation.
8285 2008-08-19  Miguel de Icaza  <miguel@novell.com>
8287         * console-io.c: Fix incredibly annoying behavior on the console
8288         after resuming execution after control-z.   This affected every
8289         console application.
8291 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
8293         * mempool-internals.h: Header for mono private mempool functions. The first
8294         two function are for allocating glib linked lists using pools.
8296         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
8298         * Makefile.am: Added mempool-internals.h.
8300 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
8302         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
8303         (mono_domain_free): Ditto.
8305         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
8306         be used by the JIT to store its domain-specific information, instead of putting
8307         it directly into MonoDomain.
8309         * domain.c (mono_install_create_domain_hook): New helper function to install
8310         a hook which initializes domain->runtime_info.
8312         * domain.c (mono_install_free_domain_hook): Ditto.
8313         
8314 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
8316         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
8317         asserting if the ares parameter is null.
8319         * mono-perfcounters.c: Fix warnings.
8321         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
8322         is not needed, don't check for interruptions either.
8323         (mono_marshal_get_delegate_end_invoke): Ditto.
8325 2008-08-15  Marek Habersack  <mhabersack@novell.com>
8327         * mono-perfcounters.c (predef_readonly_counter): added support for
8328         reading the ASP.NET Requests Queued counter from another process.
8330 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8332         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
8333         MonoImage to simplify the AOT code.
8335 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
8337         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
8338         marshalling. Fixes #416078.
8340 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8341         
8342         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
8343         it is set, looking up the icall address is deferred to the JIT, since 
8344         in embedded scenarios, the icall might not be registered in the runtime
8345         doing the AOT compilation. Backported from the 2.0 branch.
8347 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8349         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
8350         Fixes #415621.
8352 2008-08-05  Marek Habersack  <mhabersack@novell.com>
8354         * Makefile.am: added support for cross-compilation.
8356 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
8358         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
8360 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8362         * mono-perfcounters.c: jitted methods and jitted bytes counters.
8364 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
8366         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
8367         mono-perfcounters.c: performance counters implementation.
8369 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
8371         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
8372         to gpointer, letting the AOT code decide what to store in it.
8374 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
8376         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
8377           mono_class_setup_methods if the methods are not initialized.
8379         Code is contributed under MIT/X11 license.
8381 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8383         * verify.c: Remove some debug code I commited by accident.
8385         * verify.c (mono_method_is_valid_in_context): Change the return value
8386         to make possible to distinguish between invalid and unverifiable.
8388         * verify.c (verifier_load_method): Don't return NULL for unverifiable
8389         methods.
8391 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8393         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
8394         constraints. Fixes regression in gtest-253.
8396 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8398         * verify.c (mono_verifier_verify_class): Don't allow generic types
8399         with explicit layout.
8401         * verify.c (mono_method_verify): Check locals and argument types.
8403 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
8405         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
8406         wait if the thread is in StopRequested state.
8408         * class.c (mono_class_from_name): Refactor the module searching code into
8409         a separate function so it can be reused in the AOT case too.
8411 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
8413         * verify.c (mono_type_is_valid_in_context): Improve the error message.
8414         Check both the type and it's generic type definition for loader errors.
8415         
8416         * verify.c (mono_method_is_valid_in_context): Don't generate another
8417         error when a type errors occur, this leads to the wrong exception been
8418         thrown.
8420 2008-07-28  Dick Porter  <dick@ximian.com>
8422         * icall-def.h
8423         * process.c
8424         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
8425         New internal calls to duplicate and close a process handle.
8427 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
8429         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
8431 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
8433         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
8435 2008-07-27  Robert Jordan  <robertj@gmx.net>
8437         * class.c (mono_class_init): Don't compute class.has_finalize for
8438         valuetypes. Fixes #412477.
8440 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
8442         * verify.c: Implement constraint equivalence checking.
8443         This is required when a generic parameter is used as
8444         argument to a constrained one.
8446         Fixes #410637.
8448 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
8450         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8452         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
8454         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
8455         synch with managed object layout.
8457 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8459         * verify.c (do_branch_op): Handle valuetypes and generic
8460         arguments properly.
8462         * verify.c (do_cmp_op): Same.
8464         Fixes #410383.
8466 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8468         * generic-sharing.c: Fix memory leaks.
8470         * class.c, class-internals.h: Make
8471         mono_class_inflate_generic_type_with_mempool() non-static.
8473 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8475         * pedump.c (dump_verify_info): Dump full class name.
8477 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8479         * generic-sharing.c: Removed some old code that didn't do anything.
8481 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
8482         * profiler.c: Added runtime_initialized_event,
8483         mono_profiler_install_runtime_initialized and
8484         mono_profiler_runtime_initialized. This new hook tells the profiler
8485         when the runtime is sufficiently initialized to be able to call
8486         mono_thread_attach on the root appdomain.
8487         * profiler.h, profiler-private.h: Likewise.
8489 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8491         * verify.c (do_cast): Do boxing for generic arguments as well.
8493         * class.c (is_nesting_type): Drop generic instantiations before
8494         checking for nesting.
8496         * class.c (can_access_instantiation): Allow access to generic
8497         arguments.
8499 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8501         * verify.c (verify_class_for_overlapping_reference_fields):
8502         On some cases, the field size might be zero, guard against that.
8503         Fix the explicit layout check to work as expected.
8505 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
8507         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
8508         mono_thread_resume () during shutdown, since the thread we want to abort
8509         might be suspended.
8511 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
8513         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
8514         warning.
8516         * debug-mono-symfile.c: Fix a warning.
8518         * mono-perfcounters.c (get_cpu_times): Fix a warning.
8520         * object.c (mono_class_vtable): Check if exception_type is set, and return
8521         NULL as defined by the function comments.
8523 2008-07-22  Mark Probst  <mark.probst@gmail.com>
8525         * mempool.c: Use malloc for every single mempool allocation if the
8526         configure option is set.  This makes it easier to track mempool
8527         allocations with tools like Valgrind.
8529 2008-07-22  Jb Evain  <jbevain@novell.com>
8531         * reflection.c (create_dynamic_mono_image): emit the same
8532         metadata version that SL2 does when creating a SL2 image.
8534 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
8536         * icall-def.h:
8537         * icall.c: New icall System.Enum:get_hashcode. This function
8538         avoids the overhead of boxing the enum to the underlying type.
8540 2008-07-21  Mark Probst  <mark.probst@gmail.com>
8542         * reflection.c (mono_method_get_object): Don't let static RGCTX
8543         invoke wrappers get into MonoReflectionMethods.
8545 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
8547         * object-internals.h:
8548         * object.c: New mono_runtime_class_init_full function
8549         that makes throwing the exception optinal.
8551         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
8552         for the case where the exception object is supplied.
8554 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
8556         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
8557         old ld versions.
8559         Contributed under MIT/X11 license.
8561 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8563         * string-icalls.c (ves_icall_System_String_InternalSplit):
8564         Optimize array allocation by caching the MonoClass of the
8565         array type.
8567         * icall.c (ves_icall_Type_GetMethodsByName): Same.
8569         * reflection.c (mono_param_get_objects): Same.
8571 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8573         * icall-def.h:
8574         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8575         It inflates the given type using the class context.
8577 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8579         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8580         the vtable if it already exists.
8582         * object-internals.h: Add mono_class_try_get_vtable as part of the
8583         internal API.
8585         * reflection.c (mono_type_get_object): Use the MonoObject from the
8586         vtable when possible. Reduces locking contention on reflection heavy
8587         code.
8589 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8591         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8592         g_bit_nth_msf () since that macro is not implemented in eglib.
8594 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8596         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8597         on platforms which do not support it.
8599 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8601         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8603 2008-07-11  Martin Baulig  <martin@ximian.com>
8605         * mono-debug-debugger.h
8606         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8608         * mono-debug-debugger.c
8609         (_mono_debugger_interruption_request): New global volatile variable.
8610         (mono_debugger_check_interruption): New public function.
8612         * threads.c
8613         (mono_thread_current_check_pending_interrupt): Call
8614         mono_debugger_check_interruption().
8615         (mono_thread_interruption_checkpoint_request): Likewise.
8617 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8619         * verify.c: Add more type checks for loaded types. Verify the result
8620         handle from ldtoken.
8622 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8624         * loader.c (field_from_memberref): Don't crash if the field
8625         wasn't found.
8627 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8629         * verify.c: Verify if type and method instantiations
8630         don't have invalid VAR or MVAR arguments.
8632 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8634         * verify.c: Fix double free of function pointer list.
8636 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8638         * object.c (mono_string_to_utf8): Comment the new code as it
8639         breaks under eglib.
8641 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8643         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8645 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8647         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8648           is not throw too many times.
8650         Code is contributed under MIT/X11 license.
8652 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8654         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8655         debugging is turned off.
8657 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8659         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8661 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8663         * class-internals.h, class.c: Added new generic sharing option:
8664         Share only stuff in System.Collections.Generic, which is now the
8665         default.
8667 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8669         * generic-sharing.c, class-internals.h: New function for getting a
8670         generic method in a generic class given the corresponding method
8671         for a different instantiation of the class.  Partly refactored
8672         from mini-trampolines.c.
8674         * class.c: Make sure generic methods have a class_inst if they are
8675         part of a generic class.
8677         * metadata.c (mono_type_stack_size_internal): Handle type
8678         variables.
8680 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8682         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8683         Signifies whether information on the this/vtable/mrgctx variable
8684         is available.
8686 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8688         * object.c, object-internals.h, icall.c: New function
8689         mono_delegate_ctor_with_method(), which does the same as
8690         mono_delegate_ctor(), but takes an explicit method argument
8691         instead of taking the method from the jit info.
8693         * marshal.c: When creating a delegate with an inflated method take
8694         the "this" argument as the target class for the castclass.
8696 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8698         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8699         mono_jit_info_table_find() to perform very badly in some cases.
8701 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8703         * icall.c (type_from_typename): Handle 'string'.
8705         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8706         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8708 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8710         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8712         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8713         number of available managed allocator types.
8715         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8716         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8718 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8720         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8721         which is a low level lock protecting just the 'jit_code_hash' hash table.
8723         * domain.c: Initialize+cleanup jit_code_hash_lock.
8724         
8725 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8727         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8728         after initialization.
8730         * coree.h: Make MonoFixupExe internal.
8732         Contributed under MIT/X11 license.
8734 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8736         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8737         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8738         as well.
8739         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8740         image being loaded is a CLI image and _CorValidateImage gets called.
8742         * coree.h: Add MonoLoadImage.
8744         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8745         instead of LoadLibrary.
8747         Contributed under MIT/X11 license.
8749 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8751         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8752         for any primitive type.
8754 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8756         * object.c (mono_array_new_specific): Optimize this and the other allocation
8757         functions a bit.
8758         
8759         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8760         domains too if mono_dont_free_domains is set.
8762         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8763         whenever to free appdomain data after it has been unloaded.
8765         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8766         
8767 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8769         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8770         (mono_method_get_equivalent_method): Fix a warning.
8772         * object.c (mono_message_init): Avoid looking up array types for each call.
8774 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8776         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8777         call.
8779         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8780         even more.
8782         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8783         each iteration.
8785         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8786         fields of an enum.
8788 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8790         * object.c (mono_value_box): Fix boxing of nullables.
8792 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8794         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8795         mono_module_handle that is defined by the linker; no initialization required.
8796         * coree.h: Remove mono_module_handle, add __ImageBase, update
8797         mono_image_open_from_module_handle.
8798         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8799         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8800         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8801         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8802         to 4 GB away from image base address. IA64 version is not tested but was very
8803         easy to implement and should work if we ever need it.
8804         * domain.c (mono_init_internal): Avoid system error message boxes.
8805         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8806         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8807         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8808         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8809         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8811         Contributed under MIT/X11 license.
8813 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8815         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8816         as part of the private mono API.
8817         
8818         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8819         Do proper argument checking for methods that belong to generic classes.
8820         Do proper type resolution for GMFH/2.
8821         Fixes #377324.
8822         
8823 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8825         * verify.c (do_switch): Fix a memory corruption bug with
8826         the jump index is out of bound.
8828 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8830         * verify.c: Disable debug code.
8832 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8834         * reflection.c (mono_image_get_methodbuilder_token): Use
8835         mono_image_get_methodspec_token_for_generic_method_definition
8836         instead of mono_image_get_memberref_token. We cache more memberef
8837         entries now.
8839 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8841         * verify.c: Inflate exception clause types.
8842         Fixes #402606.
8843         
8844 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8846         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8847         name.
8849         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8851         * reflection.c (mono_image_create_method_token): Same.
8853 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8855         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8856         It does the same as mono_image_get_methodref_token but works on
8857         MethodBuilder.
8859         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8860         and always generate a methodspec. This follows the old behavior and fixes
8861         the regressions in System.Core. 
8863 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8865         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8866         don't event mono_class_get () succeeds. Fixes #402182.
8868 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8870         * metadata-internals.h: Added MonoDynamicImage::methodspec
8871         hashtable to store methodspec tokens created for MethodBuilders.
8873         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8874         MethodBuilders as open instantiations if a methodspec was requested.
8876         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8878         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8880         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8882         Fixes bug #349190.
8884 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8886         * loader.c (method_from_methodspec): Avoid crashing if the
8887         method lookup fails.
8889 2008-06-20  Dick Porter  <dick@ximian.com>
8891         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8892         classes being in a different assembly.  Fixes bug 399184.
8894 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8896         * loader.c (mono_loader_init): Make this callable multiple times.
8897         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8898         the runtime is initialized. Fixes #401755.
8900 2008-06-19  Dick Porter  <dick@ximian.com>
8902         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8903         Fixes bug 349688.
8905 2008-06-19  Dick Porter  <dick@ximian.com>
8907         * socket-io.c:
8908         * icall-def.h: Implement Socket generic Send() and Receive()
8909         methods.  Fixes bug 395168.
8911 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8913         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8915         Contributed under MIT/X11 license.
8917 2008-06-18  Martin Baulig  <martin@ximian.com>
8919         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8920         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8921         set to 80.0.  The debugger <-> runtime interface is now frozen as
8922         well.   
8924         * mono-debug.c
8925         (mono_debug_debugger_version): Bump to 4.
8927 2008-06-18  Martin Baulig  <martin@ximian.com>
8929         * debug-mono-symfile.c
8930         (load_symfile): Don't check the minor version.
8932         * debug-mono-symfile.h: Bump the version number to 50.0.
8934 2008-06-18  Martin Baulig  <martin@ximian.com>
8936         * debug-mono-symfile.c
8937         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8938         minimum required version.
8940 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8942         * reflection.c (mono_custom_attrs_from_property): Fix support for
8943         retriveving cattrs of dynamic inflated generic types.
8945         * reflection.c (mono_custom_attrs_from_event): Same.
8947         * reflection.c (mono_custom_attrs_from_field): Same;
8949         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8951         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8952         Moved to metadata.c.
8954         * metadata.c: New functions to retrive the equivalent field, event
8955         of property from the generic type definition.
8957         * metadata-internals.h: Added new functions from metadata.c.
8959 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8961         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8962         to cached in a mempool is used.
8964         * metadata.c (free_generic_class): In some situations field generic_info type
8965         is not properly dup'ed and leads to double free'ing.
8967         Fixes #400643.
8969 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8971         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8972         this arguments (will be needed later for generic methods).
8973         Collect stats.
8975 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8977         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8978         Create a static RGCTX invoke wrapper for methods which require it.
8980 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8982         * object.c, class-internals.h: New function for checking whether
8983         an individual field is special static.
8985 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8987         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8988         linear search since the table is sorted.
8990         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8991         Fixes #324180.
8993 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8995         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8996         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8998         * gc.c (mono_domain_finalize): Allow an infinite timeout.
9000         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
9001         
9002         * threads.c (mono_thread_request_interruption): Get rid of locking, use
9003         InterlockedCompareExchange to query and modify 
9004         thread->interruption_requested.
9006         * object-internals.h (struct _MonoThread): Change interruption_requested
9007         to a gint32 so it can be modified by atomic operations. Add 
9008         'critical_region_level' from the managed side, change small_id to a guint32,
9009         add new set of 'unused' fields.
9011         * appdomain.c: Bump corlib version.
9013 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
9015         * class.c (mono_class_from_name): Search modules as well. Fixes
9016         #322332.
9018 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9020         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
9021         templates.  Templates are generalized with an additional type_argc
9022         argument.  RGCTX templates have type_argc==0, MRGCTX templates
9023         have type_argc>0.
9025         * domain-internals.h, domain.c: New hash table for looking up
9026         MRGCTXs.
9028         * metadata.c, metadata-internals.h: Rename hash and equal
9029         functions for MonoGenericInst's and make them public.
9031         * class-internals.h: New data structures for the MRGCTX.  Macros
9032         for distinguishing slots in the RGCTX and the MRGCTX.
9034 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9036         * object.c (mono_method_get_imt_slot): Put the same methods of
9037         different instantiations of the same generic interface in the same
9038         IMT slots, to make generic sharing simpler.
9040 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9042         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
9044         * metadata.c (mono_metadata_field_info_with_mempool): Added.
9045         This function works just like mono_metadata_field_info, but
9046         accept a mempool as argument to be used allocating memory.
9048         * marshal.c (mono_marshal_load_type_info): Use new function
9049         to load marshal data into image mempool.
9051 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9053         * class.c (mono_class_inflate_generic_type_with_mempool):
9054         This function allows to inflate a generic type using
9055         a mempool.
9057         * class.c (inflate_generic_type): Take a mempool as argument
9058         and use it to do type dup'ing.
9060         * class.c (mono_class_setup_fields): Field type for generic
9061         generic classes are allocated from the image mempool.
9063         * metadata.c (free_generic_class): Inflated field type is
9064         now allocated in the image mempool.
9066 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9068         * threads.c (thread_cleanup): Free MonoThread::name.
9070 2008-06-12  Marek Habersack  <mhabersack@novell.com>
9072         * appdomain.c (ensure_directory_exists): avoid unnecessary
9073         mkdir(2) calls when the shadow directory already exists.
9074         (mono_make_shadow_copy): copy also satellite assemblies from the
9075         private bin directories.
9077 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9079         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
9080         
9081         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
9082         a page boundary. Fixes #396219.
9084 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9086         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
9087         due to double-checked locking.
9089 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9091         * assembly.c (build_assembly_name): Release memory on failure.
9093         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
9095 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9097         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
9098         memory on failure.
9100 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9102         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
9103         memory on failure.
9105 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9107         * loader.c (field_from_memberref): Check if field signature type is equal
9108         to the non-inflated type of the field. Fixes #398980.
9110 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9112         * assembly.c (mono_assembly_load_from_full): Call 
9113         mono_assembly_load_friends () outside the assemblies lock, since it can
9114         acquire the loader lock. Fixes #323696.
9116         * reflection.c (resolve_object): Inflate the inst with the context for
9117         FieldOnTypeBuilderInst. Fixes #399010.
9119 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9121         * reflection.c (mono_image_get_field_on_inst_token): Don't
9122         inflate the field to encode it's signature. If it's a
9123         VAR or MVAR it should stay that way in the signature.
9124         Fixes #399047.
9126 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9128         * reflection.c (resolve_object): Release memory of inflated types.
9130 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9132         * loader.c (mono_method_get_signature_full): Remove assert about
9133         loading a methodspec to a generic method. We have such methods, such as
9134         System.Threading.Interlocked::CompareExchange<T>.
9135         This assert was removed since it crashes the verifier when it checks
9136         methods calling CompareExchange<T>.
9138 2008-06-10  Marek Safar  <marek.safar@gmail.com>
9140         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
9141         of Type array and not MonoType.
9143 2008-06-10  Marek Habersack  <mhabersack@novell.com>
9145         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
9146         <lupus@ximian.com>
9148 2008-06-10  Martin Baulig  <martin@ximian.com>
9150         * debug-mono-symfile.h
9151         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
9152         changes to the file format, but we were generating incorrect
9153         source file indices in the line number table due to a bug, which
9154         made backtraces report an incorrect source file.
9156 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9158         * mono-debug.c: Moved mono_debug_free_method_jit_info from
9159         mini/debug-mini.c to here.
9161         * mono-debug.c (il_offset_from_address): Free memory from find_method.
9163         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
9164         use it to release structs returned by mono_debug_find_method.
9166 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
9168         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
9169         since it needs to set method->slot for all interface methods.
9171 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9173         * class-internals.h: Forgot to add.
9175 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9177         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
9179         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
9180         Lookup the custom attributes from property_hash.
9182         * reflection.c (mono_save_custom_attrs): Save the custom attributes
9183         in property_hash. Allocate all data using the image mempool.
9185         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
9186         for dynamic_custom_attrs to checks if the image is dynamic.
9188 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9190         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
9191         assemblies array.
9192         
9193         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
9194         runtime functions while holding the domain assemblies lock.
9196 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9198         * verify.c: Reapplied the last bit of the reverted changes.
9200 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9202         * verify.c: Reapplied more of the reverted changes.
9204 2008-06-09  Martin Baulig  <martin@ximian.com>
9206         * debug-mono-symfile.c (load_symfile): Check the major version
9207         first; if it's wrong, don't print the minor version in the error message.
9209 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9211         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
9212         lock instead of the domain lock to avoid deadlocks, since the thread might
9213         already hold the loader lock.
9215         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
9216         (mono_thread_attach): Ditto.
9218         * monitor.c: Use a TLS variable for holding the current thread id instead
9219         of calling pthread_self ().
9220         (mono_monitor_init_tls): New internal function to initialize the TLS
9221         variable.
9222         (mono_monitor_try_enter_internal): Put the owner == id check after the
9223         owner == 0 check.
9225         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
9226         missed optimizations when using gcc-4.3.
9228 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
9230         * reflection.c (mono_dynamic_image_free): Free the memory
9231         used by MonoGenericParam in MonoDynamicImage::gen_param.
9233         * reflection.c (mono_reflection_setup_generic_class): Allocate
9234         container from mempool.
9236         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
9237         container from mempool.
9239 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9241         * threads.c (mono_set_pending_exception): New internal function to set the
9242         pending exception of the current thread.
9243         (mono_thread_get_and_clear_pending_exception): Check for 
9244         thread->pending_exception as well.
9246         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
9248         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
9249         it can trigger a collection.
9251 2008-06-06  Martin Baulig  <martin@ximian.com>
9253         Merged the `debugger-kahalo' branch.
9255         * mono-debug.h
9256         (MONO_DEBUGGER_VERSION): Bumped to 72.
9258         * debug-mono-symfile.h
9259         (MonoSymbolFileMethodIndexEntry): Removed.
9260         (MonoSymbolFileMethodEntry): New public typedef.
9261         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
9262         (MonoSymbolFileSourceEntry): Remove everything except `index' and
9263         `data_offset'.
9264         (MonoSymbolFileMethodEntry): Removed.
9265         (MonoSymbolFileLexicalBlockEntry): Removed.
9266         (MonoSymbolFileLineNumberEntry): Removed.
9267         (MonoDebugLexicalBlockEntry): Removed.
9268         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
9269         removed `num_il_offsets' and `il_offsets'.
9270         (MonoSymbolFile): Replace `version' with `major_version' and
9271         `minor_version'.
9272         (MONO_SYMBOL_FILE_VERSION): Replace with
9273         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
9274         `MONO_SYMBOL_FILE_MINOR_VERSION'.
9276         * debug-mono-symfile.c
9277         (mono_debug_symfile_lookup_location): Add support for the new line
9278         number table format.
9280 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9282         * metadata.c (free_generic_class): Release the inflated
9283         MonoClass of dynamic generic classes if it's not a generic
9284         type definition.
9286 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9288         * verify.c: Reapplied more of the reverted changes.
9290 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9292         * reflection.c (lookup_custom_attr): Clean the cached flag or
9293         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
9294         for SRE types.
9296 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9298         * verify.c: Reapplied a small part of the reverted changes.
9300 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9302         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9304         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
9305         previously in managed code.
9306         (mono_monitor_exit): Ditto.
9307         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
9309         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
9310         the managed definition.
9312 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9314         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
9316 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9318         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
9319         
9320         * monitor.c: Add some micro optimizations.
9322         * icall.c (type_from_typename): Handle 'bool'.
9324 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9326         * verify.c: Implement constructor verification per P III 1.8.1.4.
9327         Fixes #396716.
9329 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9331         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
9332         holding the assemblies lock here too.
9334 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9336         * verify.c: Kill stack_top function.
9338 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9340         * verify.c: Kill stack_get function.
9342 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9344         * verify.c (mono_method_verify): Last change broke the build. Fixed.
9346 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9348         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
9349         more reliable.
9351         * verify.c (mono_method_verify): Inflate params and locals to avoid
9352         mismatch when checking for compatibility.
9354 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
9356         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
9357         Length prefix should be size in bytes. Fix bug #339530.
9358         
9359         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
9360         Length prefix should be size in bytes. Fix bug #339530.
9362         Code is contributed under MIT/X11 license.
9364 2008-06-05  Bill Holmes <billholmes54@gmail.com>
9366         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
9368         Contributed under MIT/X11 license.
9370 2008-06-05  Martin Baulig  <martin@ximian.com>
9372         * mono-debug-debugger.c
9373         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
9375 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
9377         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
9378         while holding the assemblies lock to prevent deadlocks. Handle the case
9379         where the search hook returns NULL but the assembly was still loaded.
9380         Fixes #323696.
9382         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
9383         modify domain state.
9385 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
9387         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
9388         * Makefile.am (pedump_LDADD): Post-process object files and
9389         add dtrace-generated object file, if necessary.
9391         Code is contributed under MIT/X11 license.
9393 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9395         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
9397 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9399         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
9401 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9403         * threads.c: Try to free everything from the delayed free table
9404         when shutting down threads, and set the variable to NULL after the
9405         table is freed so that calling
9406         mono_thread_hazardous_try_free_all() when shutting down the root
9407         domain doesn't crash.
9409 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9411         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
9412         the caller if resulting type was inflated.
9414         * class.c (mono_class_create_from_typespec): Free the MonoType if it
9415         was inflated.
9417         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
9420 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
9422         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
9423         class library tests.
9425         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
9426         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
9427         #396989.
9429 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9431         * domain.c, domain-internals.h: The JIT infos are now freed by the
9432         JIT info table code.  They are freed immediately if there only a
9433         single JIT info table in circulation.  If there is more, the free
9434         is delayed via a queue.
9436         * threads.c, threads-types.h: New hazard pointer function for
9437         freeing all freeable delayed items in one sitting.
9439 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9441         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
9443         * reflection.c (typebuilder_setup_properties): Same.
9445         * reflection.c (typebuilder_setup_events): Same.
9447 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9449         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
9450         and use it for allocating memory.
9452         * reflection.c (mono_marshal_spec_from_builder): Same.
9454         * reflection.c: Change code to use new signatures.
9456         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
9458 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9460         * decimal.c (rescale128): Put back one line which was accidently commented
9461         out.
9462         
9463         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
9464         to cause crashes.
9466 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9468         * reflection.c (mono_reflection_generic_class_initialize): Name must
9469         be always malloc'ed so we can free it later on. Do this for field, property
9470         and event.
9472         * metadata.c (free_generic_class): Free field, property and event names.
9474 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9476         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
9477         instead of g_memdup.
9479         * reflection.c (typebuilder_setup_fields): Same.
9481 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9483         * decimal.c (rescale128): Optimize this function a bit more.
9485 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9487         * metadata.c (free_generic_class): Release some memory from
9488         SRE generic classes.
9490 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9492         * reflection.c (mono_image_get_generic_field_token): No reference
9493         to name is kept, free it.
9495         * reflection.c (mono_reflection_generic_class_initialize): Free
9496         more memory of the inflated field.
9498 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9500         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
9501         code.
9503 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9505         * reflection.c (mono_dynamic_image_free): Release memory used by
9506         MonoDynamicImage::array_methods elements.
9508         * reflection.c (assembly_add_win32_resources): Release memory after
9509         encoding.
9511 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9513         * decimal.c (log2_32): Use an optimized version for this function too.
9514         
9515         * decimal.c (log2_64): Fix this on 32 bit machines.
9517 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9519         * class.c (mono_dup_array_type): Implement allocation using a mempool.
9521         * class.c (mono_metadata_signature_deep_dup): Same.
9523         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
9524         a mempool.
9526         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
9528         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
9530         * metadata-internals.h: Added mono_metadata_signature_dup_full.
9532         * class-internals.h: Update signatures to take a MonoMemPool.
9534 2008-06-02  Dick Porter  <dick@ximian.com>
9536         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
9537         * icall-def.h: Add
9538         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
9539         FormatMessage API to get the error text.  Fixes bug 321827.
9541 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9543         * decimal.c: Add some micro optimizations to make decimal operations faster.
9545 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
9547         * reflection.c (method_encode_clauses): Take a mempool
9548         as parameter and use it to allocate the clause array.
9550         * reflection.c (mono_image_get_field_on_inst_token): Free
9551         the inflated type after encoding it.
9553         * reflection.c (mono_dynamic_image_free): Free each element
9554         of MonoDynamicImage::gen_params.
9556         * reflection.c (reflection_methodbuilder_to_mono_method):
9557         Allocate the generic param array from the mempool.
9558         Allocate signature params from the mempool.
9560         * reflection.c (mono_reflection_generic_class_initialize):
9561         Free inflated fields after been used.
9563 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9565         * icall.c: Reapply the memory leak fixes as they no
9566         longer make mono crash.
9568 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9570         * reflection.c (mono_type_get_object): Don't store the suplied
9571         MonoType with type_hash. A caller which pass a type that
9572         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9573         might end with a pointer to freed memory.
9574         The solution is to use byval_arg or this_arg from the associated
9575         MonoClass of the supplied type.
9577 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9579         * icall.c: Revert the rest of the last change as it breaks the build too.
9581 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9583         * icall.c: Revert a leak fix as it's breaking the build.
9585 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9587         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9589 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9591         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9593 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9595         * icall.c: Fix some memory leaks.
9597 2008-05-29  Dick Porter  <dick@ximian.com>
9599         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9600         async socket operations from the pending list when a socket
9601         closes.  Leaving it until the threadpool services the event
9602         exposes a race condition when a socket descriptor is reused.
9603         Fixes bug 377589.
9605 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9607         * object.c: Fix negative index check for array alocation.
9609 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9611         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9612         This check is performed by the verifier for IL created delegates
9613         and by Delegate::CreateDelegate for programatically created ones.
9614         Fixes #372406.
9616 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9618         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9619         Fix code to use mono_array_size_t instead of int.
9621         Based on patch by Luis F. Ortiz.
9622         Contributed under X11 license.
9623         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9625 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9627         * icall.c: Added ves_icall_System_Array_GetLongLength and
9628         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9629         arrays.
9631         * icall.h: Export both new functions.
9633         Based on patch by Luis F. Ortiz.
9634         Contributed under X11 license.
9635         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9637 2008-05-28  Martin Baulig  <martin@ximian.com>
9639         The debugger now requires exactly r103463.
9641         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9642         This version is not supported by the debugger, wait for 72.
9644 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9646         * object.h: Changed array related functions to use
9647         mono_array_size_t instead of guint32. Forgot to commit this file.
9649         Patch by Luis F. Ortiz.
9650         Contributed under X11 license.
9651         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9654 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9656         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9657         don't define it. Use the number literal instead.
9659 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9661         * icall.c: Changed array related functions to use
9662         mono_array_size_t instead of guint32.
9664         * icall.c (ves_icall_System_Array_GetLength): Check for length
9665         overflow under MONO_BIG_ARRAYS.
9667         Based on patch by Luis F. Ortiz.
9668         Contributed under X11 license.
9669         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9671 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9673         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9675         Based on patch by Luis F. Ortiz.
9676         Contributed under X11 license.
9677         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9679 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9681         * object.c, object.h: Changed array related functions to use
9682         mono_array_size_t instead of guint32.
9684         Patch by Luis F. Ortiz.
9685         Contributed under X11 license.
9686         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9688 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9690         * object.h: Introduced mono_array_size_t typedef. This must be used
9691         in all places an array length is expected. This is 64bits wide if
9692         MONO_BIG_ARRAYS is enabled.
9694         Patch by Luis F. Ortiz.
9695         Contributed under X11 license.
9696         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9698 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9700         * security-manager.c class.c: Set the class exception info by calling
9701         mono_class_set_failure ().
9703         * class.c (mono_class_get_exception_data): New accessor function.
9704         (mono_class_set_failure): Store exception_data in the property hash.
9706         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9707         the struct as a property.
9709         * loader.c (mono_get_method_full): Store the lookup result for method
9710         tokens in method_cache, the others in methodref_cache to decrease the memory
9711         usage of hash tables.
9713         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9714         (mono_image_init): method_cache is lazy inited now.
9716         * metadata-internals.h (struct _MonoImage): Change method_cache to
9717         a MonoValueHashTable, add a separate methodref_cache.
9719 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9721         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9722           Double.ToString as exposed by Bug #383531.
9724 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9726         * number-formatter.h: Make some tables static.
9728         * class.c (mono_method_set_generic_container): New accessor function.
9729         (mono_method_get_generic_container): Ditto.
9731         * class-internals.h (struct _MonoMethod): Remove rarely used 
9732         'generic_container' field, store it in the property hash instead. Add 
9733         'is_generic' boolean field instead.
9735         * image.c (mono_image_init): Initialize property_hash.
9736         (mono_image_close): Destroy property_hash.
9738         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9739         hold rarely used fields of runtime structures belonging to this image.
9741         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9742         to get/set method->generic_container.
9744         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9745         generic methods.
9747 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9749         * class.c (mono_class_inflate_generic_method_full): Don't increase
9750         mono_stats.inflated_method_count for methods found in the cache.
9752         * threads.c (mono_thread_request_interruption): Add a comment about 
9753         QueueUserAPC ().
9755 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9757         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9758         interface_offsets_packed table.
9759         
9760         * class.c (mono_class_init): Remove some dead code.
9762         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9763         mono_class_setup_vtable () when CAS is active to detect security problems.
9765 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9767         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9769         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9770         parameters as it's irrelevant for delegate checking.
9772 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9774         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9776         * class.c (mono_class_init): Control the creation of a generic vtable using
9777         a global which is true by default, but set to false by the runtime startup code.
9778         
9779         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9780         Disabled for now since it breaks the embedding API.
9781         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9782         (mono_class_setup_methods): Add a memory barrier.
9784         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9785         when mono_class_init () doesn't compute the generic vtable.
9786         
9787 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9788         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9789         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9790         to support call chains (backtrace) in the stat profiler.
9791         * profiler.c, profiler-private.h: Likewise.
9793 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9795         * generic-sharing.c: Init generic class when a method of it is
9796         requested via a runtime generic context.
9798 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9800         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9802         * reflection.c (mono_type_get_object): Add a FIXME.
9804         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9806         * class.c (mono_class_get_method_by_index): New helper function, returning an
9807         entry in the class->methods array.
9809 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9811         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9812         Avoid creating a generic vtable for generic instances as well.
9813         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9814         generic instances.
9816 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9818         * loader.c (mono_get_method_constrained): Inflate the signature
9819         with class context. Fix #325283.
9821 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9823         * object.c (mono_class_create_runtime_vtable): Add a comment.
9825         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9826         where needed.
9827         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9828         (mono_class_setup_vtable_general): Add an assert.
9829         (mono_class_init): Avoid creating a generic vtable for arrays.
9831         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9832         here, let mono_class_init () do that.
9834         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9835         interfaces in mscorlib.
9837         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9838         interfaces. Add some comments.
9839         (mono_class_init): Call mono_class_setup_methods () here since it is no
9840         longer called by mono_class_setup_vtable ().
9842         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9843         not set in class->vtable.
9844         (mono_class_create_runtime_vtable): Reenable the disabled code.
9846         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9847         now as it causes some test failures.
9849         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9850         if using the vtable trampoline. Also remove some strange code which put the
9851         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9852         stuff as it is no longer needed.
9854 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9856         * pedump.c: Give make --verify all option check code as well.
9857         Using --verify code won't check for metadata now.
9859 2008-05-19  Martin Baulig  <martin@ximian.com>
9861         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9863         * mono-debug.c
9864         (_mono_debug_using_mono_debugger): New global variable; it's set
9865         directly by the debugger, so mono_debug_using_mono_debugger() also
9866         works after attaching.
9868 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9870         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9871         as we do double checked locking on MonoClass::runtime_info and
9872         MonoClassRuntimeInfo::domain_vtables.
9874 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9876         * debug-helpers.c (print_field_value): Fix a warning.
9878 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9880         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9881         set in the AOT case.
9883 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9885         * class.c (mono_class_setup_vtable_general): Use memory barriers
9886         as we do double checked locking on MonoClass::vtable.
9888 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9890         * reflection.c (resolve_object): Inflate only if the generic context
9891         is not null. Fixes #389886.
9893 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9895         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9896         instead of g_free.
9898         Code is contributed under MIT/X11 license.
9900 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9902         * class.c: Revert unrelated change.
9904 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9906         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9907         a generic instantiation, use mono_class_from_mono_type instead of playing
9908         with MonoType directly.
9910 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9912         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9913         checks must ignore generic instantiations, so mono_class_has_parent is not
9914         suitable. Fixes #390128.
9916 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9918         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9919         it to avoid registering tokens during metadata generation. Fixes #390023.
9921 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9923         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9924         consistent.
9926         Contributed under MIT/X11 license.
9928 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9930         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9931         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9932         to fixup the EXE image.
9933         (mono_cleanup): Use mono_close_exe_image.
9934         (mono_close_exe_image): New function.
9935         * image.c: Include "marshal.h".
9936         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9937         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9938         counting when the image is loaded outside of mono_image_open_full. Set status
9939         based on GetLastError.
9940         * coree.c: Include required headers. Add init_from_coree.
9941         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9942         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9943         (_CorExeMain): Set init_from_coree.
9944         (CorExitProcess): Only call ExitProcess for now.
9945         (CorBindToRuntimeEx): New stub implementation.
9946         (CorBindToRuntime): New function.
9947         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9948         (MonoFixupExe): ILONLY executables require no fixups.
9949         (mono_set_act_ctx): New function to set activation context.
9950         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9951         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9952         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9953         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9954         as MONO_INTERNAL.
9955         * domain-internals.h: Add mono_close_exe_image.
9957         Contributed under MIT/X11 license.
9959 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9961         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9962         size for generic param and event tables. Fixes #388977.
9964 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9966         * loader.c (mono_method_signature): Use memory barriers because of the double
9967         checked locking pattern.
9969         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9970         aborting or aborted as well. Fixes #376391.
9971         
9972         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9973         existing runtime state in the Suspend handler during shutdown.
9975 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9977         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9979         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9980         which are starting up or shutting down.
9982         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9983         this function never returns if the runtime is already shutting down.
9985         * icall.c (ves_icall_System_Environment_Exit): Update after 
9986         mono_threads_set_shutting_down () signature change.
9987         
9988 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9990         * class.c: Added can_access_instantiation to verify if the instantiation
9991         is visible. Fix access check for nested types as they returned TRUE
9992         before doing type and generic instantiation visibility checks.
9994 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9996         * reflection.c (mono_reflection_create_generic_class): The created type
9997         must have a different container from its TypeBuilder. Otherwise they
9998         will end sharing generic arguments, which is wrong.
10000         Due to the sharing, making a generic instance of the created type using
10001         the TypeBuider generic arguments resulted in the generic type definition
10002         been returned, which is wrong as well.
10004         As a bonus the code was leaking the type_params array. This memory should
10005         be allocated from the image mempool.
10007         This fixes bug #354047.
10009 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
10011         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
10012         to here         as they are now used in assembly.c new code.
10013         Added a skipverification flag to MonoAssembly.
10014         New internal function mono_assembly_has_skip_verification.
10016         * assembly.c: New function mono_assembly_has_skip_verification. It checks
10017         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
10018         part of #387274.
10020 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10022         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
10023         needed. Fixes #387034.
10025         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
10027 2008-05-06  Miguel de Icaza  <miguel@novell.com>
10029         * assembly.c (mono_assembly_load_reference): Prevent crash while
10030         disassembling Silverlight 2.0 executables while we still do not
10031         have GACed libraries.
10033 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10035         * reflection.c: Special case generic type definitions as well. Fixes #383444.
10037 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
10039         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
10040         of the dynamic case. Fixes #387404.
10042 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10044         *verify.c (mono_verifier_is_class_full_trust): If under
10045         verify_all and the verifier mode was not set, only
10046         gac and corlib types are fulltrust. This makes --verify-all
10047         usable to detect unverifiable code, which is the expected
10048         use case.
10050 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10052         * verify.h: Ops, commited the header with debug
10053         enabled.
10055 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10057         * verify.c (merge_stack): Use the new value on unverifiable
10058         stack merges.
10060         * verify.c (verify_type_compatibility_full): Comparison
10061         of nullable types can't use mono_class_is_assignable_from.
10063         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
10064         that makes all verification errors be reported.
10066         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
10067         mono_method_verify.
10069 2008-05-05  Robert Jordan  <robertj@gmx.net>
10071         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
10072         support for value types. See #386415.
10074         * object.c: comments.
10076         Code is contributed under MIT/X11 license.
10078 2008-05-05  Martin Baulig  <martin@ximian.com>
10080         * debug-mono-symfile.h
10081         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
10082         for old pre-terrania symbol files.
10084 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10086         * mono-config.c: Add ppc64 architecture.
10088         Code is contributed under MIT/X11 license.
10090 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10092         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
10093           PPC64 uses function descriptors as well.
10095         Code is contributed under MIT/X11 license.
10097 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
10099         * object.c (compute_class_bitmap): Ignore literal static fields.
10101         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
10102         var has an invalid format.
10103         (describe_ptr): Add some sanity checks for the vtable.
10104         (add_nursery_frag): Clear unused nursery fragments.
10105         (major_collection): Clear all remaining nursery fragments.
10107 2008-05-03  Robert Jordan  <robertj@gmx.net>
10109         * image.c, metadata-internals.h: add thunk_invoke_cache.
10111         * marshal.c, marshal.h: implement
10112         mono_marshal_get_thunk_invoke_wrapper ().
10114         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
10116         Code is contributed under MIT/X11 license.
10118 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10120         * verify.c (do_leave): Empty the stack.
10122 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10124         * class.c (mono_class_is_assignable_from): Variance
10125         doesn't work between reference and value types. For example,
10126         given type C<T+>, C<int32> is not assignable to C<object>.
10127         Break the argument checking loop on first error. 
10129 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
10131         * icall.c : base64_to_byte_array() needs some more strict
10132           check for sequence of '=' characters. Patch by Santa
10133           Marta (http://deee.g.hatena.ne.jp/santamarta).
10135           Contributed under MIT/X11 license.
10136           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
10138 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
10140         * domain.c: Disable LoadLibrary support to fix Win32 build.
10142         Code is contributed under MIT/X11 license.
10144 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
10146         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
10147         to help with cache behaviour.
10149 2008-05-01  Miguel de Icaza  <miguel@novell.com>
10151         * appdomain.c (mono_domain_from_appdomain): Add new accessor
10152         method. 
10154 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
10156         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
10158 2008-05-01  Dick Porter  <dick@ximian.com>
10160         * process.c (process_get_fileversion): Only pass 16 bits of
10161         language ID to VerLanguageName.  Fixes bug 381204.
10163 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10165         * verify.c (mono_method_verify): Fix the comparison
10166         operator for code bounds check.
10168 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10170         * verify.c (mono_method_verify): Check the bounds of
10171         all access of the code array.
10173 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
10175         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
10177 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
10179         * image.c (mono_image_strong_name_position): Fix return value when the rva is
10180         not valid.
10182 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
10184         * loader.c (mono_get_method_from_token, mono_method_signature): Add
10185         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
10186         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
10187         fixup main EXE images when using mono.exe for mixed-mode assembly support.
10188         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
10189         mono_runtime_load.
10190         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
10191         runtime initialization from metadata.
10192         * assembly.c: Remove obsolete ceGetModuleFileNameA.
10193         (mono_set_rootdir): Use mono_get_module_file_name.
10194         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
10195         handles.
10196         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
10197         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
10198         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
10199         MonoCLIImageInfo. Add support for module handles.
10200         (load_cli_header): Update mono_cli_rva_image_map signature.
10201         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
10202         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
10203         (mono_image_rva_map): Add support for module handles.
10204         (mono_image_ensure_section_idx): Add support for module handles.
10205         (mono_image_close): Add support for module handles.
10206         (do_load_header): Add support for module handles.
10207         (mono_image_open_from_module_handle): New function for internal use.
10208         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
10209         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
10210         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
10211         handles.
10212         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
10213         * image.h: Add mono_image_fixup_vtable.
10214         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
10215         support.
10216         * coree.h: New file.
10217         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
10218         unsupported native code.
10219         (mono_marshal_set_callconv_from_modopt): New function splitted from
10220         mono_marshal_get_managed_wrapper.
10221         (mono_marshal_get_managed_wrapper): Use
10222         mono_marshal_set_callconv_from_modopt.
10223         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
10224         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
10225         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
10226         that results in a deadlock when the runtime is loaded in _CorDllMain.
10227         * Makefile.am: Add coree.c and coree.h.
10229         Contributed under MIT/X11 license.
10231 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10233         * generic-sharing.c: Search for type arguments in array element
10234         types as well.
10236 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10238         * class-internals.h, generic-sharing.c: New, small runtime generic context.
10240         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
10242         * object.c: Don't setup the RGCTX when the vtable is created,
10243         because we're setting it up lazily now.
10245 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
10247         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
10248         64 bit support.
10250 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10252         * verify.c (verify_class_for_overlapping_reference_fields): 
10253         If class is under fulltrust allow reference types to overllap
10254         if they have the same RVA.
10256 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10258         * pedump.c: Added new flag valid-only, that makes the verifier
10259         behaves just like --security=validil. It won't fail type load
10260         due to unverifiable restrictions.
10262 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10264         * class-internals.h (struct MonoMethod): Added a verification_success
10265         field to cache verifier executions. Reduced MonoMethod:slot size by
10266         one bit.
10268 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
10270         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
10271         instead of a 'vt' argument to save an indirection and to allow these to be used
10272         for valuetypes.
10273         (scan_vtype): New helper function to scan an area using a gc descriptor.
10274         (mono_gc_wbarrier_value_copy): Implement this.
10275         (handle_remset): Add support for REMSET_VTYPE.
10276         (find_in_remset_loc): Ditto.
10277         (mono_gc_base_init): Allow some debugging options to be controlled through the
10278         use of the MONO_GC_DEBUG env variable.
10279         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
10280         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
10282 2008-04-23  Martin Baulig  <martin@ximian.com>
10284         * domain.c (mono_domain_create): Move the call to
10285         mono_debug_domain_create() down, after allocating the domain id.
10287 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10289         verify.c (verify_class_for_overlapping_reference_fields): Skip
10290         static fields while verifying for overlapping fields as they
10291         don't matter at all.
10293 2008-04-23  Marek Habersack  <mhabersack@novell.com>
10295         * domain-internals.h: added a declaration of
10296         mono_make_shadow_copy.
10298         * assembly.c (mono_assembly_open_full): shadow copying of
10299         assemblies moved to here, so that all the assemblies within the
10300         application domain's private binary directories can be
10301         processed. Fixes bug #380546
10303         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
10304         mono_make_shadow_copy and made non-static. The decision whether
10305         to shadow-copy an assembly is made based on its location - it's
10306         copied if it's in one of the private application domain binary
10307         directories and its different to the target file in the shadow
10308         directory. Fixes bug #380546
10310 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
10312         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
10314         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
10315         types.
10317         * reflection.c (mono_image_create_token): Handle 
10318         Method/ConstructorOnTypeBuilderInst.
10319         (resolve_object): Ditto.
10320         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
10321         so it can be called from resolve_object. Also handle the case when the inflated
10322         class already has its methods setup.
10324 2008-04-21  Martin Baulig  <martin@ximian.com>
10326         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
10328 2008-04-20  Geoff Norton  <gnorton@novell.com>
10330         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
10331         pointer dereference.
10333 2008-04-15  Marek Habersack  <mhabersack@novell.com>
10335         * appdomain.c (try_load_from): if IOMAP is in effect, call the
10336         portability API to look up the assembly file. Fixes behavior in
10337         situations when the application has a bin/ directory, but the
10338         assembly search patch refers to Bin/ (and thus the requested file
10339         name is Bin/SomeLibrary.dll). Fixes bug #379888
10341 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
10343         verify.c (mono_type_is_generic_argument): Extracted this check
10344         from a dozen places to here.
10346         verify.c: Fixed all issues related to boxing generic arguments
10347         and their constraints.
10349 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
10351         verify.c (mono_class_interface_implements_interface): Fix win32 build.
10353 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
10355         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
10356         isn't finished yet. Fixes #363447.
10358 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
10360         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
10361         Fixes #346419.
10363 2008-04-13  Jb Evain  <jbevain@novell.com>
10365         * domain.c: update the 2.1 profile versions.
10366         Merged from the Moonlight 2 branch.
10368 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
10370         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
10371         mscorlibs for the non-refonly case as well.
10373         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
10374         in mono_assembly_load_from_full (). Fixes #378924.
10376 2008-04-11  Geoff Norton  <gnorton@novell.com>
10378         * icall.c: The global extern environ doesn't exist on Mac.  We
10379         need to call NSGetEnviron instead.
10381 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10383         verify.c: Add generic method constraint verification.
10385 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10387         class.c (mono_class_inflate_generic_method_full): Add a long
10388         explanation to the is_mb_open hack. Remove the FIXME.
10390 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10392         * verify.c (mono_method_verify): Mark all unknown opcodes
10393         as invalid. Mark jmp as unverifiable.
10395 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10397         * verify.c: Add code to do type constraint verification on class instances.
10399         * verify.c (mono_verifier_verify_class): Use the type constraint 
10400         verification code.
10402 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10404         * class.c (mono_class_get_field_default_value): Don't pass cindex
10405         as hint to mono_metadata_get_constant_index. The local is not initialized
10406         and should contain garbage most of the time. This could only work
10407         with a lot of luck.
10409 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10411         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
10413 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10415         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
10417         * class.c (mono_class_from_generic_parameter): Save the token of the
10418         generic param in MonoClass::sizes.generic_param_token.
10420         * reflection.c (mono_custom_attrs_from_class): If the class type is
10421         VAR or MVAR retrieve the attributes of the generic param.
10423 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10425         * class.c (mono_class_init): Do class verification if the verifier
10426         is enabled.
10428 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10430         * verify-internal.h: Added mono_verifier_verify_class.
10432         * verify.c: Added mono_verifier_verify_class. It checks for
10433         classes with explicit layout that have overlapping reference fields.
10435         * pedump.c: Init the verifier state prior to verification. Fixed
10436         command line arguments.
10438 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10440         * Makefile.am: Added verify-internals.h, hopefully fix the build.
10442 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10444         * verify-internals.h: Fix a warning.
10446 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10448         * verify-internals.h: New header with the verifier configuration
10449         extracted from mini.c.
10451         * verify.c: Implemented the new functions exported by verify-internals.h.
10453 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10455         * verify.c: Add proper verification of ckfinite.
10457 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10459         * verify.c (do_conversion): Improved error message to something
10460         more meanfull.
10462         * verify.c (check_is_valid_type_for_field_ops): Fix to work
10463         with primitive types.
10465 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10467         * verify.c: Added tail prefix checking. Marked icall
10468         as unverifible.
10470 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10472         * verify.c: Fix the detection of branches to the middle
10473         of an instruction.
10475 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
10477         * verify.c: Implemented verification of volatile. and
10478         unaligned. prefix. Check if a type is valid after retrieving it.
10480 2008-04-01  Dick Porter  <dick@ximian.com>
10482         * process.c (process_get_fileversion): If there's no string block,
10483         set the file language to en_US.  Fixes the other new part of bug
10484         374600.
10486 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
10488         * class.c: New functions mono_method_can_access_field_full and
10489         mono_method_can_access_method_full. They perform type visibility
10490         and type site check.
10492         * class-internal.h: Added exported functions.
10494         * verify.c: Use new functions to implement proper visibility checks.
10496 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
10498         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
10500 2008-03-28  Dick Porter  <dick@ximian.com>
10502         * process.c (process_get_fileversion): Use the first language ID
10503         we see, rather than insisting on an invariant language.  Fixes bug
10504         374600.
10506 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
10508         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
10509         the streams to fix reading of invalid memory later.
10511         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
10512         to ease debugging.
10514 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10516         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
10517         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
10519 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
10520         * threads.h: Added MonoThreadManageCallback type and
10521         mono_thread_set_manage_callback prototype
10522         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
10523         (used to store the mono_thread_manage callback).
10524         * threads.c: Added mono_thread_set_manage_callback, and handle
10525         "MonoThread->manage_callback" in build_wait_tids.
10527 2008-03-26  Dick Porter  <dick@ximian.com>
10529         * process.c (process_get_fileversion): Set FileVersionInfo strings
10530         to Empty when the resource doesn't have the particular info.
10531         Fixes bug 355717.
10533 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
10535         * verify.c (mono_method_verify): Proper prefix validation.
10537 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10539         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
10540         itself in a separate argument instead of throwing them. Fixes #373448.
10542         * appdomain.c: Bump corlib version.
10544 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
10546         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
10548 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
10550         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
10551         version macros.
10553 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10555         * generic-sharing.c, class-internals.h: Code for putting
10556         reflection types into the runtime generic context.
10558 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
10560         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
10561         Fixes #340662. 
10564 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
10566         * verify.c (VerifyContext): Added instruction prefix data to the struct.
10568         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10570         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10572         * verify.c (do_cast): Let the result value keep the boxed status.
10574         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10576 2008-03-17  Jb Evain  <jbevain@novell.com>
10578         * reflection.c: when running on a 2.0 runtime, emit
10579         unconditionally the #~ header version as 2.0, and the
10580         CLI header version as 2.5, for symmetry's sake with csc.
10582 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10584         * class.c: Remove the unused cache_interface_offsets stuff.
10586         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10587         profiler.c: Fix warnings.
10589 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10591         * generic-sharing.c, class-internals.h: Support for putting
10592         methods into the runtime generic context.
10594 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10596         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10597         classes which are generic instances of not-yet finished typebuilders. Fixes
10598         #351172.
10600         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10602 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10604         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10606         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10607         field, replace it with a hash table in MonoDynamicImage.
10609         * reflection.c (inflate_mono_method): Access the generic definition object from
10610         image->generic_def_objects instead of imethod->reflection_info.
10612         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10614         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10615         
10616         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10617         function in reflection.c so it is easier to keep in sync with the dynamic image
10618         creation code.
10620         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10621         mono_image_close ().
10623 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10625         * class.c (mono_class_generic_sharing_enabled): Disable generic
10626         sharing for all architectures except AMD64 and x86 to fix build.
10628 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10630         * verify.c: Use the generic definition MonoGenericContext when available.
10631         Remove code for checking generics instance compatibility in favor of
10632         mono_class_is_assignable_from.
10634 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10636         * marshal.c, marshal.h, metadata-internals.h, image.c,
10637         wrapper-types.h: New wrapper for invoking a shared static method
10638         without having to pass the runtime generic context argument.
10640 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10642         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10644 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10646         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10647         
10648         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10649         create a token from a FieldOnTypeBuilderInst.
10650         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10651         (resolve_object): Ditto.
10653         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10654         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10656 2008-03-14  Martin Baulig  <martin@ximian.com>
10658         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10660         * debug-mono-symfile.h
10661         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10662         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10664 2008-03-10  Martin Baulig  <martin@ximian.com>
10666         * debug-mono-symfile.h
10667         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10668         `lexical_block_table_offset'.
10669         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10670         `lexical_blocks'.
10671         (MonoSymbolFile): Added `version'.
10673         * mono-debug.h
10674         (MonoDebugLexicalBlockEntry): Removed.
10675         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10676         `lexical_blocks'.
10678         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10679         blocks here; the debugger now does this internally.
10681 2008-02-27  Martin Baulig  <martin@ximian.com>
10683         * object.c (mono_runtime_exec_main): Call
10684         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10685         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10687 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10689         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10690         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10692 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10694         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10695         ldftn with a virtual method.
10697 2008-03-13  Geoff Norton  <gnorton@novell.com>
10699         * decimal.c:  Only include memory.h if the platform has it.
10701 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10703         * assembly.c, class.c, metadata-internals.h: make sure public key
10704         tokesns are compared in a case-insensitive way. Also, all
10705         the lookups in the GAC use a lowercase public key token
10706         (gaacutil already does the lowercasing on install). Fixes
10707         bug #369541.
10709 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10711         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10712         and return value.
10714 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10716         * image.c: when someone loads a mscorlib from a file, return the
10717         currently loaded mscorlib (fixes bug #369253).
10719 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10721         * class.c: handle types with no parents by forcing them to have
10722         System.Object as a parent and marking them as broken (this currently
10723         allows the first part of bug #369173 to work as well, likely because
10724         we don't check for typeload exceptions everywhere yet).
10726 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10728         * class.c: more complete check that types belong to corlib
10729         (fixes second part of bug #369173).
10731 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10733         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10734           "inline" to "__inline" before including mono-membar.h.
10735           
10736         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10737           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10738           MSVC builds.
10740         Contributed under MIT/X11 license.
10742 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10744         * verify.c (do_invoke_method): Remove return type validation.
10746         * verify.c (do_ret): Do return type validation at return site instead of
10747         call site.
10749 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10751         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10753         * verify.c: Some todos cleaned and improved a few error messages.
10755 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10757         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10759 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10761         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10762         system types correctly.
10764         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10765         function.
10767 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10769         * assembly.c (build_assembly_name): Fix a warning.
10771 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10773         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10774         the called function takes an object type argument. Fixes storing or
10775         valuetypes across remoting as well as reducing memory usage.
10776         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10777         stfld_remote wrapper caches.
10779 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10781         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10782         is not found.
10784         * reflection.c (mono_image_register_token): New helper function to save
10785         a token->object mapping.        
10787         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10788         managed code.
10790         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10791         one dimension arrays. Fixes #367670.
10792         (mono_reflection_get_type_internal): Ditto.
10794 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10796         * marshal.c: mono_load_remote_field_new() always returns object.
10797         so use the proper signature (fixes bug #366445).
10799 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10800         
10801         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10802         add an 'inline_failure' flag instead.
10804 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10806         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10807         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10808         contains the location of "this", used for exception handling.
10810 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10812         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10813         their size on all platforms for perf reasons.
10815 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10817         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10818         object-internal.h
10820         * object-internal.h: Same.
10822 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10824         * reflection.h: Fix the build I just broke.
10826 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10828         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10829         Test if a token is valid, this remove explicit usage of 
10830         MonoDynamicImage::tokens from the verifier code.
10832         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10834         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10835         instead of direct access to MonoDynamicImage::tokens.
10837 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10839         * verify.c (token_bounds_check): Fix the build I just broke.
10841 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10843         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10845         * verify.c (verifier_load_method): Fixed the errors message.
10847         * verify.c (mono_method_verify): Fixed a debug message.
10849 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10851         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10852         mono-perfcounters.h, class-internals.h: support for predefined
10853         writable counters, query of categories and counters, bugfixes.
10855 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10857         * verify.c (do_refanytype): Verify the refanytype opcode.
10859         * verify.c (mono_method_verify): Use do_refanytype.
10861 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10863         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10865         * verify.c (mono_method_verify): Use do_mkrefany.
10867 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10869         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10870         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10871         implementation.
10873 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10875         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10876         the type load exception.
10878 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10880         * verify.c: Added a few FIXME for method signatures
10882         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10883         of mono_method_get_signature and get vararg call working. Removed unused
10884         checks for return value.
10886         * verify.c (do_refanyval): Verify the refanyval opcode.
10888         * verify.c (mono_method_verify): Implemented verification of arglist and
10889         use do_refanyval.
10891 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10893         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10894         vtypes to marshal.c.
10896         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10897         it works for AOT as well.
10899 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10901         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10902         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10903         the system time is adjusted.
10905 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10907         * icall.c, icall-def.h: use the new time functions (fixes the
10908         non-monotonic behaviour of TickCount).
10910 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10912         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10913         it breaks the build.
10914         
10915         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10916         cattr is not finished yet.
10918 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10920         * verify.c: Proper token validation for field, method and type.
10922 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10924         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10926         * loader.c (method_from_memberref): Generate type load error instead of method missing
10927         if the type is not found.
10929 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10931         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10932         some of the conversions caused the generation of a marshal directive exception.
10934 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10936         verify.c: Report which exception should be thrown by the JIT.
10937         Added a lot of FIXME notes.
10939 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10941         * generic-sharing.c: Runtime generic context slots are not
10942         instantiated on init anymore.  Instead, provide function to do the
10943         instantiating on demand.
10945         * class-internals.h: Added vtable to runtime generic context.
10946         Macros for encoding direct and indirect slot offsets in one
10947         guint32.
10949 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10951         * object.c, generic-sharing.c: Moved some generic sharing code
10952         from object.c to generic-sharing.c.
10954         * generic-sharing.c: Added support for extensible runtime generic
10955         context.
10957         * metadata-internals.h: Two new hash tables in MonoImage for
10958         extensible runtime generic context support.
10960         * domain.c: Unregister generic vtables upon domain unloading.
10962         * image.c: Destroy new hash tables upon image unloading.
10964         * metadata.c: Unregister generic subclasses upon image unloading.
10966         * class-internals.h: New data structure for runtime generic
10967         context template.  New fields in the runtime generic context for
10968         extensible part.
10970         * Makefile.am: Added generic-sharing.c.
10972 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10974         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10975         there is a pending loader exception, raise it.
10977         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10978         same.
10980         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10981         same.
10983         Fixes #363450.
10985 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10987         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10989         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10990         
10991         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10992         ref-only requests for compatibility with MS.
10994 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10996         * reflection.c (mono_custom_attrs_from_method): Don't silently
10997         return an empty list for generic method instances.
10998         (mono_custom_attrs_from_param): Likewise.
11000 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
11001             Raja R Harinath  <harinath@hurrynot.org>
11003         Fix #354757
11004         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
11005         * class.c (mono_class_inflate_generic_method_full): Initialize it
11006         when a fully-open method is instantiated.
11007         * metadata.c (inflated_method_equal, inflated_method_hash): Update
11008         to new field.
11009         * reflection.c (inflate_mono_method): Don't create a temporary context.
11011 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
11013         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
11014         Compute correct value, to prepare for imethod->reflection_info going away.
11016 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
11018         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
11020 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
11022         * verify.c: Implement skip visibility flag.
11024 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
11026         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
11027         which contains an extra field to tell the kind of exception that should be thrown.
11029         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
11031 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
11033         * loader.c (mono_method_get_param_names): Initialize 'klass' after
11034         'method' is updated.
11036 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
11038         * class.c (mono_class_layout_fields): Set class->min_align for classes using
11039         explicit layout as well. Fixes #360375.
11041 2008-02-11  Geoff Norton  <gnorton@novell.com>
11043         * loader.c: Guard and dereference against inflated generic methods
11045 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
11047         * class.c: Include Retargetable spec in assembly name.
11048         * assembly.c: Always include PublicKeyToken spec in assembly name
11049         (with value "null" if assembly is not signed), and include
11050         Retargetable spec.
11051         * icall-def.h: Added icall for Assembly.get_fullname.
11052         * icall.c: Added icall returning the fullname of an assembly.
11054 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
11056         * class.c (mono_class_setup_vtable_general): Add a missing call to
11057         mono_class_setup_methods () which is needed in the AOT case.
11059 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
11061         * verify.c (mono_type_get_stack_name): Added. Return the name for the
11062         stack type of the given MonoType.
11064         * verify.c (verify_type_compatibility_full): Handle the void type.
11066         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
11067         way stack merging works.
11069         * verify.c (store_local): Improved verification message.
11071         * verify.c (do_branch_op): If the merging is invalid, the method
11072         is unverifiable and not invalid. Improved error message.
11074         * verify.c (merge_stacks): Properly merge a boxed valuetype and
11075         a reference type diferent than System.Object. Improved error
11076         message.
11078 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
11080         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
11082         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
11083         type of an enum even if the argument is byref.
11085         * verify.c: Replace all explicit uses of enumtype and enum_basetype
11086         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
11088         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
11090         *verify.c (verify_type_compatibility_full): Make enum types
11091         compatible with their base types.
11093         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
11094         types are compatible for the special case of a boxed valuetype and
11095         System.Object.
11097         * verify.c (verify_stack_type_compatibility): The function
11098         is_compatible_boxed_valuetype was extracted from here.
11100         * verify.c (push_arg): Only set ctx->has_this_store if the method
11101         is not static.
11103         * verify.c (do_ldelem): Fixed a typo in an error message and added
11104         strict check for mixing int32 and native int as the array type
11105         and ldelem type.
11107         * verify.c (merge_stacks): Consider boxed valuetypes in the
11108         compatibility checks.
11110 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
11111         * profiler.h: (MonoGCEvent): Added start-stop the world events.
11113 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11114         *class.c: use_new_interface_vtable_code: renamed the env var to have
11115         a "MONO_" prefix, and fix the logic to enable it by default.
11117 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11118         *class.c:
11119         mono_class_setup_vtable_general: rewrote the way in which interface
11120         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
11121         makes the code more maintainable.
11122         For now the old code is still there, and can be activated setting
11123         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
11125 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
11127         * verify.c: guarded some debug functions around and #ifdef.
11129         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
11131 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11133         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
11134         changes for now since they seem to break too many things.
11136 2008-02-05  Mark Probst  <mark.probst@gmail.com>
11138         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
11139         mono_marshal_find_nonzero_bit_offset): Added macro and function
11140         for finding the byte- and bit-offset of a bitfield within a
11141         struct.
11143 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
11145         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
11146         (mono_marshal_get_struct_to_ptr): Ditto.
11148         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
11149         cctor_signature.
11151 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
11153         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
11154         between methods for non-corlib types.
11156 2008-02-02  Geoff Norton  <gnorton@novell.com>
11158         * loader.c (mono_method_get_param_names): Populate the parameter name for 
11159         generic parameters as well. (Fixes #342536)
11161 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
11163         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
11165         * verify.c (do_invoke_method): Fix for calling with byref structs.
11167         * verify.c (do_cast): push a boxed value type based on the type token and not
11168         the type of stack.
11170 2008-01-31  William Holmes  <billholmes54@gmail.com>
11172         * process.c (process_module_string_read): Check the size returned form 
11173           VerQueryValue to avoid out of memory exception. 
11175 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
11177         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11178         Handle properly modules which are not in the moduleref table. Fixes
11179         #356938.
11181 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
11183         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
11184         the dynamic case which is now in managed code.
11185         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
11187         * marshal.c (mono_string_to_bstr): Fix a warning.
11188         (init_com_provider_ms): Ditto.
11190         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
11192         * exception.c (mono_get_exception_out_of_memory): New helper function.
11194 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
11196         * marshal.c: Add support for BSTR marshalling
11197         using other COM systems.
11199         Code is contributed under MIT/X11 license.
11201 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11203         * object.c (mono_runtime_invoke_array): reverted previous
11204         commit as it breaks the build.
11206 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11208         * object.c (mono_runtime_invoke_array): Verify arguments for
11209         invalid types. Fixes #348522.
11211 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11213         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
11214         non-final virtual calls using call. 
11216         * verify.c (do_invoke): fixed some TODOs.
11218         * verify.c (push_arg): set has_this_store for "ldarga 0".
11220 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
11222         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
11223         which belong to an inflated class. Fixes #356531.
11225 2008-01-26  Robert Jordan  <robertj@gmx.net>
11227         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
11228         which resort to FindFirstFile when a certain error condition
11229         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
11230         Code is contributed under MIT/X11 license.
11232 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
11234         * marshal.c (emit_marshal_string): Fix out string marshalling
11235         to use specified encoding. Fixes #323900.
11237         Code is contributed under MIT/X11 license.
11239 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
11241         * class.c (mono_class_inflate_generic_method_full): Don't modify
11242         iresult->context after cache check.
11244 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
11246         * class.c (mono_class_inflate_generic_method_full): Change the
11247         struct assignments to memcpy for better visibility and add some comments.
11249 2008-01-23  Dick Porter  <dick@ximian.com>
11251         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
11252         procedure, and make it work on windows.
11254 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
11256         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
11257         a MonoReflectionTypeBuilder since it is always of that type.
11259         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
11261         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
11263         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
11264         
11265         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
11267         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
11269         * reflection.c (mono_reflection_create_runtime_class): Remove already created
11270         instantiations from the type cache.
11272 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11274         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
11276         * verify.c (do_unbox_value): push a controled mutability managed pointer.
11278 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11280         * verify.c (do_ldstr): added, verifies if the #US token is valid.
11282         * verify.c (mono_method_verify): removed old TODO
11284 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11286         * verify.c (do_newobj): add visibility check.
11288 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11290         * verify.c (do_load_function_ptr): add visibility check.
11292 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
11293         *class.c:
11294         mono_generic_class_get_class: hook profiler events.
11295         mono_field_get_offset: added to support heap-shot in the new profiler.
11296         *class.h: exported mono_field_get_offset.
11297         * reflection.c:
11298         mono_reflection_setup_internal_class: hook profiler events.
11300 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
11302         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
11303         argument here too and use it to avoid checking for pending exceptions if 
11304         possible.
11306 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
11308         * assembly.c (build_assembly_name): add arg for passing the assembly
11309         flags. Do not consider a PublicKey with value "null" valid.
11310         (mono_assembly_name_parse_full): added boolean argument that will be
11311         set if the assembly name contains a PublicKeyToken spec. Added support
11312         for the Retargetable spec for which only Yes or No are allowed as valid
11313         value. Consider assembly name invalid if Retargetable spec is set, but
11314         either version, culture or public key (token) are not specified.
11315         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
11316         with implementation in assembly.c.
11317         * icall.c (fill_reflection_assembly_name): also copy assembly flags
11318         from MonoAssemblyName.
11319         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
11320         introduced argument for mono_assembly_name_parse_full to know if the
11321         assembly name has a PublicKeyToken spec, and if it has instruct
11322         fill_reflection_assembly_name to use default value for keyToken (if
11323         PublicKeyToken is null).
11325 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11327         * verify.c (mono_method_verify): fixed ovf ops with
11328         float values. They are unverifiable now.
11330 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11332         * class.c (set_failure_from_loader_error): add BadImageException to the
11333         list of exceptions that can cause a type to fail to load.
11335         * class.c (mono_class_get_exception_for_failure): same.
11337 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
11339         * verify.c (in_any_exception_block): added, check if offset
11340         is part of any exception handling clause.
11342         * verify.c (get_stack_type): added VAR and MVAR types.
11344         * verify.c (do_stobj): better error messages.
11346         * verify.c (do_cpobj): added, check cpobj.
11348         * verify.c (do_initobj): added, check initobj.
11350         * verify.c (do_sizeof): added, check sizeof.
11352         * verify.c (do_localloc): added, check localloc.
11354         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
11356 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
11358         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
11359         save_lmf/restore_lmf opcodes.
11361         * threads.c (mono_threads_install_notify_pending_exc): New function to
11362         install a callback notifying the JIT there is a pending exception on a thread.
11363         (mono_thread_request_interruption): Call the new callback.
11364         (mono_thread_get_and_clear_pending_exception): New function to return the
11365         exception pending on a thread.
11367         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
11368         to turn off checking for pending exceptions.
11369         (mono_marshal_get_native_wrapper): Ditto.
11371 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11373         * threads-types.h: Get rid of the unnecessary extern declarations.
11375 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
11377         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
11378         return field from parent class if not private.
11379         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
11380         returns fields from parent class if they are not private.
11381         (method_nonpublic): added function to determine if a given method
11382         should be considered non-public. Returns false for private methods
11383         on parent class, and internal methods from parent on the 1.0 profile.
11384         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
11385         use method_nonpublic function to determine whether method should be
11386         returned.
11387         (property_accessor_public): use newly introduced method_nonpublic
11388         function to determine whether accessor is non-public. 
11389         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
11390         event from parent class if not private. Only return static event if
11391         Static flag is set, and only return static event from parent class if
11392         FlattenHierarchy flag is set.
11393         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
11394         include non-private events from parent class.
11396 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11398         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
11399         warning.
11401 2008-01-16  Wade Berrier <wberrier@novell.com>
11403         * security.c: Add assembly.h header to appease some warnings
11405 2008-01-16  Dick Porter  <dick@ximian.com>
11407         * process.c (process_module_string_read): Remove trailing null
11408         when saving string.
11410 2008-01-16  Mark Probst  <mark.probst@gmail.com>
11412         * class-internals.h: A new data structure describing the layout of
11413         a runtime generic context (MonoRuntimeGenericContextTemplate).
11415         * metadata-internals.h: Added a hash table to MonoDomain that maps
11416         from open generic classes to their runtime generic context
11417         templates.
11419         * object.c: Building of the runtime generic context, including
11420         proper handling of generic type arguments of superclasses.
11421         Building of the runtime generic context according to the template.
11423 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
11425         * class.c (mono_class_setup_fields): Set field.count for generic instances.
11426         Fixes #350856.
11428         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
11429         mono_portability_find_file (). Fixes #325466.
11430         (mono_image_get_public_key): Fix a warning.
11432 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
11434         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
11435         Fixes #353550.
11436         (mono_class_from_name_case): Ditto.
11438 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
11440         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
11441           common storage for the tables used in the System/NumberFormatter class.
11443 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
11445         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
11447 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
11449         * verify.c (get_boxable_mono_type): check if the token is valid.
11451         * verify.c (set_stack_value): changed to add an error if an
11452         invalid type is set on stack. Changed all callers due to signature change.
11454         * verify.c (do_stobj): implement stobj validation.
11456 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11458         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
11459         set container->is_method, it was set earlier.
11461         * metadata.c (type_in_image): Handle MVARs which belong to not finished
11462         generic methods.
11464         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11465         is_method of the generic container to TRUE for methods.
11467 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11469         * metadata.c (type_in_image): Handle type parameters properly.
11471         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
11472         memory ownership of this structure.
11474 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
11476         * verify.c (get_boxable_mono_type): make typedref types been just
11477         unverifiable. check for void type.
11479         * verify.c (do_unbox_any): added, verify opcode unbox.any.
11481         * verify.c (do_load_function_ptr): accept method spec tokens.
11483 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11485         * marshal.c (mono_class_native_size): Always set *align even if this is called
11486         recursively.
11488 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
11490         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
11491         out-of-date.
11493 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
11495         * verify.c: removed some old unused tables. A huge bunch of small fixes
11496         to things found while testing the verifier with mono basic.
11498         * verify.c (dump_stack_value): dump null literal flag to.
11500         * verify.c (verify_type_compatibility_full): fix comparison
11501         for types that have a generic super type.
11503         * verify.c (verify_stack_type_compatibility): fix compatibility
11504         between null literals and reference types. fix compatibility between
11505         boxed valuetypes and object. fix corner case test for enums.
11507         * verify.c (do_cmp_op): proper verification of cgt.un in case
11508         of reference types.
11510         * verify.c (do_invoke_method): fix error message.
11512         * verify.c (do_store_indirect
11514         * verify.c (check_is_valid_type_for_field_ops): proper verification
11515         of managed pointers to valuetypes and boxed valuetypes. proper verification
11516         of null literals.
11518         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
11519         allow token to be a reference type.
11521         * verify.c (do_cast): proper handling of boxes valuetypes.
11523         * verify.c (do_stelem): proper handling of storing a boxed valuetype
11524         in object[].
11526         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
11527         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
11528         fixed the decoding of unbox_any
11530 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11532         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
11534 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
11536         * verify.c (do_newobj): do delegate verification.
11538         * verify.c (verify_delegate_compatibility): perform delegate
11539         verification.
11541         * verify.c (verify_ldftn_delegate): perform tests related to
11542         ldftn delegates.
11544         * verify.c (mono_delegate_signature_equal): perform the
11545         slightly diferent signature comparison required by delegates.
11547         * metadata.c (mono_metadata_type_equal_full): added and exported
11548         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
11549         allows signature only comparison.
11551         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
11552         as MONO_INTERNAL.
11554 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
11556         * verify.c: added a bunch of stack_slot_* functions to
11557         make access to stack slot type easier. This is required to
11558         allow optional flags, like null literal, boxed value and
11559         this pointer.
11560         All access paths to IlStackDesc::stype have been changed 
11561         to use these new funcions.
11562         Removed a bunch of unused functions and cleared all warnings.
11563         This patch introduces the usage of the this pointer and 
11564         boxed value flags.
11566 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
11568         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11570 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11572         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11573         match managed version.
11575         * appdomain.c: Bump corlib version.
11576         
11577         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11578         argument.
11580 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11582         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11583         Set public key token to zero-length byte array if assembly is not
11584         strongnamed.
11586 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11588         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11589         writing a vtype array elem.
11591 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11593         * assembly.c (build_assembly_name): return FALSE if length of token is
11594         not 16 (if not "null").
11595         (mono_assembly_name_parse_full): return FALSE if value of version,
11596         culture, token or key is 0.
11597         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11598         specify whether public key and public key token must be set to default
11599         value (zero-length byte array) if not available. Set versioncompat to
11600         SameMachine. If public key is available or the default is set, then
11601         set PublicKey flag.
11602         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11603         is available, use empty byte array as default value. On the 2.0
11604         profile, use default value for public key token if not set.
11605         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11606         profile, use default value for public key if not set. On the 2.0
11607         profile, use default value for public key token if not set.
11608         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11609         default values for public key and public key token.
11611 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11613         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11614         field to keep it in synch with the managed object.
11616         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11617         delegates. Fixes #351520.
11619         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11620         contains defined memory.
11621         
11622         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11624         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11625         
11626         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11627         of the GC data structures.
11629         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11631         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11632         
11633         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11634         barrier.
11635         (mono_array_clone_in_domain): Ditto.
11636         (mono_array_clone_in_domain): Ditto.
11638         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11639         (cache_culture): Use a write barrier.
11641         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11642         (ves_icall_get_property_info): Ditto.
11644         * object.h (MONO_STRUCT_SETREF): New macro.
11646         * class-internals.h (MonoStats): Add some GC statistics.
11648         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11650 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11652         * exception.c (mono_exception_from_name_two_strings):
11653         Break from loop after method is found.
11655 2008-01-04  Dick Porter  <dick@ximian.com>
11657         * process.c (process_module_string_read): Rename variable to
11658         reflect correct usage, after fixing bug 345972.
11660 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11662         * verify.c (mono_type_create_fnptr_from_mono_method): 
11663         created a MonoType function pointer instance to be used during
11664         verification. The verifier releases this memory at end.
11666         * verify.c (mono_method_is_constructor): extracted repeated
11667         checks for constructor into a single class.
11669         * verify.c (do_push_field): use new extracted method
11670         for constructor check.
11672         * verify.c (do_newobj): same.
11674         * verify.c (do_ldftn): renamed to do_load_function_ptr
11675         and make it verify ldvirtftn too.
11677         * verify.c (mono_method_verify: proper verification
11678         of ldvirtftn. release created MonoMethod instances.
11680 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11682         * verify.c (token_bounds_check): added.
11684         * verify.c (do_ldftn): added.
11686         * verify.c (mono_method_verify): proper verificartion of ldftn.
11688 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11690         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11691         than the table row count. It's the resposibility of the caller to
11692         make the bounds check and raise the correct error.
11694         * metadata.c (mono_metadata_decode_row_col): Same.
11696         * loader.c (mono_get_method_from_token): perform bounds check
11697         on token for methoddef table.
11699 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11701         * icall.c
11702         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11703         assert into a negative result, the managed code already coped with
11704         that.
11706         Some folks on Windows reported this error. 
11708 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11710         * appdomain.c: Bump corlib version.
11711         * icall.c:
11712         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11713         CultureInfo.CreateCulture to create CultureInfo for name.
11714         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11715         create CultureInfo for name. Fixes bug #347174.
11717 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11719         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11720         flags.
11722         * verify.c (is_valid_branch_instruction): allow branching to the
11723         first instruction of the protected block.
11725         * verify.c (is_valid_cmp_branch_instruction): same.
11727         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11728         avoid double initialization.
11730         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11731         detect which cases the eval stack should just be copied.
11733         * verify.c (mono_method_verify): check if the eval stack
11734         is empty when entering a protected block.
11736 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11738         * verify.c: added is_clause_in_range, is_clause_inside_range,
11739         is_clause_nested and verify_clause_relationship. They perform
11740         the verifications stated in P1 12.4.2.7.
11742         * verify.c (mono_method_verify): remove some unused variables,
11743         add the new exception clause checks, add instruction border
11744         checks for protected block start/end, improved some error 
11745         messages and fixed a bug in the way invalid instruction access
11746         is detected.
11748 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11750         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11751         from GC 7.0 if available.
11753         * object.c: Remove an unused define.
11754         
11755         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11757         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11759         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11761         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11763         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11764         to take the same arguments as the other make_descr functions.
11766         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11768         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11769         directly.
11771         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11772         mini.c.
11774         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11775         call to boehm-gc.c.
11777         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11779         * null-gc.c (mono_gc_register_root): Fix a warning.
11781         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11783         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11784         (mono_gc_base_init): Call GC_init ().
11786         * null-gc.c: Define mono_gc_register_root () as a no-op.
11788         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11790 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11792         * verify.c: add prototype for merge_stacks at top
11794         * verify.c (do_switch): added.
11796         * verify.c (merge_stacks): on some cases the stack merging
11797         was not happening properly. Unequal stack sizes at merge
11798         points should be invalid.
11800         * verify.c (mono_method_verify): added more debug info on stack state.
11801         verify switch properly.
11803 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11805         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11806         marshal.h.
11808         * boehm-gc.c marshal.c: Include method-builder.h.
11810         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11812         * marshal.c: Remove some code which is now in method-builder.c.
11814 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11816         * method-builder.c: New file, extraction of the method builder functionality 
11817         from marshal.c.
11819         * marshal.c: Move the mb functions into method-builder.c.
11821         * marshal.h marshal.c: Export some mono_mb_... functions.
11823         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11825         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11826         the caller.
11828         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11830         * loader.c (mono_field_from_token): Ditto.      
11832         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11833         type as well.
11834         
11835         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11836         Fixes #342565.
11838         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11839         a helper function for setting it.
11841         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11843         
11844         * assembly.c: Significally simplify code now that referenced assemblies are 
11845         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11847         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11848         #349952.
11850 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11852         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11853         instructions that were target of branches or are at protected block boundaries.
11855         * verify.c (in_same_block): handle filter clauses.
11857         * verify.c (is_valid_branch_instruction): added. checks the target of
11858         instructions br or brtrue/false.
11860         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11861         binary branch instructions such as beq and bge.
11863         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11864         and made it pin the instruction as been part of the exception block.
11866         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11867         of in_same_block.
11869         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11870         of in_same_block.
11872         * verify.c (do_ret): ret from a protected block is unverifiable and
11873         not invalid.
11875         * verify.c (do_static_branch): verify br and br.s instructions.
11877         * verify.c (merge_stacks): add extra param to support detection
11878         of branches in the middle of instructions.
11879         
11880         * verify.c (mono_method_verify): verify branches and exception blocks
11881         that target the middle of instructions. Proper verification of br and br.s.
11883 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11885         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11886         skip_visibility field.
11887         (reflection_methodbuilder_from_dynamic_method): Ditto.
11889         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11890         registrations. Fixes #348193.
11892         * threads.h: Move the internal mono_thread_get_pending_exception () to
11893         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11895 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11897         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11898         icall registration. Fixes #348193.
11900         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11901         for corlib classes into object. Fixes #349621.
11903 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11905         * icall.c (property_accessor_nonpublic): new function to determine
11906         whether an accessor allows a property to be considered non-public.
11907         Returns false for private accessor(s) from parent class, and internal
11908         accessor(s) from parent on 2.0 profile (and higher).
11909         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11910         to determine whether property should be included if NonPublic flag
11911         is set. Fixes bug #349078.
11913 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11915         * verify.c (init_stack_with_value): added.
11917         * verify.c (mono_method_verify): extracted common
11918         code for exception initialization into init_stack_with_value.
11920         * verify.c (mono_method_verify): initialize the exception
11921         for handler clauses as well.
11923         * verify.c (mono_method_verify): fix the exception clause
11924         ordering rules, it should use handler end offset and not
11925         start offset.
11927 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11929         * rawbuffer.c: remove useless warning.
11931 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11933         * threads.h, threads-types.h: move functions to the correct header
11934         (fixes bug#349952).
11936 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11938         * verify.c (mono_method_verify): proper verification
11939         of exception handling clauses ranges and fallthru in
11940         and out of protected blocks.
11942 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11944         * verify.c (mono_method_verify): fixed compilation issue.
11946 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11948         * verify.c (mono_method_verify): a printf slipped in, changed
11949         to use verifier debug macro.
11951 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11953         * verify.c (is_correct_leave): check for filter clauses.
11955         * verify.c (do_filter): added.
11957         * verify.c (mono_method_verify): property verification of leave.
11960 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11962         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11963         Win32 build, until we figure out how to do the proper thing on
11964         Win32.
11966 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11968         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11969         by the previous patch.
11970         
11971         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11972         the assembly resolve handler for refonly assemblies.
11974 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11976         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11977         Make sure only one thread is allowed to commence shutdown, and
11978         don't allow new threads to be started once shutdown is in
11979         progress.
11981 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11983         * verify.c (is_correct_endfilter): added.
11985         * verify.c (is_unverifiable_endfilter): added.
11987         * verify.c (do_endfilter): added.
11989         * verify.c (mono_method_verify): property verification of endfilter
11990         and fixed a corner case or endfinally.
11992 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11994         * verify.h: new flags to support fail fast of unverifiable code and
11995         do non-strict verification. Non-strict verification is required to
11996         have MS runtime compatibility. There are a huge amount of unverifiable
11997         code that it accepts as verifiable. The strict mode verifies the code
11998         as the specs says.
11999         Non-strict mode will be required in cases where code needs to be
12000         accepted as verifiable but fails under strict mode.
12002         * pedump.c: added support to fail fast and non-strict verification.
12004         * verify.c: added support for both fail fast and non-strict verification.
12006 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
12008         * verify.c (is_correct_endfinally): added.
12010         * verify.c (mono_method_verify): property verification of endfinally.
12012 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
12014         * verify.c (in_any_block): check for filter clauses.
12016         * verify.c (is_correct_rethrow): added.
12018         * verify.c (mono_method_verify): property verification of rethrow.
12020         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
12022 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
12024         * verify.c (do_throw): added.
12026         * verify.c (mono_method_verify): property verification of throw
12028 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
12030         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
12031         assemblies. Fixes #346425.
12033 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
12035         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
12036         FieldBuilders.
12038         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
12040         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
12041         prevent asserts when this is called with a token which might not be valid.
12043         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
12044         lookup_dynamic_token_class with valid_token == FALSE.
12046         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
12048         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
12050         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12051         
12052 2007-12-10  Mark Probst  <mark.probst@gmail.com>
12054         * gc.c: Don't delay threadpool thread finalization unless Mono is
12055         shutting down.
12057 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
12059         * threads.c: turn an assert into a non-fatal warning.
12061 2007-12-09  Robert Jordan  <robertj@gmx.net>
12063         * icall.c (GetVirtualMethod): Add missing argument validation.
12065 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12067         * verify.c (do_cast): added.
12069         * verify.c (mono_method_verify): property verification of castclass and isinst.
12072 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12074         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
12076         * verify.c (do_stelem): added.
12078         * verify.c (mono_method_verify): property verification of stelem.X.
12080 2007-12-07  Mark Probst  <mark.probst@gmail.com>
12082         * class.c, class-internals.h: Introduce an environment variable
12083         (MONO_GENERIC_SHARING) through which the extent of generic code
12084         sharing can be controlled (share all classes, share only corlib
12085         classes, or share nothing).
12087         * object.c: Only create runtime generic context for classes for
12088         which sharing is enabled.
12090 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12092         * verify.c (do_ldelem): refactor it to work with ldelem.any.
12094         * verify.c (mono_method_verify): property verification of ldelem.any.
12096 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12098         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
12099         added ldelem.X opcodes.
12101         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
12103         * verify.c: proper verification of ldelem.X 
12105 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
12107         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
12109 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12111         * verify.c (mono_method_verify): null literal requires special handling,
12112         the value pushed on stack need to be flagged as so.
12114         * verify.c (do_ldelema): Verify ldelema properly.
12116 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12118         * verify.c: Verify ldlen properly.
12120 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
12122         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
12123         to the target object's type. Fixes #346160.
12125 2007-12-05  Dick Porter  <dick@ximian.com>
12127         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
12128         Solaris needs the same workaround as BSD-derived systems.  Fixes
12129         bug 323524, patch by Burkhard Linke
12130         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
12132 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
12134         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
12135         handle to use when error dialog is shown; otherwise, update mask
12136         to show no error dialog when an error occurs.
12138 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
12140         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
12142         * class.c (mono_class_get_field_default_value): New helper function to initialize
12143         field->def_type and field->data.
12145 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
12147         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
12148         the general one.
12150         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
12152         * marshal.c: Avoid depending on delegate->method_info being set.
12154         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
12155         
12156         * object.c (mono_delegate_ctor): Set delegate->method.
12158         * object-internals.h (struct _MonoDelegate): Add 'method' field.
12160         * appdomain.c: Bump corlib version.
12162 2007-11-27  Raja R Harinath  <harinath@gmail.com>
12164         * metadata.c (mono_generic_inst_equal_full): Short-circuit
12165         equality check if we're comparing canonicalized MonoGenericInsts.
12167 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
12169         * class.c (generic_array_methods): Call mono_class_setup_methods () before
12170         accessing class->methods.
12172 2007-11-22  Dick Porter  <dick@ximian.com>
12174         * threads.c: Ensure that the synch_cs is set before trying to use
12175         it.
12177 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
12179         * profiler.c: r89126 broke the statistial profiler, unbreak.
12181 2007-11-22  Martin Baulig  <martin@ximian.com>
12183         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
12185         * mono-debug.c
12186         (mono_debug_debugger_version): Bump to 3.
12187         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
12188         -> mono_debugger_class_initialized().
12190         * mono-debug-debugger.c
12191         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
12193         * class.c
12194         (mono_debugger_start_class_init_func): Removed.
12195         (mono_debugger_class_loaded_methods_func): Added.
12196         (mono_class_setup_methods): Call it here.
12198 2007-11-22  Martin Baulig  <martin@ximian.com>
12200         * mono-debug.c
12201         (mono_debug_add_delegate_trampoline): New public method.
12202         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
12204         * mono-debug.h
12205         (MonoSymbolTable): Added `global_data_table'.
12206         (MonoDebuggerTypeKind): Removed.
12208 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
12210         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
12211         these methods.
12213         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12214         
12215 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
12217         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
12219 2007-11-20  Martin Baulig  <martin@ximian.com>
12221         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
12223         * mono-debug-debugger.c
12224         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
12225         (mono_debugger_remove_breakpoint): Likewise.
12226         (mono_debugger_check_breakpoints): Likewise.
12227         (mono_debugger_register_class_init_callback): New public method.
12228         (mono_debugger_remove_class_init_callback): Likewise.
12229         (mono_debugger_add_type): Likewise.
12231         * mono-debug-debugger.h
12232         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
12234 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
12236         * class.c: more interface implementations needed for the
12237         array enumerator (fixes bug #341112).
12239 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
12241         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
12242         fix ParamName of ArgumentNullExceptions.
12244 2007-11-17  Miguel de Icaza  <miguel@novell.com>
12246         * reflection.c (mono_reflection_encode_sighelper): Generate the
12247         modopts and modreqs.   I have a useless test that crashes monodis,
12248         but that shows the code working.
12250 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
12252         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
12253         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
12255 2007-11-15  Dick Porter  <dick@ximian.com>
12257         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
12258         When joining a thread, it's the thread that's calling Join that
12259         gets WaitSleepJoin state not the target.  Fixes the standalone
12260         test case in bug 334740, and hopefully the whole bug too.
12262 2007-11-15  Dick Porter  <dick@ximian.com>
12264         * process.c: Read file version info from the files pointed at by
12265         process modules, not the current process.  Fixes bug 315969.
12267         Use windows typedef names in some places to fix warnings on the
12268         windows build.
12270 2007-11-15  Mark Probst  <mark.probst@gmail.com>
12272         * image.c, metadata-internals.h: Added a generic_class_cache hash
12273         to MonoImage for looking up generic classes when sharing generics.
12275 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
12277         * sgen-gc.c: warning cleanups.
12279 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
12281         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
12282         inherited properties.
12284 2007-11-14  Mark Probst  <mark.probst@gmail.com>
12286         * object.c, class-internals.h: Added more information to the
12287         runtime generic context.
12289 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
12291         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
12292         instead of just the target method. Generalize the abstract method handling to
12293         handle any non-static method.
12295         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12296         mono_marshal_get_delegate_invoke () signature change.
12298 2007-11-13  Mark Probst  <mark.probst@gmail.com>
12300         * class.c, class-internals.h: Made
12301         mono_type_get_basic_type_from_generic () public.  Fixed member
12302         access check for shared generics.
12304         * loader.c: Don't insert field into field cache if it's part of a
12305         non-inflated generic class.
12307         * domain.c, domain-internals.h: The generic sharing context is now
12308         part of the jit info data structure.  Added two accessor
12309         functions.
12311 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
12313         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
12314         the array Get/Set/Address methods, since the JIT inlines them.
12316         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
12318         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
12319         (mono_image_init): Initialize runtime_invoke_direct_cache.      
12321         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12322         mono_marshal_get_delegate_invoke signature change.
12324         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
12325         an additional argument. Add support for invoking abstract methods.
12327         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
12329         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
12331 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12333         * class.c: Do field layout for open generic classes as well.
12335 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12337         * gc.c, gc-internal.h: Don't finalize threadpool threads with
12338         other objects, because the threadpool is still around.  Put them
12339         in a list instead and after finalizing all other objects in the
12340         root domain shut down the thread pool and then finalize the
12341         threads.  Fixes bug #337383.
12343         * threads.c, thread-types.h: New mono_thread_create_internal()
12344         function for marking a thread with the threadpool flag before it
12345         started.  Set synch_cs to NULL after freeing it.
12347         * threadpool.c: Mark threadpool threads before they start.
12349 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
12351         * reflection.h, reflection.c: don't export random functions
12352         and lazy load dbnull and missing objects.
12354 2007-11-07  Jonathan Chambers <joncham@gmail.com>
12356         * class.c: Initialize COM types if COM interfaces
12357         are present (not just COM classes).
12358         
12359         Code is contributed under MIT/X11 license.
12361 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12362         * reflection.c:
12363         create_dynamic_mono_image: hook module profiler events (dynamic case).
12364         mono_image_basic_init: hook assembly profiler events (dynamic case).
12366 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12367         * profiler.c:
12368         simple_appdomain_unload: completely terminate the profiler
12369         instead of only processing the statistical samples.
12370         simple_shutdown: make sure this is really called exactly once,
12371         even in multithreaded applications, and always listen to
12372         appdomain events.
12373         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
12374         here, the "[un]load" functions will do it.
12375         Fixes bugs #333791 and #325261.
12377 2007-11-07  Geoff Norton  <gnorton@novell.com>
12379         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
12380         rather than depend on __APPLE__.
12382 2007-11-07  Mark Probst  <mark.probst@gmail.com>
12384         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
12386 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
12388         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
12389         UTF16 MonoString. Fix the crash from bug #335488
12391 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
12393         * marshal.c: Correct (for non-Win32 OS) length != size in 
12394         mono_string_from_bstr. Fix #339530.
12396 2007-11-06  Geoff Norton  <gnorton@novell.com>
12398         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
12399         to succeed
12401 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
12403         * process.c: Added run-time GetProcessId API detection for Windows.
12405 2007-11-04  Miguel de Icaza  <miguel@novell.com>
12407         * reflection.c  (mono_param_get_objects): If a parameter has the
12408         attribute [System.Runtime.InteropServices.Optional] we should
12409         set the DefaultValue of the ParameterInfo to be
12410         System.Reflection.Missing instead of DBNull.
12412         See bug #339013.
12414         (mono_get_reflection_missing_object): New method,
12415         returns the System.Reflection.Missing.Value singleton instance.
12417 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12419         * culture-info-table.h : regenerated.
12421 2007-11-02  Jonathan Chambers <joncham@gmail.com>
12423         * icall.c: Use GetEnvironmentStrings on windows
12424         so we are using the same environment block as 
12425         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
12426         #333740.
12427         
12428         Code is contributed under MIT/X11 license.
12430 2007-10-31  Martin Baulig  <martin@ximian.com>
12432         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
12434         * mono-debug-debugger.h
12435         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
12437 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
12439         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
12440         classes.
12442 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
12444         * culture-info-table.h : regenerated.
12446 2007-10-30  Robert Jordan  <robertj@gmx.net>
12448         * icall-def.h, icall.c:
12449         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
12451         Code is contributed under MIT/X11 license.
12453 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12455         * class.c (mono_class_setup_vtable): Find the inflated methods in the
12456         inflated class instead of inflating them again.
12457         
12458         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
12459         dynamic case.
12461         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
12462         Call setup_supertypes () after klass->parent is set.
12463         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
12465         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
12466         for inflated instances of not yet created dynamic generic classes.
12467         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
12468         times from inflated_method.
12469         (methodbuilder_to_mono_method): Ditto.
12471 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
12473         * gc.c: code cleanup and removed old untested option of not creating the
12474         finalizer thread.
12476 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12478         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
12479         creating a jump trampoline for dynamic methods.
12481 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
12483         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
12484         generic TypeBuilders when called from another method of the same type (bug #335131).
12487 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
12489         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
12490         doesn't seem to work perfectly.
12491         
12492         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
12493         called multiple times.
12494         (methodbuilder_to_mono_method): Ditto.
12495         (resolve_object): Inflate FieldBuilder's.
12497 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12499         * string-icalls.c, string-icalls.h, appdomain.c: patch from
12500         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
12501         RemoveEmptyEntries in the string.Split implementation (bug #322375).
12503 2007-10-26  Dick Porter  <dick@ximian.com>
12505         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
12506         Thread initialisation changes
12508 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
12510         * verify.c: fix compatibility check between arrays and System.Array
12512 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
12514         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
12515         too. Fixes #336999.
12517 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12519         * object.c (mono_value_box): Use typed allocation here.
12521 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12523         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
12524         trampoline instead of compiling the method right away.
12526         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
12528 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
12530         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
12531         related fields for dynamic classes. Fixes #334493.
12533 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
12535         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
12536         
12537         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
12539         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
12540         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
12542         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
12544         * reflection.c (create_generic_typespec): Initialize klass->generic_container
12545         if needed.
12546         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
12548 2007-10-18  Jonathan Chambers <joncham@gmail.com>
12550         * marshal.c: Use correct key when removing item
12551         from ccw_hash.
12552         
12553         Code is contributed under MIT/X11 license.
12555 2007-10-17  William Holmes  <billholmes54@gmail.com>
12557         *marshal.c: Adding a case to marshal booleans to U1
12559         Code is contributed under MIT/X11 license.
12561 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
12563         * class.c (mono_class_from_name): Search the modules compromising dynamic
12564         assemblies. Fixes #331601.
12566 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
12568         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12569         exception if the type name contains an assembly component. Fixes #334203.
12571         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12572         modules inside dynamic assemblies. Fixes #334200.
12573         
12574         * reflection.c: Set image->public_key and image->public_key_length;
12576         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12577         fields.
12579         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12580         
12581 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12583         * metadata.c: Implemented correct comparing of generic classes.
12584         An inflated generic class can be equal to a non-inflated one if it
12585         is inflated with generic type variables as type arguments.  Fixes
12586         bug #333798.
12588 2007-10-15  Dick Porter  <dick@ximian.com>
12590         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12591         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12592         81646.
12594         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12595         instead of a monitor lock.  This means that monitor_try_enter and
12596         co can set the thread state safely.
12597         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12598         thread_interrupt_requested, so interrupt actually works.
12600         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12601         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12602         state accessor function
12604 2007-10-15  Martin Baulig  <martin@ximian.com>
12606         * mono-debug.h
12607         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12608         the debugger with the current runtime.
12610 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12612         * object.c, object-internals.h: added the ability to set a single
12613         trampoline for all the slots in a vtable.
12615 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12617         * marshal.c: deal with a possible race condition during multicast
12618         delegate invocation.
12620 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12622         * class.c: ensure value type methods don't have the synchronized
12623         flag set.
12625 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12627         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12628         breaks the build.
12630 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12632         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12633         to take an options parameter so that empty entries can be removed during
12634         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12636 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12638         * marshal.c: make sure we don't store the signature from a dynamic
12639         method into the runtime invoke cache (bug #327189).
12641 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12643         * marshal.c: make sure the wrapper methods are properly initialized.
12645 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12647         * metadata.c, metadata-internals.h: Generalized
12648         mono_type_stack_size() to mono_type_stack_size_internal() which
12649         takes an additional argument specifying whether it allows open
12650         types.
12652 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12654         * verify.c (do_invoke_method): handle typedbyref params
12655         correctly and check for unverifiable return values.
12657         * verify.c (do_newobj): fix a warning.
12659 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12661         * verify.c: don't tread typedbyref as allways unverifable,
12662         so uses, like (ld/st)loc.0 are valid. verify for the cases
12663         that it matters, like boxing related operations.
12665 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12667         * verify.c: add verification of the newobj opcode. verification
12668         of delegate instantation still missing due ldftn and virldftn not
12669         pushing the function type on stack
12671 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12673         * class-internals.h: Runtime generic context data structure
12674         definition.
12676         * object.c: Initialization of runtime generic context at runtime
12677         vtable creation time.
12679 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12680         * class.c (mono_class_create_from_typedef,
12681         mono_class_from_generic_parameter, mono_ptr_class_get,
12682         mono_fnptr_class_get, mono_bounded_array_class_get)
12683         * domain.c (mono_domain_create, mono_domain_free)
12684         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12685         * image.c (do_mono_image_load, mono_image_close):
12686         Hooked up load-unload profiler events.
12688 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12690         * domain.c: track statistics about the actual amount of native code
12691         allocated.
12693 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12695         * class.c: the valuetype enumerators don't have the additional
12696         supertypes interfaces.
12698 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12700         * class.c: need more interfaces setup for the IEnumerator<T>
12701         object created for arrays (tests/ienumerator-interfaces.2.cs).
12703 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12705         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12707 2007-10-05  Alp Toker  <alp@atoker.com>
12709         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12710         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12711         #315863.
12713 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12715         * verify.c (verify_type_compatibility_full): verification of
12716         compatibility improved, validates correctly non-strict checks between
12717         native int and I4 types different than (unsigned)int32.
12719         * verify.c (do_store_indirect): added, do all verification of
12720         ldind.X opcodes. 
12722         * verify.c (get_load_indirect_mono_type): renamed to
12723         get_indirect_op_mono_type, as it now returns the MonoType for 
12724         ldind.X and stind.X opcodes.
12726 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12728         * reflection.c: Fix the encoding of generic type definition for
12729         TypeBuilders.
12731         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12732         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12733         be made. Typespec check is done prior to typeref cache lookup.
12735         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12736         mono_image_typedef_or_ref_full.
12738         * reflection.c (encode_generic_class): encode the generic class
12739         directly instead of calling encode_type.
12741         * reflection.c (encode_type): encode the generic type definition
12742         MonoClass as a generic instantiation.
12744         * reflection.c (create_typespec): cache typespec tokens in
12745         the assembly->typespec cache. Don't create typespec for a generic
12746         instance MonoClass. Create typespec for the generic type defintion.
12748         * reflection.c (create_generic_typespec): encode the generic
12749         class directly instead of calling encode_type.
12751         * reflection.c (mono_image_create_token): encode the generic
12752         type definition not using a typespec for MonoType instances.
12755 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12757         Fix #328812
12758         * class.c (mono_image_init_name_cache): Don't return nested
12759         'protected internal' classes.
12760         (mono_class_from_name_case): Likewise.
12762 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12764         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12765           common function used by both DefaultConfig in System.dll and
12766           InternalConfigurationHost in System.Configuration.dll.
12768 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12770         * class.c: automatically add to vectors only a few essential explicit
12771         generic interfaces. The rest of the interfaces that arrays should
12772         provide are currently implicitly added (but still not lazily, see the
12773         design in the discussion of bug#325495 for the details of what is
12774         needed for that). Additionally, implicit interfaces are assigned the
12775         same vtable slot as the explicit interfaces (as they are compatible):
12776         this enables huge memory savings since we don't need to instantiate
12777         as many memthods and as large vtables anymore. Also, Since
12778         GetEnumerator<T> returns an instance of a type that is required to
12779         support a similarly large set of interfaces as arrays, we add
12780         implicit interfaces and interface offset sharing support to those
12781         types, too. This change adds all the required interfaces so that
12782         the anonarray.cs test case in the bug report works (we don't add
12783         all the interfaces to arrays of arrays 3-level deep and more because
12784         of the memory requirements explained in the bug and since they are much
12785         less common: the lazy-loading support will enabled them to work, too).
12787 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12789         * verify.c (merge_stacks): major clean up, all type compatibility
12790         checks are done by verify_type_compatibility. This fix my earlier lack
12791         of understanding of the CLR type system and merge_stacks no longer looks
12792         scary.
12794         * verify.c: fixed some bad spelling.
12796 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12798         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12799         a given stack slock.
12800         
12801         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12802         verify_type_compatibility_full. This removed a near indentical function and fixed
12803         handling of Int32 and IntPtr across all opcodes.
12805 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12807         * class.c: only vectors have the additional generic interfaces.
12809 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12811         * mono-config.c: Use g_strcasecmp instead of
12812         strcasecmp like everywhere else to fix
12813         compilation with MSVC.
12814         
12815         Code is contributed under MIT/X11 license.
12817 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12819         * object.c, object-internals.h: refactored the IMT code to enable
12820         building a single slot at a time and lazily creating the IMT trampolines
12821         and thunks.
12823 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12825         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12827         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12828         Fixes #328501.
12829         
12830 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12832         * loader.c (method_from_methodspec): Rearrange to avoid
12833         un-necessary exposition.  Don't assert out if the method's
12834         declaring type is a generic type definition.
12836 2007-09-28  Martin Baulig  <martin@ximian.com>
12838         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12840 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12842         * class-internals.h: optimize field layout of MonoClass to
12843         requires less cachelines at runtime and save a few bytes on 64 bit
12844         systems.
12846 2007-09-28  Jb Evain  <jbevain@novell.com>
12848         * reflection.c: when encoding type names in custom attributes,
12849         if the type is a closed generic type, its generic arguments
12850         have to be serialized as AssemblyQualifiedName, so that when
12851         they are deserialized, it's possible to re-create them properly.
12852         Fixes #329450.
12855 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12857         * object.c, class-internals.h: added delegate-creation counter.
12859 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12861         * class.c: cleanup of the code that synthetizes interfaces for
12862         arrays in 2.0: saves quit a bit of corlib mempool memory.
12863         Code to fix bug #325495 ifdeffed out for now until the issues
12864         with memory usage and O(n^2) behaviour are fixed.
12866 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12868         * marshal.c: when possible, do not duplicate the name of the methods
12869         in the method builder and in the generated MonoMethod.
12871 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12872         * verify.c: added support for type checking ldind_* opcodes.
12874 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12876         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12877         which is used to distinguish the fully open instantiation of a TypeBuilder
12878         with the rest. This temporary hack is required to restore the property that
12879         the fully open instantiation is the same type of the generic type definition.
12881         * class-internals.h (mono_generic_class_is_generic_type_definition):
12882         new function as part of the internal API.
12884         * class.c (inflate_generic_type): return NULL when the generic inst is
12885         fully open. The fully open generic type is now the same as the generic type
12886         definition for non TypeBuilder types.
12888         * class.c (mono_generic_class_get_class): removed assert since it is
12889         no longer valid, gklass->cached_class can point to the generic type definition.
12891         * class.c (mono_generic_class_is_generic_type_definition): new.
12893         * metadata.c (mono_generic_class_hash): added is_tb_open field
12894         to the hash calculation.
12896         * metadata.c (free_generic_class): if the generic class is associated
12897         with the generic type definition, its field will come from the mempool and
12898         must not be freed.
12900         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12901         new, this function identifies the corner case of a TypeBuilder fully open
12902         instantiation.
12904         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12905         for lookup. Set gclass->cached_class to be the container class in case of
12906         the fully open instantiation of non TypeBuilder types.
12908         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12909         to compare generic classes.
12911         * reflection.c (method_encode_methodspec): remove assert that
12912         no longer is valid.
12914         * reflection.c (mono_reflection_generic_class_initialize): add
12915         an aditional assert to ensure the proper type is used.
12917 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12919         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12920         to enjoy it.
12922 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12924         * verify.c (push_arg): Fixed support for ldarga
12925         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12926         MonoType used as first arg in case of instance calls.
12928 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12930         * verify.c: Support for verifying VAR and MVAR types, 
12932 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12934         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12935         accessors correctly.
12937 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12939         * threads.c: support OSX and other systems in
12940         mono_thread_get_stack_bounds (bug #328026).
12942 2007-09-25  Martin Baulig  <martin@ximian.com>
12944         * mono-debug.h
12945         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12947 2007-09-24  Martin Baulig  <martin@ximian.com>
12949         * mono-debug.h
12950         (MonoDebugClassEntry): Moved the definition of this struct into
12951         mono-debug.c to make it private.
12953         * mono-debug.c
12954         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12955         type table per symbol file, we don't need to store the symfile id
12956         any longer.
12958 2007-09-24  Martin Baulig  <martin@ximian.com>
12960         Create one type table per symbol file, since a `MonoClass *' gets
12961         invalid when its image is unloaded.
12963         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12964         (MonoDebugHandle): Added `type_table'.
12966 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12968         * mempool.c, mempool.h: added mono_mempool_new_size () API
12969         to be able to specify a smaller initial size for the pool.
12970         Adjusted the code to slowly increase pool size before using
12971         the previous default size.
12972         * image.c: use a small initial size for image mempools.
12974 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12976         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12977         Fixes ##320990.
12979         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12980         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12982 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12984         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12985         free. Fixes #327438.
12987 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12989         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12990         generic instantiations, etc.
12991         <MONO_TYPE_ARRAY>: Likewise.
12993 2007-09-21  Martin Baulig  <martin@ximian.com>
12995         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12996         these structs were never defined.
12997         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12999 2007-09-21  Martin Baulig  <martin@ximian.com>
13001         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
13003 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
13005         * image.c: removed the guid hash tables: we can get the same info
13006         without the additional memory usage hit (partially fixes also bug #327052).
13008 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13010         * profiler.h, profiler-private.h, profiler.c: add a new profiler
13011         event to handle unloading methods. After the event is called, the
13012         corresponding MonoMethod* must be considered invalid.
13013         * loader.c (mono_free_method): call the new mono_profiler_method_free
13014         event.
13016 2007-09-20  Mark Probst  <mark.probst@gmail.com>
13018         * domain-internals.h: New flag in MonoJitInfo which marks shared
13019         generic methods.  New hash table (shared_generics_hash) in
13020         MonoDomain to keep track of shared generic methods.  Prototypes
13021         for functions to register and lookup shared generic methods.
13023         * domain.c: Support for registering and looking up shared generic
13024         methods via a hash table (shared_generics_hash) in MonoDomain.
13026         * class-internals.h: New exception to signal failure of shared
13027         compilation of a generic method.  New counters for generics
13028         sharing in MonoStats.
13030 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
13032         * image.c, metadata-internals.h: don't keep a file descriptor open
13033         for loaded assemblies (bug#325988).
13035 2007-09-19  Raja R Harinath  <rharinath@novell.com>
13037         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
13038         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
13039         use the corresponding datatypes.
13040         (type_in_image): Update to changes.
13041         (CleanForImageUserData): Simplify.
13042         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
13043         Avoid quadratic behaviour in handling the "stolen" list by
13044         separating the filter predicate out, and by prepending the stolen
13045         items rather than appending them.
13046         (steal_ginst_in_image): Likewise.
13047         (mono_metadata_clean_for_image): Update to changes.
13049 2007-09-19  Martin Baulig  <martin@ximian.com>
13051         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
13053 2007-09-19  Martin Baulig  <martin@ximian.com>
13055         * mono-debug.c (mono_debug_cleanup): Don't call
13056         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
13058 2007-09-19  Raja R Harinath  <harinath@gmail.com>
13060         Fix crash on 'make run-test' in mcs/errors
13061         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
13062         Avoid more potential allocations in mono_class_from_mono_type.
13063         (ginst_in_image): Update to changes.
13064         (gclass_in_image): Rearrange slightly.
13066 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13068         * class.c (mono_class_init): Move the code that sets up class->methods to 
13069         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
13071         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
13072         canonical instance of an inflated generic signature.
13073         (mono_type_create_from_typespec): Remove an invalid free.
13075         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
13077 2007-09-18  Marek Habersack  <mhabersack@novell.com>
13079         * domain-internals.h: added a declaration of the
13080         mono_assembly_load_full_nosearch internal function.
13082         * assembly.c (mono_assembly_load_with_partial_name): use
13083         mono_try_assembly_resolve return value properly.
13084         (mono_assembly_load_full_nosearch): copied the function body from
13085         mono_assembly_load_full, without the code to invoke assembly
13086         search hooks.
13087         (mono_assembly_load_full): calls the above new function and if the
13088         assembly is not resolved, invokes the search hooks.
13090         * appdomain.c (mono_runtime_init): restore the global postload
13091         assembly search handlers.
13093 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13095         * class.c (mono_class_init): Make sure class->methods and class->properties
13096         are never NULL in the generics case.
13098         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
13100 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
13102         * metadata.c (free_generic_class): Disable some code to fix the build.
13104         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
13106         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
13107         from the image mempool.
13109         * metadata.c (free_generic_class): Free more data from the inflated class.
13111         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
13113         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
13114         mempool.
13115         (mono_type_create_from_typespec): Ditto.
13117         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
13118         MonoImage to the caller.
13119         (mono_init_internal): Save the opened image in a global variable.
13120         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
13122         * reflection.c (resolve_object): Fix a leak.
13124         * metadata.c: Fix the freeing of data in the generics caches.
13125         
13126         * metadata.c (free_generic_inst): Comment this out to fix the build.
13127         (free_generic_class): Ditto.
13129         * metadata.c: Free cached generic methods, instantinations and classes when
13130         they are removed from the caches.
13131         (mono_metadata_free_type): Free the type itself.
13133         * class.c: Free the result of mono_class_inflate_generic_type () in a few
13134         places.
13136 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13138         * boehm-gc.c: restrict managed allocs to __thread supporting
13139         architectures.
13141 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
13143         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
13144         (mono_generic_class_get_class): Fix a leak.
13146         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
13147         mono_metadata_free_type ().
13148         (mono_metadata_inflate_generic_inst): Fix a leak.
13150 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13152         * mono-debug.c (free_header_data): Fix a leak missed earlier.
13154         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
13155         mempool.
13157         * mono-debug.c (mono_debug_close_image): Fix call to 
13158         g_hash_table_remove ().
13160 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13162         * icall-def.h: redirect all the string ctor to the managed
13163         CreateString () methods.
13164         * string-icalls.c, string-icalls.h: removed dead code for string
13165         ctors and icalls.
13167 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13169         * mono-debug.c: Fix memory leaks.
13171 2007-09-14  Jonathan Chambers <joncham@gmail.com>
13173         * threads-types.h: Implement mono_hazard_pointer_set and 
13174         mono_hazard_pointer_clear macros using do/while(0) to fix
13175         compilation with MSVC.
13176         
13177         Code is contributed under MIT/X11 license.
13179 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13181         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
13182         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
13184 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13186         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
13187         icalls.
13189 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13191         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
13192         managed-code allocated as well.
13194 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13196         * class.c (mono_class_is_assignable_from): Add support for generic variance.
13198 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13200         * boehm-gc.c: fixed the build after the AOT changes.
13202 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13204         * wrapper-types.h: Add an ALLOC wrapper type.
13206         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
13207         reference managed allocator methods.
13209 2007-09-12  Marek Safar  <marek.safar@gmail.com>
13211         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
13212         of Type array and not MonoType, a fix suggested by Hari.
13213         
13214 2007-09-12  Jonathan Chambers <joncham@gmail.com>
13216         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
13217         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
13218         
13219         Code is contributed under MIT/X11 license.
13221 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13223         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
13225 2007-09-12  Marek Habersack  <mhabersack@novell.com>
13227         * image.c (do_mono_image_open): if assembly file fails to open and
13228         MONO_IOMAP is in effect, try to find the path in a
13229         case-insensitive way.
13231         * appdomain.c (mono_runtime_init): do not install postload hooks -
13232         tests show that MS.NET doesn't use anything of that sort to
13233         trigger the AppDomain.AssemblyResolve event.
13234         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
13235         made non-static.
13236         (mono_runtime_init): init portability helpers here.
13238         * assembly.c (mono_assembly_load_with_partial_name): if other   
13239         attempts fail, trigger the AppDomain.AssemblyResolve event handler
13240         to resolve the assembly.
13242         * domain-internals.h: added mono_try_assembly_resolve and marked
13243         it as internal.
13245 2007-09-11  Jb Evain  <jbevain@novell.com>
13247         * object-internals.h (MonoReflectionDynamicMethod): add
13248         a `MonoReflectionType *owner` field. The owner is used
13249         * reflection.c:
13250         (mono_reflection_create_dynamic_method): use the owner of the dynamic
13251         method as the class declaring the dynamic method.
13252         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
13253         dynamic method to the declaring type of the methodbuilder.
13255 2007-09-11  Mark Probst  <mark.probst@gmail.com>
13257         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
13258         rules for calling methods via reflection.
13260 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
13262         * reflection.c (resolve_object): Add support for MonoGenericClass. 
13263         Inflate MonoType's.
13265 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
13267         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
13268         provide a managed method that does fast allocations without needing
13269         a managed->unmanaged transition. Boehm GC implementation currently
13270         enabled for ptrfree objects on sane architectures.
13272 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13274         * marshal.c, marshal.h: exported a couple of useful functions and
13275         added mono_mb_get_label () to easily handle backward branches.
13277 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
13279         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
13281 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13283         * loader.c (find_method): Fixed the regression introduced while
13284         fixing bug #81466.
13286 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
13288         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
13289         well.
13290         
13291         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
13292         icall.c reflection.c: Pass a MonoGenericContext argument to 
13293         mono_lookup_dynamic_token ().
13295         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
13296         #82744.
13297         
13298 2007-09-09  Robert Jordan  <robertj@gmx.net>
13300         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
13301         for generic methods.
13303         * object.c (mono_object_get_virtual_method): Handle generic methods.
13304         Fixes bug #78882.
13306         Code is contributed under MIT/X11 license.
13308 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13310         * image.c: fix locking in mono_image_load_file_for_image ().
13312 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
13314         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
13315         used only as a cache: added an icall to fill it.
13317 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
13319         * reflection.h: exposed mono_reflection_free_type_info
13320         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
13321         since mono_reflection_bind_generic_parameters makes a copy of it.
13322         * reflection.c (free_type_info): subinfos should be freed.
13323         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
13324         made non static.
13325         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
13326         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
13327         this fixes #82695 and #81726.
13328    
13330 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
13332         * process.h, process.c:  added support for user profile/info in
13333           ProcessStartInfo. For now only Windows works.
13335 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13337         * metadata.c: consider the generic arguments when comparing
13338         signatures (bug #82614).
13340 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13342         * cil-coff.h, image.c: updated assembly loader to cope with the
13343         PE32+ 64 bit file format.
13345 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13347         * assembly.c, class.c, domain.c, loader.c: remove useless
13348         inclusion of cil-coff.h.
13350 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
13352         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
13353         if interface is marked with CoClassAttribute. 
13354    
13355         Code is contributed under MIT/X11 license.
13357 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13359         * sgen-gc.c: ensure no object from the to space is copied again or finalized
13360         if it's seen twice in major collections.
13362 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13364         * sgen-gc.c: big objects are not copied to the gray area, but they
13365         need to be considered for scanning, too, if they are brought alive
13366         by an object ready for finalizations or a survived one.
13368 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13370         * sgen-gc.c: properly account the number of disappearing links when
13371         they are nullified.
13373 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13375         * sgen-gc.c: share the code to scan the registered roots between the
13376         different types of collections.
13378 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13380         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
13382 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13384         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
13385         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
13387 2007-08-28  Mark Probst  <mark.probst@gmail.com>
13389         * security-manager.c (mono_security_manager_get_methods):
13390         LinkDemandSecurityException now has 2 arguments instead of 3.
13392 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
13394         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
13395         platforms which need it.
13397 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13399         * sgen-gc.c: unregister thread data structures with a pthread_key_t
13400         dtor.
13402 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13404         * threads.c: free the thread static data on thread exit.
13406 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
13408         * class.c: walk the hierarchy to find the generic definition for
13409         a class (fixes runtime part of bug #82498).
13411 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13413         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
13414         ...
13416         * image.c (mono_image_close): Here. Hopefully fixes #82510.
13418 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13420         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
13422 2007-08-24  Robert Jordan  <robertj@gmx.net>
13424         * appdomain.c: don't perform the ':'->';' substitution on Win32.
13426 2007-08-24  Jb Evain  <jbevain@novell.com>
13428         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
13429         for byref types.
13431 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13433         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
13434         #82286.
13436 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13438         * assembly.c: Fix a warning.
13439         
13440 2007-08-23  Marek Habersack  <mhabersack@novell.com>
13442         * appdomain.c: parse the <runtime> section looking for the probing
13443         element with the 'privatePath' attribute, which sets additional
13444         directories in which the runtime should look for assemblies.
13446 2007-08-23  Robert Jordan  <robertj@gmx.net>
13448         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
13449         Fixes #82499.
13451 2007-08-23  Martin Baulig  <martin@ximian.com>
13453         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
13454         _mono_debug_init_corlib() and remove it from the header file.
13456 2007-08-23  Martin Baulig  <martin@ximian.com>
13458         * mono-debug-debugger.c
13459         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
13460         don't notify the debugger about it.
13462         * mono-debug-debugger.h
13463         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
13465 2007-08-23  Robert Jordan  <robertj@gmx.net>
13467         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
13468         Code is contributed under MIT/X11 license.
13470 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13472         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
13474 2007-08-22  Martin Baulig  <martin@ximian.com>
13476         * mono-debug.c: Store debugging info on a per-domain basis and
13477         free it on domain unload.  Add support for unloading symbol files.
13479         * mono-debug.h
13480         (MonoDebugList): New typedef.
13481         (MonoSymbolTable):
13482         - add `data_tables and `type_table'.
13483         - replace 'symbol_files' and `num_symbol_files' with a
13484           `MonoDebugList *'.
13485         (mono_debug_data_table): Removed.
13486         (mono_debug_list_add): New public function.
13487         (mono_debug_list_remove): New public function.
13488         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
13489         (mono_debug_init_2_memory): Renamed into
13490         mono_debug_open_image_from_memory().
13491         (mono_debug_close_image): New public function.
13492         (mono_debug_domain_create): Likewise.
13493         (mono_debug_domain_unload): Likewise.
13494         (MONO_DEBUGGER_VERSION): Bump to 60.
13496         * mono-debug-debugger.h
13497         (MonoDebuggerEvent):
13498         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
13499         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
13500         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
13501         - rename `THREAD_CREATED' and `THREAD_EXITED' into
13502           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
13503         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
13504           meaning.
13505         (mono_debugger_add_symbol_file): Removed.
13506         (mono_debugger_add_type): Removed.
13507         (mono_debugger_lookup_type): Removed.
13508         (mono_debugger_lookup_assembly): Removed.
13510         * domain.c
13511         (mono_domain_create): Call mono_debug_domain_create().
13512         (mono_init_internal): Call mono_debug_init_corlib().
13514         * assembly.c
13515         (mono_assembly_close): Call mono_debug_close_image().
13517 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
13519         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
13520         mmap call.
13522 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13524         * sgen-gc.c: ensure section->pin_queue_end is initialized
13525         correctly when non pinning objects in the section have been found.
13527 2007-08-22  Marek Habersack  <mhabersack@novell.com>
13529         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
13530         containing a list of directories separated by ':'. MSDN docs say
13531         the directories should be separated with ';'. Part of a bugfix for
13532         bug #81446
13534 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
13536         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
13537         it should MonoType and not MonoClass.
13539 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
13541         * culture-info-table.h : regenerated.
13543 2007-08-20  William Holmes  <billholmes54@gmail.com>
13545         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
13546          to call ReplaceFile Kernel32 on windows or in io-layer.
13547         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
13548         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
13549          as an internal call.
13551         Code is contributed under MIT/X11 license.
13553 2007-08-20  Jb Evain  <jbevain@novell.com>
13555         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
13556         and MONO_EXCEPTION_FIELD_ACCESS.
13558         * debug-helpers.[c|h]: new mono_field_full_name function.
13560 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13562         * class.c: Removed class_security_level() and moved it to
13563         security-core-clr.c.
13565         * security-core-clr.c, security-core-clr.h: class_security_level()
13566         is now public and renamed to mono_security_core_clr_class_level().
13567         It also looks for security attributes in the classes a class is
13568         nested in.
13570 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13572         * security-core-clr.c, security-core-clr.h: CoreCLR security
13573         utility functions.
13575         * Makefile.am: Added security-core-clr.[ch].
13577         * security-manager.c, security-manager.h: Functions and enum for
13578         setting and getting the security mode.
13580         * class.c: CoreCLR security checks.
13582 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13584         * icall-def.h, process.c, process.h: implemented icall to get
13585         user/system processor times.
13587 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13589         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13590         reader-lock-free jit_info_table.
13592 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13594         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13596         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13598         * object-internals.h (MonoException): Add missing _data member.
13600 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13602         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13603         checking that only methods with matching qname or fqname are picked
13604         from implemented interfaces.
13606 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13608         * verify.c (do_newarr):added, do type verification of
13609         newarr ops, push the right value on the eval stack.
13610         * verify.c (mono_method_verify): use do_newarr
13613 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13615         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13616         factored the common code into get_boxable_mono_type, which
13617         is now using mono_type_get_full, this fixed byref related tests.
13619 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13621         * class.c: added mono_type_get_full, this function has the same
13622         behavior of mono_class_get_full but the returned MonoType has
13623         all metadata of the associated token in case of a typespec token.
13624         * class.c: added mono_type_retrieve_from_typespec, used by 
13625         mono_type_get_full to retrieve the token type.
13626         * class.c (mono_class_create_from_typespec): changed to use
13627         mono_type_retrieve_from_typespec.
13628         * class.c (mono_ldtoken): changed to use mono_type_get_full
13629         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13630         * class-internals.h: exported mono_type_get_full for internal use.
13632 2007-08-16  Jb Evain  <jbevain@novell.com>
13634         * domain.c (supported_runtimes): add entry for
13635         the 'moonlight' runtime version.
13637 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13639         * verify.c (mono_method_verify): small typo sliped in.  
13641 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13643         * verify.c (do_unbox_value): added, do type verification of
13644         unboxing ops
13645         * verify.c (mono_method_verify): use do_unbox_value
13648 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13650         * verify.c (dump_stack_value): fixed typo, was printing string
13651         instead of object on stack.
13652         * verify.c (do_box_value): moved the byref check up as it leads
13653         to invalid code and should be done earlier.
13654         * verify.c: improved error messages for and ldobj
13656 2007-08-15  William Holmes  <billholmes54@gmail.com>
13658         * marshal.c (emit_marshal_custom): Omit the call to 
13659           marshal_native_to_managed when calling native to managed 
13660           and the argument is specified as an out argument.
13662         Code is contributed under MIT/X11 license.
13664 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13666         * verify.c: fixed the type checks for generics, function pointers and vectors.
13667         Added type verification for ldobj and ldtoken. The verifier
13668         would segfault if header or signature of a method contained references
13669         to non-existant types.
13671 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13673         * marshal.c (cominterop_get_ccw): Patch from
13674         Bill Holmes to no walk up interface hierarchy. 
13675         All parent methods should be present in the interface for COM.
13676    
13677         Code is contributed under MIT/X11 license.
13679 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13681         * marshal.c (emit_marshal_com_interface): Patch from
13682         Bill Holmes to handle COM Interfaces as return values
13683         for native->managed calls.
13684    
13685         Code is contributed under MIT/X11 license.
13687 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13689         * marshal.c (cominterop_get_idispatch_for_object): Implement
13690         for runtime callable wrappers.
13691    
13692         Code is contributed under MIT/X11 license.
13694 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13696         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13697         so 2.0 types are accessible
13700 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13702         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13703         once we load mscorlib.   Due to the order in which we initialize,
13704         the mono_assembly_load_full routine that loads mscorlib did not
13705         load friends.   We now load it once we load the
13706         mono_defaults.internals_visible_class class. 
13708         * assembly.c: Expose the mono_load_friend_assemblies method.
13710 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13712         * verify.c: improved the handling of boxing, better
13713         type checking for unary ops and conversion. Fix bug
13714         regarding managed pointer compatibility checking
13716 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13718         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13720         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13722 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13724         * reflection.c (dup_type): Remove.
13725         * class.c (dup_type): Remove.
13726         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13727         instead of the dodgy 'dup_type'.
13728         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13729         handle the case where 'dup_type' needed the second argument.
13731 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13733         * domain.c: Fix a warning.
13735 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13737         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13738         checking that methods with the same fqname are not overridden
13739         with a method from an ancestor.
13741 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13743         * threads.c (free_thread_static_data_helper): Avoid a crash if
13744         thread->static_data is not yet set.
13746 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13748         * marshal.c: Use correct image when emitting
13749         native wrapper for COM calls.
13750    
13751         Code is contributed under MIT/X11 license.
13753 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13755         * icall-def.h, security.c, security.h :
13756           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13758 2007-08-07  Martin Baulig  <martin@ximian.com>
13760         * mono-debug-debugger.h
13761         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13763         * domain.c (mono_domain_free): Call
13764         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13766 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13768         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13769         * verify.c (in_same_block): code should test if either offset is inside the clauses
13770         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13771         and filter blocks
13773 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13775         * image.c (mono_image_close): Fix a leak.
13777         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13779         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13781 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13783         * domain.c, threads.c, threads-types.h: fix memory retention issue
13784         with thread static variables not being cleared on domain unload.
13785         Reuse thread static slots after domain unload.
13787 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13789         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13790         nullable type.
13792         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13793         now done in mono_runtime_invoke_array.
13795         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13796         receiver is a nullable type.
13798         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13799         generic parameter.
13801 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13803         * marshal.c: Implement COM Objects as return type for 
13804         managed->unmanaged calls. Added Release calls for COM Object
13805         out/return values in managed->unmanaged calls.
13807         Code is contributed under MIT/X11 license.
13809 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13811         * threads.h, threads-type.h: move the hazard pointer declarations
13812         to the private header.
13814 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13816         * file-io.c, appdomain.c: memory leak fixes.
13818 2007-08-02  Dick Porter  <dick@ximian.com>
13820         * socket-io.c
13821         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13822         SO_REUSEADDR setting into io-layer/sockets.c.
13824 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13826         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13827         from Object when called on a generic parameter. Fixes #82211.
13829 2007-08-01  Dick Porter  <dick@ximian.com>
13831         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13832         Fixes bug 79250 yet again.
13834 2007-07-30  Martin Baulig  <martin@ximian.com>
13836         Merged the `debugger-dublin' branch.
13838         * mono-debug.h
13839         (MonoDebugDataTable): New typedef.
13840         (MonoDebugMethodAddressList): New typedef.
13841         (MonoDebugWrapperData): Removed.
13842         (MonoDebugSymbolTable): Removed `current_data_table',
13843         `current_data_table_size', `current_data_table_offset'.
13844         (MonoDebugDataItemType): Moved into mono-debug.c.
13845         (MonoDebugMethodJitInfo): Remove `address'.
13846         (mono_debug_data_table): New global variable.
13847         (mono_debug_lookup_method_addresses): New public function.
13848         (mono_debug_find_method): Take a `MonoMethod *', not a
13849         `MonoDebugMethodInfo *'.
13851         * mono-debug.c: Drop support for the old symbol tables.
13853 2007-06-28  Martin Baulig  <martin@ximian.com>
13855         * mono-debug.c (mono_debug_debugger_version): New public variable.
13857 2007-07-31  William Holmes  <billholmes54@gmail.com>
13859         * metadata.c Changed mono_type_create_from_typespec to not insert
13860           the type into the hash map until after
13861           do_mono_metadata_parse_type has completed.
13862         Fixes Bug #82194
13863         Code is contributed under MIT/X11 license.
13865 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13867         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13868         generic parameter. Fixes #82211.
13870 2007-07-27  Jb Evain  <jbevain@novell.com>
13872         * pedump.c (dump_metadata, dump_metadata_header): dump
13873         versions contained in the metadata header.
13875 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13877         * threads.c: register small_id_table with the GC.
13879 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13881         * threads.c, threads.h, class-internals.h, object-internals.h:
13882         Hazard pointers, to be used by lock-free parallel algorithms.
13884 2007-07-26  Dick Porter  <dick@ximian.com>
13886         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13887         routine on non-windows platforms, as I've not managed to think of
13888         a non-kludgy way of doing this.  Finishes off bug 78739.
13890 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13892         * object.c: properly setup interface_bitmap in proxy vtables.
13894 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13896         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13897         to create unique shadow copy target directories, use the domain's
13898         serial number instead. Each domain gets a unique target directory
13899         that way.
13901         * domain.c (mono_domain_create): added code to increment domain
13902         shadow copy serial number and cache the value in the current
13903         domain structure.
13905         * domain-internals.h (struct _MonoDomain): added a new field -
13906         shadow_serial to hold the serial number used in generation of
13907         shadow-copy directories. This is to make sure that the directory
13908         name is unique for each and every domain created. We avoid a race
13909         condition with overriding assemblies already in use by other app
13910         domains.
13912 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13914         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13915         binding generic parameters.
13917 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13919         * metadata.c (do_mono_metadata_parse_generic_class): Use
13920         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13921         error.
13923 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13925         * loader.c, class-internals.h, reflection.c: removed the per-method
13926         generics hashtable: we use the global one through the call of
13927         mono_class_inflate_generic_method ().
13929 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13931         * class.c, metadata.c, class-internals.h: introduce yet another
13932         generics global cache for inflated methods (fixes 98% of the perf
13933         issue in bug #81806).
13935 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13937         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13938         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13939         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13940         return a MonoGenericInst containing (a copy) of those types.
13941         (mono_metadata_inflate_generic_inst): Update to changes.
13942         (mono_metadata_parse_generic_inst): Likewise.
13943         (mono_get_shared_generic_inst): Likewise.
13944         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13945         (mono_reflection_bind_generic_method_parameters): Likewise.
13946         * metadata-internals.h: Likewise.
13947         * icall.c (free_generic_context): Kill.
13948         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13950         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13951         mono_metadata_type_dup.
13952         * marshal.c (mono_mb_create_method): Likewise.
13954         * metadata.c (mono_metadata_type_dup): Rename from
13955         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13956         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13957         * marshal.c, metadata-internals.h: Update to changes.
13959 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13961         * class.c: fixed a small leak for array classes and removed warning.
13963 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13965         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13966         Return 0x8000000 for return parameters. Fixes #82161.
13968 2007-07-21  Marek Habersack  <grendello@gmail.com>
13970         * appdomain.c (get_shadow_assembly_location): append the current
13971         ticks value to the path. Avoids overwriting the same assemblies by
13972         several threads at the same time.
13974 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13975         and Raja R Harinath  <rharinath@novell.com>
13977         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13978         Simplify slightly.
13979         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13980         property for testing if a method is a generic method definition.
13982 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13984         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13986 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13988         * verify.c: used function from private branch, reverted to the one in class.h 
13990 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13992         * verify.c: a typo slipped in and the code wont compile
13994 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13996         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13997         disabled box instruction as it is doing the wrong thing
13998         improved stack dump messages, now it is easier to debug type related issues
14001 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
14003         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
14005 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14007         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
14008         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
14009         grouped with class and valuetype. This change will simply 
14010         the code as it should be handled just like unmanaged pointers.
14012 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14014         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
14016 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14018         * verify.c: several stack merge issues fixed, reference comparisons now
14019         check the type size. strict type check now works correctly.
14020         added more uses of IS_MANAGED_POINTER macro.
14021         fixed issues pointed by running the test suite against .net.
14022         
14024 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14026         * class.c, loader.c, class-internals.h: Removed the
14027         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
14028         defines.
14030         * icall.c: Better error checking in some internal reflection
14031         methods.
14033 2007-07-18  William Holmes  <billholmes54@gmail.com>
14035         * filewatcher.c : removed unused variable 'filename' in 
14036           ves_icall_System_IO_FSW_SupportsFSW
14038 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
14040         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
14041         obsolete, removed.
14043 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
14045         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
14046         
14047         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
14049 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
14051         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
14052         Implement generics support.
14053         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14055         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
14056         type_args and method_args arguments.
14057         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
14058         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14059         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
14061 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
14063         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
14064           It adds a rootimage parameter to mono_reflection_get_type_internal,
14065           adds new function mono_reflection_get_type_with_rootimage and use
14066           the rootimage to resolve the types instead of the current image
14068 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
14070         * culture-info-table.h: Forgot to update after r78304.
14072 2007-07-13  Raja R Harinath  <rharinath@novell.com>
14074         * class.c (mono_class_is_open_constructed_type)
14075         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
14077 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
14079         * class.c (mono_bounded_array_class_get):  method fails if used with
14080         an incomplete TypeBuilder enum (no basetype field), fixed it by 
14081         avoiding calculating the size for such array as it cannot be instantiated.
14082         Fix bug #82015
14084 2007-07-12  Raja R Harinath  <rharinath@novell.com>
14086         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
14087         field.
14088         * metadata.c, reflection.c: Update to changes.
14090 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
14092         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
14093         mono_class_is_valid_enum, they are used to valide a enum when loading.
14094         * reflection.c: used new functions to throw TypeLoadException when and
14095         invalid enum is build with TypeBuilder. Fixes #82018
14096   
14097 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14099         * object.c: forgot commit of mono_class_setup_methods () to access
14100         iface->methods.
14101         * object-internals.h: added a few more handy fields to
14102         MonoIMTCheckItem.
14104 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14106         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
14107         iface->methods.
14109 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14111         * class-internals.h, object-internals.h, object.c: IMT-based
14112         interface invocation core from Massimiliano Mantione
14113         (massi@ximian.com) with a reworked arch-specific interface,
14114         bsearch implementation and a few bugfixes and memory savings by me.
14116 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
14118         * class.c (mono_class_create_from_typedef): mono would segfault if 
14119         an enum did not have a __value field. It now throws a TypeLoadException
14120         for such cases. Fix bug #82022
14122 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14124         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
14126 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14128         * class.c (mono_class_init): If a class is already inited but has
14129         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
14131 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14133         * class.c: Properly handle the case of an unimplemented interface
14134         method.  Fixes: 81673.
14136 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14138         * class-internals.h, object.c: cleanup patch from massi: use
14139         MonoVTable->interface_bitmap since the vtable interfaces offset array
14140         is going away.
14142 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14144         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
14145         GetMDStreamVersion icall instead.
14147 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14149         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
14150         not use mono_dl_build_path() with a full library name: makes
14151         fallbacks to libgaim and libfam work.
14153 2007-07-06  William Holmes  <billholmes54@gmail.com>
14155         * assembly.c: Added a continue statement in probe_for_partial_name when
14156          parse_assembly_directory_name fails.  Fixes : 82002
14158 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
14160         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
14161         and added a verification  for TYPEDBYREF.
14162         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
14163         make native int interchangeable with int32 and some small cleanup and formating.
14164         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
14165         handle byref of byref.
14166         * verify.c (push_local): handle byref of byref.
14167         * verify.c (do_binop): invalid mix of values is unverifiable
14168         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
14169         added visibility checks
14170         * verify.c (field related method): added visibility checks
14171         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
14173 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
14175         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
14176         string.
14178 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
14180         * profiler.c (mono_profiler_load): Fix an off-by-one error.
14182         * marshal.c (emit_marshal_string): When returning a string from managed code,
14183         allways make a copy even for unicode strings. Fixes #81990.
14185 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
14187         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
14188         of byref generic inst types (bug #81997).
14190 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
14192         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
14193         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
14195 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
14197         * marshal.c (emit_marshal_string): Add support for unicode strings in
14198         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
14200 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
14202         * verify.c: field load/store are now verified, missing only access checks now
14204 2007-06-28  Martin Baulig  <martin@ximian.com>
14206         * mono-debug.c (mono_debug_debugger_version): New public variable.
14208 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
14210         * locales.c: When constructing DateTimeFormat or NumberFormat for
14211         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
14212         MonoCultureInfo contructed from the current locale is always
14213         read-only and has UseUserOverride set to true. All MonoCultureInfo
14214         instances returned for GetCultures have both IsReadOnly and
14215         UseUserOverride set to true. Fixes part of bug #81930.
14217 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
14219        * icall-def.h: Update System.__ComObject icalls
14220        * marshal.c: Avoid managed transition (and object creation)
14221        when looking up COM interface in RCW.
14222        * marshal.h: Ditto.
14223        
14224        Code is contributed under MIT/X11 license.
14226 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
14228         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
14229         to avoid crashes during assembly unloading.
14231 2007-06-22  Raja R Harinath  <rharinath@novell.com>
14233         Fix MethodInfo.IsGenericMethodDefinition
14234         * reflection.c (mono_reflection_bind_generic_method_parameters):
14235         Rearrange code to ensure we always uses a generic method definition.
14236         * class.c (mono_class_inflate_generic_method_full): Set
14237         'generic_container' field only for generic method definitions.
14238         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14239         Use presense of 'generic_container' field as indication of being a
14240         generic method definition.
14242 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
14244         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14246         * object-internals.h: Reflect changes in the layout of the managed Delegate
14247         class.
14248         
14249         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
14250         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
14251         runtime memory used by the dynamic method. Fixes #77146.
14253 2007-06-21  Dick Porter  <dick@ximian.com>
14255         * file-io.h: 
14256         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
14257         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
14258         81767.
14260 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14262         * reflection.c (method_encode_methodspec): Add a tripwire.
14263         * class.c (inflate_generic_type): The fully open generic type is
14264         not the same as the generic type definition.
14266 2007-06-21  Martin Baulig  <martin@ximian.com>
14268         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
14270         * mono-debug-debugger.h
14271         (MonoDebuggerBreakpointInfo): Removed.
14272         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
14273         (mono_debugger_remove_breakpoint): Likewise.
14274         (mono_debugger_breakpoint_callback): Likewise.
14275         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
14277 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14279         * metadata.c (mono_metadata_lookup_generic_class): The fully open
14280         generic type is not the same as the generic type definition.
14281         * class.c (mono_generic_class_get_class): Likewise.
14283 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
14285         * icall.c: The second argument to 
14286         System.Reflection.MethodBase.GetMethodFromHandleInternalType
14287         is a MonoType not a MonoClass.
14289 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14291         * verify.c: support for function pointers in the verifier
14293 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14295         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
14297 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14299         * assembly.c: removed Mono.Data.SqliteClient from the list of
14300         forward-compatible assemblies as it breaks the ABI (bug #81899).
14302 2007-06-19  Raja R Harinath  <rharinath@novell.com>
14304         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
14305         lookup/update with the loader lock.
14306         * reflection.c (mono_class_bind_generic_parameters): No need to
14307         protect mono_metadata_lookup_* with the loader lock.
14308         * class.c (inflate_generic_type): Likewise.
14309         
14310         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
14311         on a generic instantiated type.
14313 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
14315         *verify.c: produce meanfull error messages on verification error
14316         *verify.c: fixed some cases of verification errors reported as validation errors
14317         *pedump.c: fixed the error name array, now it shows validation errors properly
14318         *verify.h: fixed the contant that should be used for verification errors
14320 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14322         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
14323         for bug #77596, 81858 and 80743 (generics data structures on domain
14324         unload).
14326 2007-06-15  Raja R Harinath  <rharinath@novell.com>
14328         Avoid allocating 'MonoGenericContext' on the heap.
14329         * class-internals (_MonoMethodInflated::context): Make field
14330         inline, not a pointer.
14331         * loader.c (method_from_methodspec): Allocate 'new_context' on the
14332         stack.  Use the context embedded within the inflated method as the
14333         hash key, rather than 'new_context'.
14334         * class.c (inflate_generic_context): Simplify.  Return a struct
14335         rather than allocating on the heap.
14336         (mono_class_inflate_generic_method_full): Update to changes.  Now,
14337         doesn't salt away a copy of the context -- simplifying the
14338         lifetime rules of a 'MonoGenericContext *'.
14339         (mono_method_get_context): Return pointer to embedded context.
14340         (setup_generic_array_ifaces): Allocate temporary context on stack.
14341         * reflection.c (inflate_mono_method): Likewise.
14342         (mono_reflection_bind_generic_method_parameters): Likewise.
14343         Use the context embedded within the inflated method as the hash key.
14345         Avoid a source of allocation of 'MonoGenericContext'.
14346         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
14347         and 'cached_context' fields into embedded 'MonoGenericContext' field.
14348         * class.c: Update to changes.
14349         (mono_generic_class_get_context): Simplify drastically.  Now just
14350         returns a pointer to the field.
14351         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
14352         argument as a const pointer.
14353         (mono_metadata_generic_context_equal): Likewise.
14354         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
14355         Update to changes.
14357 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
14359         * verify.c improved the handling of brtrue/brfalse, factored out common code
14361 2007-06-14  Raja R Harinath  <rharinath@novell.com>
14363         Kill MonoGenericMethod.
14364         * class-internals.h (MonoGenericContext::method_inst): Rename from
14365         'gmethod' and convert to a MonoGenericInst.
14366         (MonoGenericMethod): Remove.
14367         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
14368         * loader.c (method_from_methodspec): Update to changes.  Use a
14369         MonoGenericContext as the key to the hashtable.
14370         * metadata.c (mono_metadata_generic_context_equal): Rename from 
14371         'mono_metadata_generic_method_equal' and take MonoGenericContext.
14372         (mono_metadata_generic_context_hash): Likewise from
14373         'mono_metadata_generic_method_hash'.  Change hash function.
14374         (mono_metadata_load_generic_params): Update to changes.
14375         (mono_get_shared_generic_method): Remove.
14376         * metadata-internals.h (mono_get_shared_generic_method): Remove.
14377         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
14378         (inflate_generic_context): Likewise.
14379         (mono_class_inflate_generic_method_full): Likewise.
14380         (setup_generic_array_ifaces): Likewise.
14381         (mono_class_create_from_typespec): Likewise.
14382         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
14383         (method_encode_methodspec): Update callsite.
14384         (reflection_methodbuilder_to_mono_method): Update to changes.
14385         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
14386         MonoGenericContext as the key to the hashtable.
14387         (inflate_mono_method): Update to changes.
14389         * class-internals.h (MonoGenericMethod::container): Remove.
14390         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14392 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14394         * profiler-private.h, profiler.c, profiler.h: added API to profile
14395         exception events.
14397 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14399         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
14401 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14403         * verify.c: method invocation is now validated, now we verify parameter types on stack.
14404         Fixed overflow and underflow not aborting the verification process.
14406 2007-06-13  Mark Probst  <mark.probst@gmail.com>
14408         * class-internals.h (MonoStats): Added stats entries for dynamic
14409         code allocations.
14411 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
14413         * loader.c (mono_free_method): Free header->locals and header->clauses.
14415         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
14416         dynamic case.
14418         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
14420         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
14422 2007-06-12  Raja R Harinath  <rharinath@novell.com>
14424         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
14425         the tables.
14427 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14429         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
14431 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14433         MonoGenericMethod on a diet
14434         * class-internals.h (_MonoMethodInflated::reflection_info): Move
14435         here ...
14436         (_MonoGenericMethod::reflection_info): ... from here.
14437         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
14438         Update to changes.
14439         * reflection.c (inflate_mono_method): Likewise.
14440         (mono_reflection_bind_generic_method_parameters): Likewise.
14442 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14444         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
14445         *verify.c: factored long ldarg forms to share code with short forms
14447 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14449         *verify.c: fixed code formating factored some duplicate code
14450         into a new function
14452         *verify.h: fixed binary incompatibility introduced earlier
14454         *pedump.c: fixed formating
14456 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14458         Fix assertion when disassembling Mono.C5.dll
14459         * loader.c (method_from_methodspec): Avoid inflating a method
14460         twice with the same context.  If the methodref is inflated, use
14461         the declaring method instead.
14463         * class.c (mono_class_from_generic_parameter): Fix case similar to
14464         bug #81830 handled below, but for method containers.
14466 2007-06-10  Raja R Harinath  <harinath@gmail.com>
14468         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
14469         get_shared_generic_class.  Directly inflate the instance.
14470         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
14471         (inflate_generic_class): Delete.
14472         (get_shared_generic_class): Delete.  Move setting of
14473         'cached_class' and 'cached_context' ...
14474         * metadata.c (mono_metadata_lookup_generic_class): ... here.
14476         * metadata.c (mono_metadata_lookup_generic_class): Change
14477         signature to take the components of a MonoGenericClass rather than
14478         an allocated MonoGenericClass.  Change semantics to be intern-like.
14479         * reflection.c (mono_class_bind_generic_parameters): Update to
14480         changes.  Make locking region tighter.
14481         * class.c (inflate_generic_class): Update to changes.
14482         (get_shared_generic_class): Likewise.
14483         * metadata-internals.h: Likewise.
14485         * reflection.c (mono_class_bind_generic_parameters): Take and
14486         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
14487         (mono_reflection_bind_generic_parameters): Use
14488         'mono_class_bind_generic_parameters' rather than duplicate the code.
14489         * class.c (mono_bounded_array_class_get): Update to changes.
14490         * object-internals.h: Likewise.
14492         * reflection.c (mono_class_bind_generic_parameters): Only support
14493         parameterizing generic type definitions.  Remove support for other
14494         open types.
14496 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
14498         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
14500         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
14501         in the dynamic case.
14503 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
14505         * threads.c: When cleaning up thread, reset the Background bit.
14506         Fixes bug #81720.
14508 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
14510        * metadata.c: Move variable declarations to top of scope.
14511        * verify.c: Move variable declarations to top of scope.
14513        Code is contributed under MIT/X11 license.
14515 2007-06-08  Raja R Harinath  <rharinath@novell.com>
14517         * reflection.c (mono_class_bind_generic_parameters): Replace
14518         open-coded loop with mono_metadata_inflate_generic_inst.
14520         * class.c (get_shared_generic_class): Don't call
14521         mono_get_shared_generic_inst.  Use the container's own
14522         'class_inst'.
14524         * metadata.c (mono_metadata_load_generic_params): Move
14525         initialization of 'context' field here from ...
14526         * class.c (mono_class_create_from_typedef): ... here, and ...
14527         * loader.c (mono_get_method_from_token): ... here.
14529         * class.c (get_shared_generic_class): Rename from
14530         mono_get_shared_generic_class and make static.
14531         (mono_get_shared_generic_inst): Move to metadata.c.
14532         * loader.c (mono_get_shared_generic_method): Likewise.
14533         * class-internals.h, metadata-internals.h: Update to changes.
14535         Fix #81830
14536         * class.c (mono_class_from_generic_parameter): Don't assume a
14537         generic container owner exists.  Generic containers from monodis
14538         don't have any.
14540 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
14542         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
14543         * verify.h: new typedefs to returns the non-verifiable status
14544         * verify.c: initial implementation of generics, stack merging and object compatibility check
14546 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14548         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14549         a MonoInternalHashTable again (fixed bug in internal hash table
14550         code).
14552 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14554         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14555         MonoInternalHashTable again (fixed bug in internal hash table
14556         code).
14558 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14560         * class.c, image.c, class-internals.h, domain.c,
14561         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
14562         changes.  Have to figure out what makes them break the SWF
14563         regression.
14565 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14567         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14568         a MonoInternalHashTable now.
14570 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14572         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14573         MonoInternalHashTable now.
14575 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14577         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14578         invoke_impl code.
14580         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14582         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14583         dependent trampoline.
14585         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14587         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14589 2007-05-29  Robert Jordan  <robertj@gmx.net>
14591         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14593 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14595         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14597 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14599        * marshal.c: Fix interface lookup loops for
14600        cominterop_get_com_slot_for_method and 
14601        cominterop_get_method_interface. Only need to lookup
14602        if type is a class, else use interface type method is on.
14604        Code is contributed under MIT/X11 license.
14606 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14608         * reflection.c: HasSecurity can be present even if no specially 
14609         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14610         SecurityAttribute). Fix CAS regression tests on buildbot.
14612 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14614        * appdomain.c: Add configure checks for header files.
14615        * image.c: Add configure checks for header files.
14616        * file-io.c: Add configure checks for header files.
14617        * debug-mono-symfile.c: Add configure checks for header files.
14618        * threadpool.c: Add configure checks for header files.
14619        * console-io.c: Add configure checks for header files.
14620        * profiler.c: Add configure checks for header files.
14621        * rawbuffer.c: Add configure checks for header files.
14622        * icall.c: Add configure checks for header files.
14623        * rand.c: Add configure checks for header files.
14624        * socket-io.c: Add configure checks for header files.
14626        Code is contributed under MIT/X11 license.
14628 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14630         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14631         assertion as it breaks the build.
14632         
14633         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14635         * reflection.c (lookup_custom_attr): Make a copy here too.
14637         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14638         dynamic images.
14640         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14641         images.
14643         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14644         info.
14646 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14648         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14649         (load_cattr_value): Ditto.
14651 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14653         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14655 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14657         * threads.c: In "start_wrapper", set apartment_state to MTA if
14658         apartment_state is Unknown and we're running on 2.0 profile or
14659         higher.
14660         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14661         to main method, then set apartment_state to Unknown on 1.0 profile,
14662         and MTA on 2.0 profile.
14664 2007-05-16  Jb Evain  <jb@nurv.fr>
14666         * class-internals.h (MonoDefaults): Add an attribute_class and
14667           customattribute_data_class.
14668         * domain.c (mono_init_internal): Populate them.
14669         * reflection.c: Use them to remove duplicates. Make a vew
14670         MonoClass variables `static'.
14672 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14674         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14675         step in implementing IMT, so that all isinst checks now can go
14676         through the bitmap.
14677         This was needed because vtables for TransparentProxy need to look
14678         like the vtable of the "target" class, so they need to point to
14679         its interface bitmap directly.
14681         * object.c: inside "mono_class_create_runtime_vtable" and
14682         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14684 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14686         * object-internals.h
14687           culture-info.h : added territory field in MonoCulture and
14688           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14689         * locales.c : fill territory field above too.
14690         * culture-info-table.h : regenerated.
14692 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14694         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14695         Fixes #81599.
14697 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14699         * object.c: Always initialize apartment, even if 
14700         there is no custom attributes on entry point.
14701         
14702         Code is contributed under MIT/X11 license.
14704 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14706         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14707         * metadata.c: If no encoding is set, check for unicode
14708         on class.
14709         
14710         Code is contributed under MIT/X11 license.
14712 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14714         * threads.c: Handle if mono_thread_current returns NULL 
14715         
14716         Code is contributed under MIT/X11 license.
14718 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14720         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14721         in start_wrapper. Added mono_thread_init_apartment_state and
14722         mono_thread_cleanup_apartment_state.
14723         * object.c: Initialize thread apartment state on main thread
14724         by checking for STAThreadAttribute on entry point.
14725         * object-internals.h: Add apartment_state field to MonoThread.
14726         * threads-types.h: Add unmanaged definition of 
14727         System.Threading.ApartmentState, MonoThreadApartmentState.
14728         
14729         Code is contributed under MIT/X11 license.
14730         
14731 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14733         * class.c: Fix windows build.
14734         * class-internals.h: Fix windows build.
14735         
14736         Code is contributed under MIT/X11 license.
14738 2007-05-08  Robert Jordan  <robertj@gmx.net>
14740         * process.c (CreateProcess_internal):
14741         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14742         .CreateNoWindow was specified. Fixes #81496.
14744 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14746         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14747         step in implementing IMT, replaced it with two compact arrays
14748         (interfaces_packed and interface_offsets_packed) and a bitmap that
14749         is used for isinst checks (interface_bitmap).
14751         * class.c: (compare_interface_ids): compare function to pass to
14752         bsearch when looking for an interface with a given id.
14753         (mono_class_interface_offset): reimplemented using bsearch on
14754         interfaces_packed, getting the offset from interface_offsets_packed.
14755         (print_implemented_interfaces): utility debugging function.
14756         (setup_interface_offsets): reworked to initialize interfaces_packed,
14757         interface_offsets_packed and interface_bitmap.
14759         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14760         with uses of interfaces_packed and interface_offsets_packed.
14762 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14764         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14765         mono_class_interface_offset prototype to wrap all accesses to
14766         "MonoClass.interface_offsets".
14768         * class.c: Implemented mono_class_interface_offset, and wrapped all
14769         accesses to "MonoClass.interface_offsets".
14771         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14772         "MonoClass.interface_offsets".
14774 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14776         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14777         GetMethodFromHandle overloads (bug #78637).
14779 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14781         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14782         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14784 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14786         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14787         #81498.
14789         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14790         gracefully.
14791         (mono_custom_attrs_from_index): Ditto.
14793         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14794         Fixes #81501.
14796 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14798         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14799         is now allocated from a mempool.
14801 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14803         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14804         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14806 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14808         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14809         mono_loader_clear_error () too late. Fixes #81463.
14811 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14813         * culture-info-table.h : regenerated.
14815 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14817         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14818         is missing.
14820 2007-04-25  Dick Porter  <dick@ximian.com>
14822         * Makefile.am: Put the mingw enforced-optimisation back into the
14823         PLATFORM_WIN32 section.
14825 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14827         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14828         patch.
14830         * image.c (mono_image_load_module): New API function to load a module reference.
14832         * image.c (load_modules): Load modules lazily. Fixes #80812.
14834         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14835         
14836         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14838         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14839         to mono_image_load_module_dynamic.
14841 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14843         * marshal.c: Fix calling convention for CCW on non-windows
14844         platforms. STDCALL on windows, CDECL everywhere else to work 
14845         with XPCOM and MainWin COM.
14846         
14847         Code is contributed under MIT/X11 license.
14849 2007-04-23  Martin Baulig  <martin@ximian.com>
14851         Fix #80969.
14853         * loader.c
14854         (method_from_memberref): Added `gboolean *used_context' argument.
14855         (mono_get_method_from_token): Likewise.
14856         (mono_get_method_full): Don't insert the method in the cache when
14857         `used_context' is true.
14859 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14861         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14863         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14864         create new MonoTypes for returned types.
14865         * class.c (mono_generic_class_get_class): Export mono-internal.
14866         * class-internals.h: Update to changes.
14868 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14870         * threadpool.c, threadpool.h, icall-def.h: patch from
14871         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14873 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14875         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14876         
14877         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14879         * threads.c (mono_thread_get_stack_bounds): New helper function.
14881         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14882         Correctly compute stack bounds when attaching. Fixes #81394.
14884 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14886         * reflection.c: fix handling of doubles in custom attributes
14887         for the arm-fpa format (bug #81368).
14889 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14891         * reflection.c (assembly_add_win32_resources): Mildly relax an
14892         bounds check to let the end pointer point just past the end of the
14893         allocated buffer.  (may fix #81384)
14895 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14897         * culture-info-table.h : regenerated.
14899 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14901         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14902         the thread is aborted early.
14904 2007-04-05  Dick Porter  <dick@ximian.com>
14906         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14907         FindFirstFile()/FindNextFile() to find entries.  This lets the
14908         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14909         81038.
14911         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14912         the parameters of
14913         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14915 2007-04-04  Martin Baulig  <martin@ximian.com>
14917         * debug-helpers.c
14918         (mono_method_desc_full_match): Add support for nested classes.
14920 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14922         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14924 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14926         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14927         waiting for too many threads.
14929 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14931         * environment.c: Fix return value check on uname so we can get the 
14932         executing version on Solaris operating systems.
14934 2007-03-28  Jb Evain  <jbevain@gmail.com>
14936         * class.c (mono_type_get_name_recurse): Complete the
14937         fix for the creation of assembly qualified names for
14938         pointer types. Fixes #81208.
14940 2007-03-27  Dick Porter  <dick@ximian.com>
14942         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14943         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14944         changed.
14946         * threads.c
14947         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14948         the value of ReleaseMutex().
14950 2007-03-27  Dick Porter  <dick@ximian.com>
14952         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14953         in little-endian order, not network endian, so must be converted
14954         to host endian here.  Fixes bug 80593.
14956 2007-03-22  Jb Evain  <jbevain@gmail.com>
14958         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14959         qualified names for pointer types. Fixes #81208.
14961 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14963         * marshal.c: Add support for PreserveSigAttribute. 
14964         
14965         Code is contributed under MIT/X11 license.
14967 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14969         * process.c: Fix endianness issues. Fixes #81126.
14971         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14972         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14974         * image.c (mono_image_lookup_resource): Make this work on big-endian
14975         machines.Change API contract so the caller needs to free the return value.
14976         
14977         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14978         API change.
14979         
14980 2007-03-14  Martin Baulig  <martin@ximian.com>
14982         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14983         mono_type_get_desc() as well.
14985 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14987         * icall.c:  Fix environ access in VS.  
14988         
14989 2007-03-13  Alp Toker  <alp@atoker.com>
14991         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14992         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14993         #63841.
14995 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14997         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14998         circular references among dynamic methods. Fixes #81091.
15000         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
15002 2007-03-09  Martin Baulig  <martin@ximian.com>
15004         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
15006 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
15008         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
15009         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
15010         
15011         Code is contributed under MIT/X11 license.
15012         
15013 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
15015         * loader.c: Reapply patch for bug #79424.
15017 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15019         * metadata.c (mono_type_to_unmanaged): Only convert object to
15020         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
15022 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
15024         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
15025         (and incorrectly set) is_reference field from MonoGenericInst.
15027 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15029         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
15030         a little earlier.
15032         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
15034         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
15036 2007-03-05  Miguel de Icaza  <miguel@novell.com>
15038         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
15039         FileOptions.1 value to mean "temporary", map that to
15040         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
15042         Fixes 80688
15044 2007-03-03  Marek Habersack  <mhabersack@novell.com>
15046         * appdomain.c: implement MS .Net style shadow copying. Copies of
15047         the assemblies are made in a subdirectory of the dynamic base
15048         directory, the assembly names are preserved.
15049         Copy .mdb and .config files along with the assemblies being shadowed.
15051 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15053         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
15054         (emit_marshal_handleref): Ditto.
15056         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
15057         on Visual C++. Fixes #80671.
15059 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15061         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
15062         for clone operations.
15064 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15066         * marshal.c: Fix warnings.
15068 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
15070         * loader.c: allow case-insensitive matching of the dll name
15071         in dllmap handling when prefixed with "i:".
15073 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
15075         * threads.c: Fix #ifdef for dummy_apc function for VS.
15077 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
15079         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
15081 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
15082         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
15083         giving precedence to the methods with a fully qualified name
15084         (InterfaceName.MethodName) when building the interface sections
15085         of the vtable.
15087 2007-02-16  Dick Porter  <dick@ximian.com>
15089         * threadpool.c (append_job): Fix fast-path array handling, so it's
15090         less likely the array will grow exponentially when the load is
15091         heavy.
15093 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15095         * metadata-internals.h, loader.c: fix dllmap lookup order
15096         for non-function maps, too, and prepare for fallback code.
15098 2007-02-12  Robert Jordan  <robertj@gmx.net>
15100         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
15101         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
15102         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
15103         GlobalFree. Fixes a part of bug #77075.
15105 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
15107         * loader.c: implemented typedef parent in field memberref.
15109 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
15111         * marshal.c: Fix warnings and remember to call Release on
15112         IUnknown of RCW.
15113         
15114         Code is contributed under MIT/X11 license.
15116 2007-02-10  Miguel de Icaza  <miguel@novell.com>
15118         * class-internals.h: Add MonoHandleRef definition, and
15119         handleref_class to mono_defaults. 
15121         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
15122         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
15124         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
15125         (do nothing on this stage)
15126         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
15127         (emit_marshal_handleref): New method, used for argument handling
15128         of HandleRefs. 
15130 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
15132         * class.c (mono_class_setup_parent): Lazily init com types.
15133         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
15134         init com types.
15135         * object.c (mono_remote_class_vtable): Lazily init com types.
15136         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
15137         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
15138         * domain-internals.h: Expose mono_init_com_types.
15139         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
15140         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
15141         Add support for COM Callable Wrapper marshalling.
15142         * marshal.h: Add icall definitions.
15143         * gc.c: Handle freeing of CCWs in finalizer code.
15144         
15145         Code is contributed under MIT/X11 license.
15147 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
15149         * reflection.c: changed all the signature encoding code to use
15150         a variable-sized buffer.
15152 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15154         * marshal.c: locking fixes: never take the loader lock
15155         or other runtime locks when holding the marshal lock
15156         (fixes bug#80664).
15158 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
15160         * marshal.c: make the delegate function pointer mapping
15161         work for the moving GC.
15163 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
15165         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
15166         for bug #80618.
15168 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15170         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
15171         gmodule.
15173 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15175         * threadpool.c: made the code moving-GC safe.
15177 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
15179         * assembly.c, boehm-gc.c, class-internals.h, class.c,
15180         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
15181         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
15182         warning cleanup.
15183         * reflection.c: warning cleanup, some threading and moving GC fixes.
15185 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
15187         * class.c, loader.c: create the needed Set/Get/Address array methods
15188         as well as the .ctors in mono_class_init (), fixes bug #80567.
15190 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
15192         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
15193         we doesn't decrease its alignment. Should fix the sparc build.
15195 2007-01-24  Dick Porter  <dick@ximian.com>
15197         * socket-io.c
15198         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
15199         Create the returned object if we need to ignore an unsupported
15200         socket option.  Fixes a segfault reported by Atsushi.
15202 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
15204         * class.c, object.c: restrict GC-tracked fields to
15205         UIntPtr fields used inside corlib, so we provide better
15206         type info to the GC and also allow broken packing as in
15207         bug #80580.
15209 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
15211         * sgen-gc.c: removed duplicated function.
15213 2007-01-19  Miguel de Icaza  <miguel@novell.com>
15215         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
15216         value that means that the value is not supported, but that we
15217         should not return a failure, but instead report this as a
15218         successful operation.
15220 2007-01-19  Raja R Harinath  <rharinath@novell.com>
15222         Fix tests/bug79956.2.il
15223         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
15224         (mono_generic_class_get_class): If the generic definition in an
15225         enum, copy over other fields related to it.
15227 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15229         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
15230         genericinst enums (bug #79215).
15232 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
15233         * class.c: Fix bug 80307.
15235 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
15237         * image.c: if the file table is not present, try to load
15238         all the modules, since we don't have info about them
15239         having or not metadata (bug #80517).
15240         * assembly.c: allow mono_assembly_load_references () to
15241         work for netmodules.
15243 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15245         * image.c, metadata-internals.h, object.c: execute module
15246         cctors when running on the 2 runtime if present (bug #80487).
15248 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
15250         * icall.c: optimized InitializeArray() on bigendian.
15252 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
15254         * icall.c: fix for the broken ARM FPA double format.
15256 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15258         * icall.c: handle endian issues for r4 and r8 types, too, in
15259         the InitializeArray() icall.
15261 2007-01-15  Miguel de Icaza  <miguel@novell.com>
15263         * loader.c (mono_loader_error_prepare_exception): Clear the error
15264         once we have extracted the information from it, do this before we
15265         call into the JIT's class loading mechanisms.
15267         * object.c (mono_class_create_runtime_vtable): Do not clear the
15268         loader error before calling mono_class_get_exception_for_failure
15269         as the loader error is needed inside
15270         mono_class_get_exception_for_failure to throw the error (thinko).
15272         Fixes #80521
15273         
15274 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15276         * reflection.c: align fields rva data so it's faster to load at
15277         runtime.
15279 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15281         Prepare to simplify GenericMethod handling.
15282         * class-internals.h (mono_method_get_context): New accessor function.
15283         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
15284         rather than directly accessing '->context' field.
15286         * class-internals.h (_MonoGenericParam.method): Move ...
15287         (_MonoGenericContainer): ... here.  Add into union with klass field.
15288         * class.c, icall.c, loader.c, metadata.c, reflection.c:
15289         Update to changes.
15291 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
15293         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
15294         the wrapper type enum and reduce relocations.
15296 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15298         * reflection.c (inflate_mono_method): Reuse method instantiation
15299         from the generic method, if available.
15301 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15303         * marshal.c (emit_marshal_variant): Fix conv_arg
15304         type in last commit, based on whether parameter is byref.
15305         
15306 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15308         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
15309         marshalling.
15310         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
15311         MONO_TYPE_OBJECT back for VARIANT support.
15313 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15315         * marshal.c, marshal.h, icall-def.h: Implement 
15316         Marshal.ReAllocCoTaskMem.
15318 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
15320         * marshal.c: memory retention fixes: use the proper
15321         image cache for runtime_invoke method lookups.
15323 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15325         * mempool.c: added code to help debug mempool allocations.
15327 2007-01-11  Dick Porter  <dick@ximian.com>
15329         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
15330         support (experimenting with faking it with IP_MTU_DISCOVER for
15331         systems that don't have IP_DONTFRAGMENT.)
15332         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
15333         icall.
15335         * icall-def.h: new System.Net.Sockets.Disconnect icall.
15337         * socket-io.h: Add new fields to MonoSocketAsyncResult
15338         corresponding to the new ones in Socket.cs.
15340 2007-01-11  Raja R Harinath  <rharinath@novell.com>
15342         Fix IronPython regression mentioned in #80249
15343         * metadata.c (do_mono_metadata_parse_generic_class): Clear
15344         'cached_context' field, since it may have been initialized as a
15345         side-effect of metadata parsing.
15347         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
15348         (_MonoGenericClass.cached_class): Move here and rename from lone
15349         remaining field of ...
15350         (_MonoInflatedGenericClass): ... this.  Remove.
15351         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
15352         to changes.
15354         Fix mcs/tests/test-128.cs regression.
15355         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
15356         2007-01-10 change below.
15357         [MONO_TYPE_OBJECT]: Recurse into array case.
15359 2007-01-11  Raja R Harinath  <harinath@gmail.com>
15361         * class-internals.h (mono_get_inflated_generic_class): Remove.
15362         * class.c (mono_get_inflated_generic_class): Remove.
15363         (mono_generic_class_get_class): Rename from
15364         mono_class_create_generic.
15365         (mono_class_from_mono_type) [GENERICINST]: Use it.
15366         * reflection.c, metadata.c: Update to changes.  Use
15367         'mono_class_from_mono_type'.
15369 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15371         * reflection.c: use passed type when encoding an array element
15372         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
15374 2007-01-09  Robert Jordan  <robertj@gmx.net>
15376         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
15377         result arguments (someDelegate.EndInvoke (unrelatedAres)).
15378         Fixes bug #80392.
15380 2007-01-09  Raja R Harinath  <rharinath@novell.com>
15382         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
15384         * object.c (set_value): Avoid aliasing between type->data.klass
15385         and type->data.generic_class.
15387         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
15389 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15391         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
15392         between type->data.klass and type->data.generic_class.
15394 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
15396         * marshal.c: In MS.NET, StringBuilder objects are not copied by
15397         value in out parameters.
15399 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15401         Simplify invariant for MonoGenericClass::klass field.
15402         * class.c (mono_class_create_generic): Verify 'klass' is null.
15403         * metadata.c (do_mono_metadata_parse_generic_class): Don't
15404         initialize 'klass' field.
15406 2007-01-05  Raja R Harinath  <rharinath@novell.com>
15408         Ongoing work to avoid redundant data and simplify invariants.
15409         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
15410         'generic_class', and change type to a GenericInst.
15411         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
15412         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15414 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
15416         * class.c : skip io-layer under PLATFORM_WIN32.
15418 2007-01-03  Tor Lillqvist  <tml@novell.com>
15420         Fix #80305: In a bundled executable, look in the bundled exe
15421         assembly to determine the runtime version. Add the possibility to
15422         bundle also the machine.config file.
15423         
15424         * assembly.c (mono_assembly_open_from_bundle): Make
15425         non-static. Allow being called even if we have no bundled
15426         assemblies, and return NULL right away in that case.
15428         * domain-internals.h: Declare mono_assembly_open_from_bundle()
15429         here.
15431         * domain.c (app_config_parse): Take an assembly exe file name as
15432         parameter instead of a config file name. Check for a bundled
15433         config file for that assembly by calling
15434         mono_config_string_for_assembly_file() (see below) before looking
15435         for one in the file system.
15436         (get_runtimes_from_exe): Corrsponding change to call of
15437         app_config_parse().
15438         (get_runtimes_from_exe): Check for bundled assembly exe file first
15439         by calling mono_assembly_open_from_bundle(). If no bundled
15440         assembly exe file is found, call mono_image_open() as before to
15441         look it up in the file system.
15443         * mono-config.c: Add variable bundled_machinec_onfig.
15444         (mono_config_string_for_assembly_file): New function.
15445         (mono_config_for_assembly): Move code snippet that looks for a
15446         bundled assembly .config file into the above new function. Call
15447         it.
15448         (mono_register_machine_config, mono_get_machine_config): New
15449         functions to set and retrieve
15451         * assembly.h: Declare mono_register_machine_config().
15453         * mono-config.h: Declare mono_get_machine_config() and
15454         mono_config_string_for_assembly_file().
15456         * icall.c: No declaration of environ necessary on Win32. It is
15457         declared (as a macro expanding to a function call) in stdlib.h.
15458         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
15459         New internal mono function. Returns the value of
15460         mono_get_machine_config() as a Mono string.
15462         * icall-def.h: Add get_bundled_machine_config().
15464 2007-01-04  Raja R Harinath  <rharinath@novell.com>
15466         Remove redundant field
15467         * class-internals.h (_MonoGenericContext.container): Remove field.
15468         * loader.c (mono_method_get_signature_full): Don't parse a
15469         "container" for a signature parse when the signature is inflated
15470         immediately.
15471         (method_from_methodspec): Likewise, for a generic_inst.
15472         * class.c, metadata.c, reflection.c: Update to changes.
15474 2006-01-04  Raja R Harinath  <rharinath@novell.com>
15476         * class-internals.h (_MonoGenericClass): Rename 'context' field to
15477         'cached_context', and change semantics -- it starts off NULL, and
15478         is initialized on demand.
15479         * class.c (mono_generic_class_get_context): New accessor to
15480         replace 'context' field accesses.
15481         (mono_class_get_context): New helper.
15482         (*): Update to changes.
15483         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
15485 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15487         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
15488         before the memcpy.   Fixes Marshal2 regression.
15490 2007-01-02  Jb Evain  <jbevain@gmail.com>
15492         * blob.h: add a MONO_TYPE_ENUM definition
15493         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
15494         fix the encoding of arrays of enums in custom attributes.
15496         Fixes #79666.
15498 2007-01-01  Miguel de Icaza  <miguel@novell.com>
15500         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
15501         string is null terminated, but only cut the string short if it
15502         overflows the buffer.   
15503         
15504         (mono_string_to_byvalstr): Also fix this routine.   The code here
15505         was not properly terminating a string (it was only terminated
15506         because of the previous catch-all memset). 
15508         I left the memset, because I do not know if applications expect
15509         the runtime to clear this region. 
15511         Fixes #79944.
15513         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
15514         Clear the error before returning to unmanaged code to prevent the
15515         runtime from being confused later on (fixes  80420).
15516         (ves_icall_type_from_name): Always call mono_loader_clear_error
15517         after parsing a type that could have failed.
15518         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
15520         * loader.c (mono_loader_clear_error): Fix indentation.
15522 2006-12-28  Martin Baulig  <martin@ximian.com>
15524         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
15526 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15528         * reflection.c: patch from Rolf Bjarne Kvinge to fix
15529         getting a token for an EnumBuilder.
15531 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15533         * reflection.c: be more careful in case resource generation
15534         fails to create the data array.
15536 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15538         * sgen-gc.c: write barrier for clone and fix unregister handles.
15540 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15542         * reflection.c: some fixes needed in the generics code for the moving GC.
15544 2006-12-22  Robert Jordan  <robertj@gmx.net>
15546         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
15547         account. Fixes bug #80299.
15549 2006-12-21  Raja R Harinath  <rharinath@novell.com>
15551         Fix WaitHandle usage in delegates.
15552         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
15553         * object.c (mono_wait_handle_new): Use the property set method to
15554         initialize the handle.
15555         (mono_wait_handle_get_handle): New.
15556         * threadpool.c (mono_async_invoke): Use it.
15557         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
15558         Likewise.
15559         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
15561 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
15563         * marshal.c (emit_marshal): Call emit_marshal_variant and
15564         emit_marshal_com_interface when applicable.
15565         (emit_marshal_variant, emit_marshal_com_interface): Add
15566         methods for this case and remove if's from emit_marshal_object.
15567         
15568 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15570         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15572 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15574         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15575         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15576         and GlobalFree on Windows. Remove FIXME.
15578 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15580         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15581         implementation for managed objects.
15583 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15585         * object.c: implemented code to be used for checking
15586         that no reference field overlaps with non-references.
15588 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15590         * threadpool.c: fix queue code to be compatible with the
15591         moving GC.
15593 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15595         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15596         in structures by throwing ArgumentNullException.
15598         (emit_marshal_safehandle): Also when they are null parameters.
15600         (emit_marshal_safehandle): Add support for ref
15601         SafeHandles parameters
15603 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15605         * profiler.c: updated to use the mono-dl API instead of
15606         gmodule.
15608 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15610         * profiler.c: updated to use the mono-dl dynamic loading
15611         API instead of gmodule.
15613 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15615         * profiler.c: use readlink, older versions of glib don't have
15616         g_file_read_link ().
15618 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15620         * profiler.c: try to detect the path to mono if libc fails to provide
15621         a useful name (bug #80286).
15623 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15625         Fix #80242
15626         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15627         instance, use the generic type definition instead.
15628         (ves_icall_Type_GetNestedTypes): Likewise.
15629         * class.c (mono_class_create_generic): Always set the
15630         nested_classes of a generic instance to NULL, even if the generic
15631         type definition has nested types.
15633 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15635         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15636         and fix on Linux.
15637         
15638 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15640         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15641         my arguments were in the wrong order.   I also fixed the Windows
15642         version which seems to have had the same issue.
15644         (mono_free_bstr): On Unix, this is g_free.
15645         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15646         conversions (for the tests in corlib to pass).
15648 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15650         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15651         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15652         exception if a ref SafeHandle in a struct has changed).
15653         
15654         (emit_struct_conv): Do not perform layout checks for classes
15655         derived from SafeHandle, as those are specially handled. 
15657         (emit_object_to_ptr_conv): Add support for
15658         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15660         (emit_marshal_safehandle): Implement conversion of return values
15661         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15662         
15663         * threads.c: WaitHandle now is compiled with two different handles
15664         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15665         for 2.0.
15666         
15667         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15668         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15669         these routines to cope with both kinds of fields.
15671 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15673         * metadata.c (mono_type_to_unmanaged): Handle the case where
15674         type->data.klass is a SafeHandle, and in that case, return the
15675         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15676         MONO_MARSHAL_CONV_SAFEHANDLE. 
15678 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15680         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15681         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15682         calling emit_marshal_object.
15684         (emit_marshal_safehandle): Implement marshalling of
15685         SafeHandle parameters (no ref support yet).
15687         (MarshalAction): Document the defines as I implement
15688         them for SafeHandle.
15690         (emit_marshal_object): indentation police.
15692         * class-internals.h: Define MonoSafeHandle.
15693         Add safehandle_class to MonoDefaults type.
15695         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15696         list of classes to check for fields. 
15698         * domain.c (mono_init_internal): Add SafeHandle to the list of
15699         mono_defaults loaded.
15701 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15703         Fix #80253
15704         * reflection.c (mono_reflection_bind_generic_parameters): If the
15705         generic type definition is a type builder, ensure that it is fully
15706         initialized before instantiating it.  Kill some dead code.
15708 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15710         * object.c: clear the loader_error () before loading
15711         more metadata stuff (bug #80258).
15713 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15715         * icall.c, icall-defs.h: type modifiers icalls for
15716         parameters and properties.
15718 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15720         * object.c, icall.c: fixed warnings.
15722 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15724         * marshal.c: fixed a couple of leaks and coding style in a few places.
15726 2006-12-08  Dick Porter  <dick@ximian.com>
15728         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15729         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15730         80173.
15732 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15734         * process.c: ProcessStartInfo may have only filename set and
15735         arguments can be NULL.
15737 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15739         * icall.c: fix leak found by Robert Jordan.
15741 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15743         * marshal.c, marshal.h: generate managed method to access an element
15744         of a multi-dimensional array.
15746 2006-11-30  Paolo Molaro (lupus@ximian.com)
15748         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15750 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15752         * icall.c: back out GetFields () fix until the serialization code is
15753         fixed to not depend on the incorrect behaviour.
15755 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15757         * profiler.c: provide defaults if none are set.
15759 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15761         * Makefile.am, attrdefs.h: new public header file with
15762         constants for attributes for use by embedders.
15764 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15766         * icall.c: GetFields () fix for bug #80064.
15768 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15770         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15771         removed long unused icalls.
15773 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15774   
15775         * marshal.c: 
15776                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15777                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15778                 can be generated without a delegate class.
15779                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15780         
15781         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15783 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15785         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15786         #80069.
15788 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15790         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15791         icall-def.h: added icalls needed by System.GC.
15793 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15795         * loader.c: ensure the class in catch clauses is handled
15796         correctly for generics methods (fixes bug#79980).
15798 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15800         * monitor.h, monitor.c: added mono_locks_dump () function
15801         to help debug deadlocks involving managed locks.
15803 2006-11-13  Dick Porter  <dick@ximian.com>
15805         * file-io.c (get_file_attributes): If the file is a symlink try
15806         and get the stat data for the target, but also add the
15807         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15808         the specs for the windows symlink support, but will probably have
15809         to be reworked when I have test data from a vista machine.  Fixes
15810         bug 79887.
15812 2006-11-13  Dick Porter  <dick@ximian.com>
15814         * gc.c (mono_domain_finalize): 
15815         * marshal.c (mono_delegate_begin_invoke): 
15816         * threadpool.c (socket_io_init, mono_thread_pool_init)
15817         (mono_thread_pool_finish): 
15818         * monitor.c (mono_monitor_try_enter_internal): 
15819         * threads.c (mono_thread_resume, mono_thread_init)
15820         (mono_thread_suspend_all_other_threads)
15821         (mono_thread_execute_interruption): 
15822         * appdomain.c (mono_domain_unload): Check for NULL error returns
15823         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15824         75733.
15826 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15828         * process.c
15829         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15830         Only close the handle if the value of the handle is not
15831         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15832         robust.
15834         Improvement for #75733, so that we do not run into this problem. 
15836         
15837         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15838         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15839         internal variables.  Fixes #79462 
15840         
15842 2006-11-09  Dick Porter  <dick@ximian.com>
15844         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15845         Use poll() not select().  Fixes bug 79397.
15847 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15849         Fix #79872
15850         * assembly.c (mono_assembly_load_from_full): Check that the given
15851         image has an assembly manifest.
15853 2006-11-09  Ankit Jain  <jankit@novell.com>
15855         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15856         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15857         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15859 2006-11-07  Dick Porter  <dick@ximian.com>
15861         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15862         Put the old resolver behaviour back for pre-2.0 profiles.
15864 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15866         * threadpool.c: precise GC and locking fixes.
15868 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15870         * class.c: don't load types that have an explicit unaligned
15871         managed reference. Provide better info in the TypeLoad exception.
15872         Part of the fix for bug #79744.
15873         * object.c: use the correct check for class type load issues.
15875 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15877         * class.c: enforce alignment of fields with managed references
15878         even when Pack=1 is forced by the user (bug #77788).
15880 2006-11-03  Dick Porter  <dick@ximian.com>
15882         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15883         If the address reverse lookup fails, return it as the hostname
15884         anyway.  Fixes bug 79721.
15886 2006-11-03  Dick Porter  <dick@ximian.com>
15888         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15889         Fix build on Windows.
15891 2006-11-02  Dick Porter  <dick@ximian.com>
15893         * icall-def.h: 
15894         * object-internals.h: 
15895         * exception.c (mono_get_exception_thread_interrupted): 
15896         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15897         Fixes bug 74525.
15899         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15900         Check for pending Thread.Interrupt.
15902 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15903         * loader.c: Fixed bug 79684.
15905 2006-10-27  Dick Porter  <dick@ximian.com>
15907         * file-io.c (get_file_attributes): Force symlinks to directories
15908         to be returned as a regular file.  Fixes bug 79733.
15909 2006-10-26  Dick Porter  <dick@ximian.com>
15911         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15912         CreateFile to open a directory then we need to set the
15913         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15915 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15917         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15918         friends.
15920 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15922         * sgengc.c: small cleanup of timer code.
15924 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15926         * sgen-gc.c: fix some warnings and start adding support for
15927         complete object removal on domain unload.
15929 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15931         * assembly.c: build_assembly_name should not consider a version
15932         number without build or revision number invalid. Fixes bug #79715.
15934 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15936         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15937         call kernel32 function OutputDebugString directly.
15938         
15939         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15940         
15941 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15943         * reflection.c: small cleanup, using a function to insert a MonoString
15944         in the string heap.
15946 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15948         * reflection.c: moving GC fixes.
15950 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15952         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15953         all the objects with finalizers belonging to an unloading appdomain.
15955 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15957         * sgen-gc.c: added ability to allocate even when the nursery is fully
15958         pinned and fixed a couple of bugs.
15960 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15962         * threads.h: Revert the last change for now.
15964         * threads.h (mono_thread_get_pending_exception): Rename this to
15965         mono_thread_get_undeniable_exception ().
15967 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15969         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15970         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15971         when fname does not refer to valid assembly. This result in a more
15972         meaningful error message.
15973         * exception.c: added mono_get_exception_bad_image_format2 which 
15974         constructs a BadImageFormatException using the ctor taking a custom
15975         message and the file name. Passing in a NULL msg results in a default
15976         message.
15977         * exception.h: define mono_get_exception_bad_image_format2 function.
15978         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15979         when file name pointed to an invalid IL image. Use 
15980         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15981         as this results in a more meaningful error message.
15983 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15985         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15986         #79465.
15988 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15990         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15991         consistency with the other _size functions.
15992         (mono_type_stack_size): Ditto.
15994         * class.c object.c icall.c: Fix warnings caused by the above change.
15996         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15998         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
16000         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
16002 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
16004         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
16005         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
16006         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
16007         threadpool.h, threads-types.h: mark more internal functions.
16009 2006-10-11  Dick Porter  <dick@ximian.com>
16011         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
16012         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
16013         reproduce the bug even before applying the fix.)
16015 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
16017         * reflection.c: allow retrieving attributes for arguments in generic
16018         methods (bug #79241).
16020 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
16022         * debug-mono-symfile.c: properly check fopen () result (found by
16023         coverity).
16025 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
16027         * reflection.c: make error message clearer and fixed two
16028         issuelets found by Coverity.
16030 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
16032         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
16034 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16036         * object-internals.h, gc-internal.h, profiler-private.h:
16037         mark internal functions.
16039 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16041         * reflection.c: put data in the text section.
16042         * icall.c: recognize more types in type_from_typename ().
16043         * process.c, marshal.c: added some GC FIXMEs.
16045 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16047         * loader.c: check for NULL before initializing.
16049 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
16051         * gc.c (finalizer_thread): Use a non-alertable wait here.
16053         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
16054         until the correct solution is found.
16056 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16058         * reflection.c (mono_module_get_object): Avoid an assert when operating on
16059         modules with no metadata. Fixes #79596.
16061         * image.c (load_metadata_ptrs): Put back the error message when
16062         the #- heap is encountered since the support is not complete yet.
16064 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16066         * gc.c: do not allow the user to SuppressFinalize () a
16067         delegate because it would leak the trampoline if present.
16069 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16071         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
16072         PropertyPtr table.
16074 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
16076         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
16078         * metadata.c (mono_metadata_get_param_attrs): Ditto.
16080         * row-indexes.h: Add definitions for *Ptr tables.
16082         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
16084         * metadata.c (mono_metadata_translate_token_index): New helper function to
16085         translate table indexes used in uncompressed metadata.
16086         (mono_metadata_decode_table_row): Ditto.
16087         (mono_metadata_decode_table_row_col): Ditto.
16089         * metadata.c: Add table schema for *Ptr tables.
16091         * class.c loader.c: Use the new helper function to access the affected metadata
16092         tables.
16093         
16094         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
16095         #38532.
16096         
16097 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
16099         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
16100         sequences which can be unbounded in size. Fixes #79583.
16102 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
16104         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
16105         static initialization.
16107         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
16109         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
16111         * domain.c (mono_domain_free): Free up type_init_exception_hash.
16113         * object.c (mono_runtime_class_init): Implement correct semantics when a static
16114         ctor fails, i.e. throw the same exception on subsequent accesses.
16115         
16116 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
16118         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
16119         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
16120         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
16121         Handle marshalling of interfaces and VARIANTs contained in structs.
16122         
16123         Code is contributed under MIT/X11 license.
16124         
16125 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
16127         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
16128         
16129         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
16130         mempool.
16132 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16134         * console-io.c: ignore previous SIGINT handler.
16136 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
16138         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
16139         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
16140         #79460, #79461, #79485.
16142         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
16144         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
16145         #79217.
16147 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16149         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
16150         could be generated from it.
16152 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
16154         * rand.c: fix read loop to correctly handle EINTR.
16156 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16158         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
16159         internal calls are defined to keep methods closer to the declaring
16160         type and allow a significant reduction in runtime relocations and
16161         memory usage.
16163 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
16165         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
16166         exception message to have FileNotFoundException use the default
16167         assembly load error message. Fixes bug #79426.
16168         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
16170 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16172         * threadpool.c: (start_thread_or_queue) use the root domain when
16173         creating the thread instead of the async object one.
16175 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
16177         * class.c, object.c, class-internals.h, reflection.c:
16178         for arrays, store element_size inside MonoClass (speedup
16179         for array object creation).
16181 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
16183         * icall.c: fixed CodeBase to use the file name and not the module
16184         name (bug #79365).
16186 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16188         * mono-debug.c, mono-debug.h: export find_method as
16189         mono_debug_find_method ().
16191 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16193         * debug-helpers.c, class-internals.h: added a few functions useful
16194         when debugging under gdb.
16196 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16198         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
16199         characters that need special handling.
16201 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16203         * mono-config.c: make the os/cpu specification more flexible,
16204         allowing lists and negation.
16206 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
16208         * marshal.c: COM Interop fixes. Handle case where method->klass.
16209         is interface. Handle BSTR/MonoString when null. Use CDECL as 
16210         calling convention on non-windows platforms. This is for
16211         compatibility with XPCOM and MainWin COM.
16212         
16213         Code is contributed under MIT/X11 license.
16214         
16216 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
16218         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
16219         correctly. Fixes #79217.
16221         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
16223 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
16225         * mono-config.c: allow both an os and cpu attribute for dllmap
16226         and dllentry elemnets to enable a single config file to be used
16227         for multiple architectures.
16229 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
16231         * loader.c: MonoLoaderError was cleared too soon on load failure.
16232         Fixes bug #79424.
16234 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
16236         * icall.c: use the defining class vtable when accessing a
16237         static field, not a pobblibly derived class.
16239 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
16241         * icall.c string-icalls.c: Remove references to unicode.h.
16243         * unicode.h unicode.c Makefile.am: Remove these unused source files.
16245         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
16247         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
16248         indicating the image where custom marshaller types should be looked up.
16249         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
16250         custom marshallers, instead of corlib. Fixes #79425.
16252 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
16254         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
16256 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
16258         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
16259         Implement Environment.ProcessorCount.
16260         
16261         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
16262         Implement Environment.ProcessorCount.
16263         
16264         * icall.c: 
16265         Add Environment.ProcessorCount icall.
16266         
16267         Patch by Jason McFall.
16269 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16271         * assembly.c: don't append .exe/.dll when the filename already contains
16272         one of those extensions.
16274 2006-09-12  Martin Baulig  <martin@ximian.com>
16276         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
16277         to array interfaces.
16279 2006-09-11  Martin Baulig  <martin@ximian.com>
16281         * reflection.c (mono_image_build_metadata): Create the
16282         MethodImpl's after emitting all types and methods, so we don't
16283         need another fixup pass for them.
16285 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
16287         * class.c (mono_class_from_name_case): Fix regression introduced by the last
16288         change.
16290 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
16292         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
16293         unload.
16295 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
16297         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
16298         args is not set. Fixes #78926.
16300 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
16302         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
16304         * image.c (load_class_names): Move this to class.c, and rename it to 
16305         'mono_image_init_name_cache'.
16306         (load_modules): Fix a warning.
16308         * class.c icall.c image.c: Initialize image->name_cache lazily.
16310         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
16311         on its name using information in the AOT file.
16313         * class.c (mono_class_from_name): Use the new hook function.
16315 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
16317         * reflection.c (mono_param_get_objects): Handle enum default parameter values
16318         correctly.
16320         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
16321         Fixes #79289.
16322         
16323 2006-09-06  Martin Baulig  <martin@ximian.com>
16325         * icall.c (mono_lookup_internal_call): Small fix.
16327 2006-09-05  Raja R Harinath  <rharinath@novell.com>
16329         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
16330         double g_free.
16332 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
16334         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
16335         when --debug is specified.
16337 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
16339         * class.c (setup_generic_array_ifaces): Fix a warning.
16341 2006-09-04  Miguel de Icaza  <miguel@novell.com>
16343         * Temporarily remove the patch to assemly.c that checks the
16344         assembly versions as it breaks our gacutil.
16346 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
16348         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
16350         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
16351         a net 1.0 runtime.
16353         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
16354         created using the default ctor. Fixes #79152.
16355         (mono_string_builder_to_utf16): Ditto.
16357 2006-09-01  Martin Baulig  <martin@ximian.com>
16359         Fix handling of the generic array interfaces.
16361         * class-internals.h
16362         (MonoDefaults): Removed `generic_array_class' and added
16363         `generic_ilist' class.
16365         * class.c
16366         (mono_bounded_array_class_get): Add the new generic array interfaces.
16367         (setup_generic_array_ifaces): New static method; create vtable
16368         entries for each method in the generic array interfaces.
16370         * metadata.c
16371         (select_container): Allow "parent-less" generic methods.
16373         * marshal.c
16374         (mono_marshal_get_generic_array_helper): New public method.
16376         * icall.c
16377         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
16378         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
16379         moved the interncall into System.Array.
16381 2006-09-01  Raja R Harinath  <rharinath@novell.com>
16383         A few more cases of avoiding work on types with ->byref set.
16384         Has the real fix for #79238
16385         * icall.c (is_generic_parameter): New helper.
16386         (ves_icall_Type_GetGenericParameterPosition): Use it.
16387         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
16388         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16389         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
16390         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
16391         reference types.
16392         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
16393         reference types.
16394         (ves_icall_Type_get_IsGenericInstance): Likewise.
16395         (ves_icall_Type_get_IsGenericType): Likewise.
16397 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16399         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
16400         class if possible.
16402         * mempool.h (mono_mempool_get_allocated): New helper function.
16404         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
16405         change.
16407         * mempool.c: Fix warnings and the calculation of stats.
16409         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
16411         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
16413         * loader.c (mono_get_method_from_token): Update method_count stat.
16415         * class-internals.h (MonoStats): Add some stats.
16417 2006-08-31 Robert Jordan  <robertj@gmx.net>
16419         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
16420         with managed variants.
16421         All code is contributed under the MIT/X11 license.
16422         
16423 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
16425         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
16426         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
16428         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
16430         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
16431         with cycles in classes.
16433         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
16435         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
16436         missing a [MarshalAs] directive. Fixes #79203.
16438         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
16439         klass->marshal_info. Fixes #79217.
16441 2006-08-30  Martin Baulig  <martin@ximian.com>
16443         Committing a patch from Joachim Ante <joe@otee.dk>:
16444         Add support for binary data symbol stores.
16446         * debug-mono-symfile.c
16447         (mono_debug_open_mono_symbol_file): Renamed into
16448         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
16449         arguments.
16451         * mono-debug.c
16452         (mono_debug_open_image): Added `raw_contents' and `size' args.
16453         (mono_debug_init_2_memory): New public function.
16455 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
16457         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
16459 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16461         * appdomain.c: implement support for ShadowCopyFiles.
16463 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
16465         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
16466         when value is NULL (and should remove CID #51).
16468 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16470         * image.c: moved 2 functions to ../utils.
16472 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
16474         * gc.c: cope with the target object of a GC handle being NULL
16475         (bug #78877).
16477 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16479         * class.c: recursively check parent's explicit implementations
16480         of interface methods (fixes bug #79125).
16482 2006-08-19  Miguel de Icaza  <miguel@novell.com>
16484         * filewatcher.c: Avoid warnings when building, do not redefine
16485         constants that are defined.
16487         Remove warnings.
16489 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16491         * image.c: don't fail when the link points to an absolute path.
16493 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
16495         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
16496         Fix CID #3.
16498 2006-08-17  Miguel de Icaza  <miguel@novell.com>
16500         * image.c (full_path): A new method used to obtain the actual path
16501         of an assembly even in the presence of symbolic links.  
16503         This is necessary for the case where we are running a binary that
16504         has been GACed, but we are using the "published" path name
16505         ($prefix/mono/1.0/blah.exe) which happens to point to the real
16506         file in the GAC.
16508         This was the source of the failure for the `xsp' command with the
16509         recent AppDomain changes, as far as the runtime was concerned,
16510         there were two different assemblies: $prefix/mono/1.0/blah.exe and
16511         $prefix/mono/gac/blah/version/blah.exe.
16513         (do_mono_image_open): use full path
16515 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16517         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
16519 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
16521         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
16522         domain_id is supplied. Fix CID #241 and corlib's unit tests.
16524 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16526         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
16527         small structures. Fixes #78990.
16529 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16531         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
16533         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
16535 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16537         * appdomain.c:
16538         * marshal.c: don't load all the assemblies from a domain into newly
16539         created ones. The new domains might have different rules and load
16540         assemblies from different locations. Fixes bug #76757.
16542         Patch by Lluis. Conflicts resolved by Brian Crowell.
16544 2006-08-16  Alp Toker  <alp@atoker.com>
16546         * socket-io.c: First half of the fix for #79084.
16547         Set sa_size to the length of the content, not that of the struct.
16548         Don't add NULL suffix to the content, this should be done in
16549         managed code if needed.
16551 2006-08-14  Raja R Harinath  <rharinath@novell.com>
16553         Fix part of #79012
16554         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
16555         mono_metadata_parse_type returns NULL.
16557 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
16559         * normalization-tables.h : new file for string normalization data.
16560         * locales.c, locales.h, icall.c :
16561           added load_normalization_resource() for string normalization,
16562           and icall as well.
16563         * Makefile.am : added normalization-tables.h to the sources.
16565 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
16567         * marshal.c: Add more helper functions to reduce code duplication and use them
16568         everywhere.
16570 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16572         * marshal.c: Fix non-x86 stdcall warnings.
16573         
16574         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16575         them everywhere.
16577 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16579         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16580         type check on multi-dimensional arrays. Fixes #79000.
16582 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16584         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16585         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16586         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16587         * class-internals.h: add is_com_object to class structure.
16588         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16589         null checks to COM object marshalling. Fix .ctor call on RCW.
16590         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16591         
16592         All code is contributed under the MIT/X11 license.
16594 2006-08-09  Dick Porter  <dick@ximian.com>
16596         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16597         racing mono_monitor_allocator_lock() somewhere, so don't delete
16598         the critical section for now.  Found by running and exiting
16599         monodevelop.
16601 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16603         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16604         (ves_icall_System_ComObject_FindInterface): Ditto.
16605         (ves_icall_System_ComObject_CacheInterface): Ditto.
16607         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16608         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16610 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16612         * threadpool.c: treat pipes from process asynchronous reads as sockets
16613         when reading from them, so we get select/poll or epoll to wait for
16614         data.
16616 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16618         * loader.c: Fix a typo (CID #233) in the null check.
16620 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16622         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16623         Hopefully fixes #78949.
16624         
16625         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16626         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16627         bytes. Fixes #78972.
16629 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16631         * filewatcher.c: we need to set errno here.
16633 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16635         * filewatcher.c: let Win32Exception get the error value.
16637 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16639         * filewatcher.c: translate errno into win32 errors for Win32Exception
16640         to know what happened.
16642 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16644         * threadpool.c: Fix more warnings.
16646         * assembly.c (search_loaded): Fix warnings.
16648         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16649         (mono_async_invoke): Ditto.
16651 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16653         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16654         entries for __ComObject type in addition to ComImport types.
16655         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16656         about hash table.
16657         
16658         All code is contributed under the MIT/X11 license.
16660 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16662         * image.c: avoid tentative loading of modulerefs that contain
16663         no metadata (P/Invoke library names).
16665 2006-07-28  Dick Porter  <dick@ximian.com>
16667         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16668         mono_loader_lock() somewhere, so don't delete the critical section
16669         for now.  Found by running and exiting monodevelop.
16671 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16673         * filewatcher.c: define the inotify syscalls when we're building on
16674         linux and have sys/syscall.h. The build system might not have support
16675         for inotify but the target system might have it.
16677 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16679         * domain.c: Documentation updates.
16681         * loader.c (mono_free_method): Do not release the method
16682         information if we are being profiled, as profilers will use this
16683         information at shut down to present some data to the user.
16685         This is needed so that the profiler does not crash, as the
16686         profiler tends to keep MonoMethods around, and they might become
16687         invalid if we free these.
16689         (mono_get_method_constrained): Return the original CIL stream
16690         method as well, so verification can be performed against it.
16692 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16694         * filewatcher.[ch]: support for inotify file system watcher.
16695         * icall.c: add new internal calls for the inotify file system watcher.
16697 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16699         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16700         #78888.
16702 2006-07-20  Dick Porter  <dick@ximian.com>
16704         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16705         warning.
16707 2006-07-20  Dick Porter  <dick@ximian.com>
16709         * threads.c (start_wrapper): Do the thread cleanup while we still
16710         hold a reference to its object.  Fixes bug 78123.
16712 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16714         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16715         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16716           "managed-to-managed".
16717         * icall.c: Redirect string constructors that take sbyte* to
16718           ves_icall_System_String_ctor_RedirectToCreateString.
16719         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16720           to CreateString () methods with matching signature.
16721         * reflection.c: Use original security informations for
16722           MONO_WRAPPER_MANAGED_TO_MANAGED.
16723         * security-manager.c: Use original security informations for
16724           MONO_WRAPPER_MANAGED_TO_MANAGED.
16725         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16726           that is a placeholder and only its address should be used.
16727         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16728           that is a placeholder and only its address should be used.
16730 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16732         Begin implementing COM Interop.
16733         * appdomain.c: Increment corlib version.
16734         * class.c: Set ComImport classes' parent to __ComObject.
16735         * loader.c: Mark cominterop methods as such.
16736         * domain.c: Add __ComObject class to MonoDefaults structure.
16737         * image.c: Add 2 hashtables to the image for COM Interop related methods
16738         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16739         using the mempool allocator
16740         
16741         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16742         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16743         declaration for mono_metadata_type_dup_mp.
16744         
16745         * debug-helpers.c: Added strings for two additional wrapper types
16746         * object.c: Create proxy objects for ComImport classes
16747         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16748         and added __ComObject class to MonoDefaults structure.
16749         
16750         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16751         MonoComInteropProxy and MonoComObject.
16752         
16753         * marshal.c: Added support for COM Interop
16754         (signature_cominterop): Converts managed signature to corresponding
16755         unmanaged COM signature.
16756         (cominterop_get_function_pointer): gets unmanaged function pointer via
16757         COM object vtable
16758         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16759         (cominterop_get_method_interface): returns interface type that method is defined on
16760         (mono_mb_emit_cominterop_call): emits native call to function pointer
16761         gotten from vtable
16762         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16763         that matches signature of unmanaged function.
16764         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16765         (cominterop_get_invoke): forwards call from proxy to __ComObject
16766         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16767         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16768         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16769         
16770         * marshal.h: Added Marshal icall declarations.
16771         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16772         so we can access them in finalizer
16773         
16774 2006-07-14  Dick Porter  <dick@ximian.com>
16776         * object.c (mono_type_initialization_cleanup): Fix a race
16777         condition by temporarily commenting out the critical section
16778         deletion.
16780 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16782         * reflection.c (create_custom_attr): Fix some warnings.
16783         (create_custom_attr_data): Ditto.
16784         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16785         types. Fixes #78855.
16787 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16789         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16791         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16793 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16795         * reflection.c (resolve_object): Add support for DynamicMethod.
16797         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16798         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16800 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16802         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16803         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16805 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16807         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16808         Fixes #77888.
16810 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16812         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16813         slightly: remove a shadow local variable.
16815 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16817         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16818         definition that introduces the virtual function slot.
16819         Also fix Coverity #105.
16821 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16823         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16824         for dynamic assemblies. Fixes #78724.
16826 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16828         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16829         Fixes #78722.
16831 2006-06-21  Martin Baulig  <martin@ximian.com>
16833         * reflection.c
16834         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16835         fixes #76484.
16837 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16839         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16841 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16843         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16844         nor TYPEREFs.
16845         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16846         Inflate result if necessary.
16847         (mono_class_get_full): Remove old version.  Rename from
16848         'mono_class_get' and add 'context' argument.  Pass it to
16849         ..._create_from_typespec.
16850         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16851         (mono_ldtoken): Revert change below.
16853 2006-06-20  Martin Baulig  <martin@ximian.com>
16855         * class.c (mono_ldtoken): Don't pass the generic context to
16856         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16858 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16860         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16861         and later freeing it. Fixes #78638.
16863 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16865         * icall.c (mono_class_get_throw): Revert over-zealous error
16866         throwing, the caller for mono_class_get_throw will cope with
16867         errors when classes are not properly initialized already.
16869         The code still copes with loader exceptions though.
16871         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16872         
16873 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16875         Fixes the `make run1' version of RuntimeAbort (to be commited,
16876         source is in Bugzilla).
16877         
16878         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16879         FALSE on class loading failure instead of returning true.
16881         * class.c (mono_class_create_from_typedef): It is possible for
16882         mono_metadata_interfaces_from_typedef_full to fail if a class is
16883         not found, cope with this.
16884         
16886 2006-06-14  Dick Porter  <dick@ximian.com>
16888         * socket-io.c: 
16889         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16890         4.1.1
16892 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16894         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16896 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16898         * icall.c: Another fix for building mono in Visual Studio.
16900 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16902         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16903         
16904 2006-06-09  Martin Baulig  <martin@ximian.com>
16906         * debug-mono-symfile.c: Put this back and really fix it this
16907         time. Sorry for all the trouble.
16909 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16911         * icall.c (mono_class_get_throw): Fix a warning.
16912         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16913         ReflectionTypeLoadException if needed. Fixes #78606.
16915         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16916         (mono_class_init): Ditto.
16918         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16919         ref_only exceptions.
16920         (mono_loader_clear_error): Make this work even if there is no error.
16922 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16924         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16925         Marshal.GetComSlotForMethodInfo using internal call.
16927 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16929         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16930         a function for signalling it.
16932         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16933         a referenced assembly is not found.
16935         * loader.c (mono_loader_error_prepare_exception): Add support for 
16936         LOADER_ERROR_ASSEMBLY. Fix formatting.
16938 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16940         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16941         for VARIANT marshalling on windows and increment corlib version
16942         since Variant struct was added.
16944 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16946         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16947         stack trace line information:
16949         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16950         (Martin) when looking up B which is between A and C, return A not C.
16952         Bug is #78573.
16954         Thanks to Alexander Olk for tracking this down.
16956 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16958         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16959         
16960         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16961         avoid clobbering its value.
16962         (mono_string_to_lpstr): Fix a warning on windows.
16964 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16966         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16968         * reflection.c loader.c: Removed references to 'dummy' flag.
16970         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16972         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16973         it gets GC tracking.
16975         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16976         GC tracking.
16977         
16978         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16980         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16982         * appdomain.c: Bump corlib version.
16984 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16986         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16987         CEE_STIND_REF when working with object references.
16989 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16991         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16992         Fixes #78539.
16994 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16996         * loader.c (method_from_memberref): Fix argument value for
16997         mono_loader_set_error_method_load (I was passing the MonoClass
16998         instead of the class name char *).
17000 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
17002         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
17003         CEE_STIND_REF when working with object references.
17005 2006-05-30  Martin Baulig  <martin@ximian.com>
17007         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
17008         mono_method_full_name() change and replace the ':' with a '.'
17009         here.
17011 2006-05-30  Martin Baulig  <martin@ximian.com>
17013         * debug-mono-symfile.c
17014         (mono_debug_symfile_lookup_location): Fix the algorithm:
17015         when looking up B which is between A and C, return A not C.
17017 2006-05-29  Martin Baulig  <martin@ximian.com>
17019         * mono-debug.h
17020         (MonoDebugMethodInfo): Make the typedef public.
17021         (MonoDebugSourceLocation): New public struct.
17023         * mono-debug.c
17024         (mono_debug_source_location_from_address): Removed.
17025         (mono_debug_source_location_from_il_offset): Removed.
17026         (mono_debug_il_offset_from_address): Removed.
17027         (mono_debug_address_from_il_offset): Removed.
17028         (mono_debug_lookup_method): New public function.
17029         (mono_debug_lookup_source_location): New public function; replaces
17030         the old mono_debug_source_location_from_*() functions; see the
17031         inline documentation.
17032         (mono_debug_free_source_location): New public function.
17033         (mono_debug_print_stack_frame): New public function; see the
17034         inline documentation.
17036         * debug-mono-symfile.c
17037         (mono_debug_find_source_location): Renamed into
17038         mono_debug_symfile_lookup_location(); only take a
17039         `MonoDebugMethodInfo *' and an `offset' argument; added inline
17040         documentation.
17041         (mono_debug_find_method): Renamed into
17042         mono_debug_symfile_lookup_method().
17044 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
17046         * assembly.c (mono_assembly_open_full): Dont overwrite the status
17047         returned by mono_image_open_full ().
17049         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
17050         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
17051         #78517.
17053         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
17054         #78518.
17056 2006-05-27  Miguel de Icaza  <miguel@novell.com>
17058         * class.c (mono_class_from_typeref): handle missing images
17059         earlier, deals with bug #78418.   Refactor code; 
17061         Fix a warning introduced in my previous commit (some stale code
17062         from before I revisited my patch).
17064         * class.c (mono_class_create_from_typedef): On failure, remove the
17065         class from the MonoImage->class_cache as the class is not
17066         initialized;   Fixes the leak pointed out by Paolo.
17068 2006-05-25  Dick Porter  <dick@ximian.com>
17070         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
17071         DeleteCriticalSections until I figure out which one may still be
17072         sometimes locked when mono_thread_cleanup is called.
17074 2006-05-24  Dick Porter  <dick@ximian.com>
17076         * threads.c (mono_thread_cleanup): Move the threading cleanup out
17077         of mono_thread_manage and back into its own function, so it can be
17078         called after the finalizer thread has finished.
17080         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
17082 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
17084         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
17085         Fixes #78495.
17087         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
17088         with non-blittable elements.
17089         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
17091 2006-05-24  Martin Baulig  <martin@ximian.com>
17093         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17094         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
17096         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
17097         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
17098         `mono_debugger_event_handler' to NULL.
17100 2006-05-24  Martin Baulig  <martin@ximian.com>
17102         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
17104 2006-05-24  Martin Baulig  <martin@ximian.com>
17106         * mono-debug-debugger.h
17107         (mono_debugger_create_notification_function): Added
17108         `MonoCodeManager *' argument.
17110 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
17112         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
17114 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
17116         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
17117         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
17118         implementation.
17120 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
17122         * icall.c: precise GC support: objects can't be stored in unmanaged
17123         memory anymore, even if they are kept alive by other references: since
17124         they can move the GC needs to be able to always find them.
17126 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17128         * object.c: precise GC support for static fields. Support
17129         for moving GCs: write barriers and pinned allocation for interned
17130         strings.
17132 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17134         * domain.c, domain-internals.h: precise GC support for the MonoDomain
17135         structure.
17137 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17139         * class.c, gc.c: sgen and precise GC updates.
17141 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
17143         * marshal.h, marshal.c: added write barrier wrapper and precise type
17144         fixes.
17146 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
17148         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
17149         support.
17151 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17153         * reflection.c: precise and sgen GC updates.
17155 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
17157         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
17159 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
17161         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
17163 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
17165         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
17166         MONO_TYPE_OBJECT. Fixes #78462.
17168 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
17170         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
17171         and blittable types.
17173 2006-05-17  Miguel de Icaza  <miguel@novell.com>
17175         * class.c (mono_class_get_exception_for_failure): Implement parts
17176         of a TODO: if the loader error is set (instead of the class
17177         error), we return a Loader exception that can be properly thrown
17178         elsewhere.
17180         This was exposed by some Winforms 2.0 code that I tried to run
17181         (Atsushi pointed me to it).
17183 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
17185         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
17186         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
17187         
17188         * marshal.c (emit_marshal_vtype): Add limited support for 
17189         UnmanagedType.LPStruct. Fixes #78427.
17191         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
17192         Applied a patch from kangaroo to fix #77523.
17194 2006-05-17  Martin Baulig  <martin@ximian.com>
17196         * threads.c
17197         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
17198         (debugger_thread_created): Removed.
17199         (debugger_thread_exited): Removed.
17201 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
17203         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17205         * object-internals.h (MonoReflectionResource): Sync with managed version.
17207 2006-05-12  Wade Berrier <wberrier@novell.com>
17209         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
17211 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
17213         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
17214         functions try to allocate from the image mempool.
17216 2006-05-12  Dick Porter  <dick@ximian.com>
17218         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
17220 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
17222         * object.c: The FieldGetter and FieldSetter methods require the full
17223         name of the class, not only the name. Fixes bug #78277.
17225 2006-05-11  Miguel de Icaza  <miguel@novell.com>
17227         * loader.c (method_from_memberref): Do not pass the NULL klass to
17228         mono_loader_set_error_() methods.  Pass the non-NULL value
17229         (class). 
17231 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
17233         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
17234         (mono_assembly_close): Null out assembly->image->references after freeing it.
17236         * image.c (mono_image_close): Free image->references.
17237         
17238         * reflection.c (mono_image_basic_init): Fix a small memory leak.
17240 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17242         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
17243         before checking if it's NULL (g_assert).
17245 2006-05-10  Martin Baulig  <martin@ximian.com>
17247         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
17248         I thought I already killed that two months ago, but now it somehow reappeared.
17250 2006-05-10  Martin Baulig  <martin@ximian.com>
17252         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
17254 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
17256         * reflection.c: Allocate memory for dynamically created methods in the image
17257         mempools.
17259 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17261         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
17262         don't use the ad pointer before checking if it's NULL (g_assert).
17264 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
17266         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
17267         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
17269         * marshal.c: Allocate all signatures from mempools.
17271         * marshal.c: Allocate some more signatures from mempools.
17273 2006-05-09  Miguel de Icaza  <miguel@novell.com>
17275         * object.c (mono_load_remote_field): The code used to provide a
17276         temporary variable for returning results if the user did not
17277         provide a result pointer.  But our temporary variable was allocted
17278         on the satck.
17280         Fix calling code to always pass a result area.   Coverity ID 103.
17282 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
17284         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
17285         value, not the old. Fixes #78312.
17286         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
17288         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
17289         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
17290         per-image cache.
17292         * assembly.c (mono_assembly_close): Free image->references.
17294         * assembly.c (mono_assembly_names_equal): Fix a warning.
17295         (mono_assemblies_cleanup): Cleanup more global data.
17297         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
17299         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
17300         ptr_cache and image->modules.
17302         * image.c (mono_image_init): Allocate array_cache lazily.
17303         
17304 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17306         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
17307         behavior was changed recently and has bad side effects.
17309 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
17311         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
17312         
17313         * assembly.c (mono_assembly_close): Remove a debug printf.
17315         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
17317         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
17318         to also allow for temporary references between mono_image_open ()/close ().
17320         * domain.c (get_runtimes_from_exe): Add a FIXME.        
17322 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
17324         * marshal.c: Fix support for dynamic methods.
17326         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
17328         * marshal.c (mono_marshal_cleanup): New cleanup function.
17330         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
17331         image mempools.
17333         * class.c (mono_class_init): Fix leaking class->nested_classes.
17335         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
17337         * image.c (mono_image_init): Initialize the new cashes.
17339         * image.c (mono_image_close): Destroy the new cashes.
17341         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
17343         * mempool.c (mono_mempool_strdup): New helper function.
17345         * class-internals.h: Add prototype for mono_loader_unlock ().
17347         * domain.c (mono_jit_info_table_find): Fix a warning.
17348         (mono_debugger_check_runtime_version): Ditto.
17350         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
17351         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
17352         functions to these modules.
17354         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
17355         metadata modules.
17356         
17357         * marshal.c (mono_free_bstr): Fix a warning.
17359         * assembly.c (mono_assembly_open_full): Fix another small leak.
17361         * object.c: Fix some unload leaks in the remoting code.
17363         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
17364         function.
17366         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
17368         * reflection.c: Fix some unload leaks in dynamic assemblies.
17370 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
17372         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
17373         * marshal.h: Add BSTR support on Win32
17374         * icall.c: Add BSTR icalls
17375         * metadata.h: Add BSTR enums
17377 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17379         Work to catch the crash from #76795 and turn it into an
17380         exception.   As I stubbed out pieces of the VisualBasic support,
17381         I found a number of places where the code was failing and I added
17382         checks to those places. 
17383         
17384         * metadata.c (do_mono_metadata_parse_generic_class): Make this
17385         function return a status code.  If we fail to parse the signature
17386         from mono_metadata_parse_generic_inst, return FALSE.
17388         * loader.c (mono_get_method_from_token): If we fail to load the
17389         method (mono_class_get) return NULL.   
17391         * (method_from_memberref): Return NULL if we are unable to parse
17392         the method signature
17394         (mono_loader_error_prepare_exception): Since we now use the
17395         loader_error flag internally to stop processing, and obtaining
17396         exceptions that might be thrown will walk this code path the
17397         proper way of going from a MonoLoaderError into a
17398         MonoException was convoluted.   This new routine encapsulates the
17399         process of turning the error into an exception and *clearing* the
17400         error afterwards.
17401         
17402 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17404         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
17405         with missing assemblies), and to cope with:
17407                 * Missing fieldref from a non-existing assembly.
17408                 * Missing methodref from a non-existing assembly.
17410         The first batch of work to address *some* of the issues from 76661.
17411         
17412         * object.c (mono_class_create_runtime_vtable): If we fail to
17413         initialize the class raise the exception here. 
17415         * metadata.c (mono_class_get_overrides_full): If any methods fail
17416         to load return the failure to the caller.
17418         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
17419         flagging assemblies that failed to load.   
17421         Do not crash if we are unable to load the assembly.
17423         (mono_assembly_close): Do nothing with REFERENCE_MISSING
17424         assemblies. 
17426         * loader.c (mono_loader_set_error_type_load): Change the
17427         convention to always pass unallocated strings, so we make our own
17428         copies (I know our own code had duplicated strings before, but
17429         this keeps the normal conventions).
17430         (method_from_memberref): Call mono_loader_set_error_method_load
17431         for all possible failures of loading the class. 
17432         Remove assert, turn into a loader error.
17434         (mono_loader_error_to_exception): Move this routine from mini
17435         (mini_loader_error_to_exception) there was no need to have that in
17436         mini. 
17438         * class.c (mono_class_from_typeref): If we were not able to load
17439         the assembly with mono_assembly_load_reference, call the
17440         mono_loader_set_error_type_load to register the problem.
17442         (mono_class_setup_fields): If we fail to load the type from
17443         mono_metadata_parse_type_full, call mono_class_set_failure and
17444         break from the loop.
17446         If class->exception_type is set, we do not layout the fields as
17447         that might crash the runtime, and instead return (from breaking
17448         from the previous loop).
17450         (mono_class_setup_vtable): This now returns a boolean indicating
17451         whether the table was properly setup.   The decision is driven by
17452         mono_class_get_overrides_full which might run into non-existing
17453         methods. 
17454         
17455         (mono_class_init): Returns TRUE on success or FALSE if there was a
17456         problem in loading the type (incorrect assemblies, missing
17457         assemblies, methods, etc).
17459         When we call mono_class_setup_fields we also check for a potential
17460         error inside this call (either a class exception or a general
17461         loader exception).
17463         (mono_class_create_from_typedef): If the parent fails to load
17464         (calling mono_class_get_full) return NULL.
17465         
17466         ** Important **
17468         calls to mono_metadata_parse_type_full should be checked
17469         everywhere and set the mono_class_set_failure
17470         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
17472         The current patch checks the places where my manually constructed
17473         tests show the errors are showing up, but we should do it
17474         everywhere. 
17476         ** Important2 **
17478         mono_class_init return values should be tested everywhere, like
17479         the previous case this is something that we should audit
17480         everywhere and not only on the cases exposed by the tests I
17481         created. 
17483 2006-04-26  Miguel de Icaza  <miguel@novell.com>
17485         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
17486         boolean parameter and instead pass the information on `options'
17487         parameter (FileOptions).
17489         * icall.c: Register the new signature for MonoIO.Open.
17491         * debug-helpers.c (dis_one): Trying to understand how coverity
17492         works.  Fix Run 5, item 78.
17494 2006-04-26  Dick Porter  <dick@ximian.com>
17496         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
17497         dereference.
17499 2006-04-25  Martin Baulig  <martin@ximian.com>
17501         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
17503         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
17504         debugger_thread_created().
17505         (debugger_gc_push_all_stacks): Don't handle the main thread in any
17506         special way.
17507         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
17508         (mono_debugger_finalize_threads): New function; undo the effects
17509         of mono_debugger_init_threads().
17510         (mono_debugger_create_all_threads): Removed.
17512 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17514         * image.c (mono_image_close): Tidy up trace messages.
17516         * assembly.c (mono_assembly_close): Ditto.
17518         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
17519         no longer references an already freed assembly. Fixes #78168.
17521 2006-04-21  Dick Porter  <dick@ximian.com>
17523         * threads.c (mono_thread_detach): Fix reference counting when
17524         detaching threads.
17526 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
17528         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
17529         #78155.
17531 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17533         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
17534         (mono_type_to_stind): Ditto.
17536         * marshal.c: Use the new helper functions to simplify code.
17538         * image.c (mono_image_close): Add some code for help debug assembly unloading
17539         problems.
17541         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
17542         image mempool.
17544         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
17545         assembly was already loaded in another appdomain. Fixes #78083.
17547 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
17549         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
17550         referenced assemblies.
17551         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
17553         * domain.c (mono_domain_free): Add a trace message.
17555         * appdomain.c (add_assemblies_to_domain): Ditto.        
17557         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
17558         field.  
17560 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17562         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
17564 2006-04-12  Martin Baulig  <martin@ximian.com>
17566         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
17567         `USE_INCLUDED_LIBGC'.   
17569 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17571         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17572         the patch contains ../ and a small directory name later. Hopefully fixes
17573         #78035.
17575 2006-04-10  Martin Baulig  <martin@ximian.com>
17577         Clean up the debugger's thread-handling code.
17579         The debugger's thread-handling code has been moved from
17580         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17581         over the `threads' hash, keep track of exiting threads and also
17582         use proper locking.
17584         We can now debug XSP and XSP based applications with the debugger.
17586         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17588         * threads.h
17589         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17590         (mono_install_thread_callbacks): Likewise.      
17592         * threads.c (mono_thread_callbacks): Removed.
17593         (debugger_thread_created, debugger_thread_exited): New static functions.
17594         (start_wrapper): Call debugger_thread_created().
17595         (thread_cleanup): Call debugger_thread_exited().
17596         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17597         (mono_debugger_init_threads): New public function.
17598         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17599         iterate directly over the `threads' hash and also use proper locking.
17601         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17603         * mono-debug-debugger.h
17604         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17606 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17608         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17609         argument type=array. Fixes #78057.
17611 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17613         * culture-info-table.h : regenerated. Fixed bug #69652.
17615 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17617         * loader.c metadata.c: Reapply a variant r59116.
17618         
17619         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17621         * class.c (mono_class_setup_interface_offsets): New internal function.
17623         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17624         interfaces too. Fixes #77398.
17626         * reflection.c (encode_cattr_value): Add support for 
17627         parameter type=object, argument type=array.
17628         (load_cattr_value): Ditto. Fixes #77916.
17630         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17631         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17633         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17634         a byval char array and CharSet is Ansi.
17636         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17638 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17640         * metadata.c: Add some locking comments.
17641         
17642         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17643         mempool.
17644         (mono_metadata_free_method_signature): Don't free the signature itself.
17646         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17648         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17649         reference the same MonoImage.
17650         (mono_assembly_load_from_full): Add an assert.
17652 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17654         * image.c (mono_image_close): Don't put the image we are about to free into the
17655         loaded_images_guid_hash.
17657         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17658         to reduce code duplication.
17660         * marshal.c: Register the native functions called by this module as icalls, to
17661         somewhat centralize the creation of MonoMethodSignature's.
17663         * loader.c (mono_method_signature): Add a cache for method signatures.
17665         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17666         the parameter attributes of a method.
17667         (mono_metadata_parse_method_signature_full): Refactored the computation of
17668         parameter attributes into a separate function. Also avoid one allocation in
17669         most cases.
17671         * assembly.c (mono_assembly_close): Ditto.
17673         * image.c (mono_image_close): Log trace messages with INFO level.
17675         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17677         * image.c reflection.c: Correct reference counting of image modules.
17678         
17679         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17680         of this function from the image mempool.
17681         
17682         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17683         to allow more cached types to be used.
17685         * mono-debug.c (mono_debug_add_method): Appled patch from
17686         David S. Miller  <davem@sunset.davemloft.net>: Access 
17687         minfo->lexical_blocks[] entry elements using read32().
17689 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17691         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17692         methods as it is allocated from the mempool.
17694         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17695         image mempool.
17697         * metadata-internals.h: Add comments describing the reference counting scheme
17698         used for MonoImage and MonoAssembly.
17700         * image.c assembly.c reflection.c: Rework reference counting of images and 
17701         assemblies so they are freed when the runtime is shut down. Free some 
17702         additional memory structures when an image is unloaded.
17703         
17704 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17706         * class.c loader.c reflection.c: Allocate more data structures in
17707         the image mempool.
17709 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17711         * icall.c
17712         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17713         build on pre glib 2.4 systems.
17715 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17717         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17719         * icall.c: Fix some warnings.
17721 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17723         * culture-info-table.h : regenerated.
17725 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17727         * threads.c, object-internals.h, verify.c: changed the culture caching
17728         code to use a normal MonoArray for storage so the GC can keep track of
17729         them easily. Fixed bits of the cache logic, too and simplified the
17730         code.
17732 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17734         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17735         thread for non-Boehm GCs.
17737 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17739         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17740         needed to keep track of the data for static fields.
17742 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17744         Fix #75172
17745         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17746         for interface classes.  Use 'num_methods' instead.
17747         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17748         before using '->vtable_size' field.
17750 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17752         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17753         doesn't contain managed pointers, so use a normal hashtable.
17755 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17757         * reflection.c, class-internals.h, domain.c: fixed handling of types
17758         used as values for objects in custom attributes (bug #77915):
17760 2006-03-24  Martin Baulig  <martin@ximian.com>
17762         * class.c (mono_class_setup_fields): Added support for generic
17763         instances; fixes #77580.
17765 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17767         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17769 2006-03-24  Dick Porter  <dick@ximian.com>
17771         * file-io.c (get_file_attributes): More stat macro breakage.
17772         Fixes bug 77759.
17774 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17776         * profiler.c: added the file=filename option in the default profiler
17777         to output the profile data to filename.
17779 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17781         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17782         bug #77877.
17784 2006-03-22  Martin Baulig  <martin@ximian.com>
17786         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17787         allocated `MonoClassField *' in `fb->handle'.
17789 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17791         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17792         allocate interface ID to save memory and allow better ID reuse on
17793         appdomain unload. setup_generic_vtable () removal from Martin.
17795 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17797         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17798         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17799         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17800         write barriers for reference stores with managed objects accessed with
17801         C structures in the runtime and in embedding programs.
17803 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17805         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17806         'interface_id' and 'max_interface_id' fields of MonoClasses
17807         representing open generic types.
17809 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17811         * object.h, object.c, icall.c: added functions to deal with
17812         storing valuetypes that contain references in managed objects.
17813         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17814         fixes and comments around uses of mono_array_addr ().
17816 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17818         * object.h, icall.c, monitor.c: object.GetHashCode ()
17819         implementation that supports the moving garbage collector.
17821 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17823         * icall.c, threads-types.h, threads.c: implemented finalizer for
17824         LocalDataStoreSlot.
17826 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17828         * metadata.c (mono_type_size): Add a fixme.
17829         (mono_type_stack_size): Ditto.
17831         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17832         'type_forwarders' field.
17834         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17835         attribute from net 2.0.
17837         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17838         from class.c.
17840         * class.c (mono_class_setup_fields): Fix a warning.
17841         
17842         * class.c (mono_class_from_name): Add support for assemblyref entries
17843         in the EXPORTEDTYPE table.
17845         * reflection.c: Add support for handling type forwarders under net 2.0.
17847         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17848         
17849 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17851         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17852         overwriting entries in ModuleBuild->types, also clean up the code
17853         a little. Fixes #77774.
17855 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17857         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17858         load friend assembly info when present.
17860 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17862         Fix crasher on gtest-158.cs.
17863         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17864         the return value if the MonoClass we want is yet in an
17865         inconsistent state.
17866         * class.c (mono_class_create_from_typedef): Add an comment
17867         explaining an order dependency between mono_class_setup_parent and
17868         mono_class_setup_mono_type.
17870 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17872         * class.c: documentation updates and events bug fix.
17874 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17876         * class.c: some cleanup, locking fixes.
17878 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17880         * class.c: fix the generics code to setup nested
17881         type info to the instantiated type (bug #77770).
17883 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17885         * marshal.c: fixed a few type correctness issues.
17887 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17889         * loader.c: the Set/Get/Addrtess array methods should be public.
17891 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17893         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17894         
17895         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17896         info->wrapper.
17898 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17900         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17902         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17904         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17905         (mono_mempool_alloc0): Ditto.
17907 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17909         * socket-io.c:
17910         (create_object_from_sockaddr): it was allocating 4 extra bytes
17911         for the AF_UNIX data. Fixes bug #77747.
17913 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17915         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17917 2006-03-09  Dick Porter  <dick@ximian.com>
17919         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17920         Fixes bug 76966 again.
17922 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17924         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17925         names from r57532
17926         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17928 2006-03-07  Martin Baulig  <martin@ximian.com>
17930         * object.c
17931         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17933 2006-03-07  Martin Baulig  <martin@ximian.com>
17935         * class.c
17936         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17937         regression introduced in r56970; see gtest-252.cs.
17939         * loader.c (mono_get_method_constrained): Correctly handle generic
17940         methods; see gtest-253.cs.
17942 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17944         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17946 2006-03-04  Martin Baulig  <martin@ximian.com>
17948         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17949         compute the parent type at runtime, just like we're already doing
17950         it for interfaces.
17952         * reflection.c
17953         (mono_reflection_bind_generic_parameters): Don't compute the
17954         parent type anymore.
17956         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17958 2006-03-04  Martin Baulig  <martin@ximian.com>
17960         * mono-debug-debugger.h
17961         (mono_debugger_create_notification_function): Allocate memory at
17962         runtime and return a pointer to it.
17964 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17966         * assembly.c: Fix windows build.
17967         
17968         * assembly.c: Fix build.
17970         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17972         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17973         
17974 2006-03-03  Dick Porter  <dick@ximian.com>
17976         * process.c
17977         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17978         Check parameters before dereferencing them.  Fixes Aaron's part of
17979         bug 77393.
17981 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17983         Fix performance regression.
17984         * loader.c (find_method_in_class): Add 'from_class' argument.
17985         Rename 'klass' argument to 'in_class'.  The signature is compared
17986         against the method in 'in_class', and the corresponding method is
17987         returned from 'from_class'.
17988         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17989         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17990         type definition and generic instantiation in parallel.
17991         (mono_get_method_constrained): Update to changes.
17993 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17995         * threads.c: make sure the domain is correct, too when doing
17996         mono_thread_attach ().
17998 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
18000         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
18001         windows. Fixes #77683.
18003 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
18005         * object.h, *: introduced specific way to set elements of an array
18006         of references to be used as write barrier. Still need to audit the
18007         uses of mono_array_addr.
18009 2006-03-01  Miguel de Icaza  <miguel@novell.com>
18011         * object-internals.h: New field to cache the assmebly name, patch
18012         from Tambet Ingo (tambet@ximian.com)
18014 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18016         * decimal.h, class-internals.h, metadata-internals.h,
18017         file-io.h: mark a few function declarations as internal, to
18018         reduce the number of PLT entries.
18020 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18022         * file-io.c: fix typo in warning message.
18024 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
18026         * loader.c: on unix, lookup the "*A" version of a function
18027         if charset is auto as a second option before failing.
18029 2006-02-28  Raja R Harinath  <rharinath@novell.com>
18031         * class.h (mono_class_inflate_generic_method): Revert to two
18032         argument version.
18033         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
18034         (mono_class_inflate_generic_method_full): Add.
18035         * class.c (mono_class_inflate_generic_method_full): Rename from
18036         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
18037         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
18038         * loader.c, reflection.c: Update to changes.
18040 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
18042         * icall.c: const fixes and small improvements.
18044 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18046         * threadpool.c: for asynchronous connect(), enable the same workaround
18047         for BSD 6 as for the Mac. Fixes bug #77637.
18049 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
18051         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
18052         formatted classes. Fixes #77524.
18054 2006-02-24  Raja R Harinath  <rharinath@novell.com>
18056         * class.c (inflate_generic_type): Add a couple more
18057         micro-optimizations.
18058         (inflate_generic_context): Don't use the 'gmethod' from
18059         'inflate_with'.
18060         (mono_class_inflate_generic_method): If the method has generic
18061         parameters, but the passed-in context doesn't have a 'gmethod',
18062         create one.  Use the possibly simplified generic instantiation
18063         from the declaring class instead of the one passed in.
18065 2006-02-24  Raja R Harinath  <harinath@gmail.com>
18067         Make generic method signature and method header handling lazy.
18068         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
18069         (inflate_generic_header): Likewise.
18070         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
18071         parameter to avoid inflating types.
18072         (mono_get_inflated_method): Empty out.
18073         * class.h (mono_class_inflate_generic_method): Update to changes.
18074         * loader.c (mono_get_method_from_token): Don't parse signature for
18075         generic methods, nor methods of generic classes.
18076         (mono_method_signature): Rename from 'mono_method_signature'.
18077         Inflate signature on demand.
18078         (mono_method_get_header): Inflate method header on demand.
18079         * reflection.c: Update to changes.
18081 2006-02-23  Raja R Harinath  <rharinath@novell.com>
18083         * metadata.c (mono_metadata_inflate_generic_inst): If the
18084         instantiation is closed, don't bother expanding it in the new
18085         context.
18086         * class.c (inflate_generic_class): If the generic instantiation
18087         doesn't change after inflation, return the argument itself.
18088         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
18089         Add bounds checks.
18090         (inflate_generic_context): If neither the generic class nor the
18091         generic method instantiations change, return the original context.
18092         * reflection.c (mono_method_get_object): Do
18093         'mono_get_inflated_method' before accessing the ->klass field.
18094         (inflate_mono_method): Don't create a MonoGenericMethod unless
18095         necessary.
18096         (inflate_method): Don't pass a constructed type as the declaring
18097         type of a methodbuilder.
18099 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
18101         * object.c: fix memory overwrite.
18103 2006-02-22  Dick Porter  <dick@ximian.com>
18105         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
18106         it doesn't work any more.
18107         (mono_threads_request_thread_dump): Fix unused variable warnings.
18109 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18111         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
18112         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
18113         the public header file.
18115 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
18117         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
18119 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
18121         * class-internals.h, object.c: reduce the size of MonoVTable
18122         and store the interface_offsets array at negative offsets.
18124 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
18126         * metadata.c: tweak table descriptors data structures to reduce
18127         size and runtime relocations.
18129 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18131         * marshal.c: fix some types and opcodes to be type-safe
18132         in marshaling wrappers.
18134 2006-02-21  Ankit Jain  <jankit@novell.com>
18136         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
18138 2006-02-21  Raja R Harinath  <rharinath@novell.com>
18140         * metadata.c (get_constraints): Relax debugging checks for monodis.
18142 2006-02-21  Ankit Jain  <jankit@novell.com>
18144         * metadata.c (mono_metadata_load_generic_params): Move the code
18145         checking for ambiguous generic params from here to mono/dis/get.c
18146         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
18148 2006-02-21  Raja R Harinath  <harinath@gmail.com>
18150         Fix assertion triggered when compiling nemerle.
18151         * class.c (mono_get_shared_generic_inst): Rename from
18152         get_shared_inst and make non-static.
18153         * loader.c (mono_get_shared_generic_method): New.  Used to create
18154         the MonoGenericContext-equivalent of a MonoGenericContainer.
18155         (mono_get_method_from_token): Initialize the 'context' field of
18156         the created MonoGenericContainer.
18157         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
18158         * metadata.c (get_constraints): Add sanity check.
18159         * class-internals.h: Add new internal methods.
18161         * reflection.c (verify_safe_for_managed_space): New sanity check.
18162         Currently checks that owner-less generic parameters aren't allowed
18163         in managed space.
18164         (mono_type_get_object): Use it.
18165         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
18166         that are now in mono_type_get_object.
18167         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
18169 2006-02-19  Raja R Harinath  <harinath@gmail.com>
18171         * metadata.c (mono_type_create_from_typespec): Rename from
18172         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
18173         argument and caching of types in the generic container.
18174         (unwrap_arrays, find_generic_param): Remove.
18175         * metadata-internals.h: Update.
18176         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
18178 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
18180         * class.c (mono_class_get_exception_for_failure): Fix a warning.
18182         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
18183         return values. Fixes #77581.
18185         * class.c (mono_fnptr_class_get): Switch name and name_space.
18187         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
18188         classes and add support for [In, Out] attributes.
18189         (mono_marshal_free_asany): Ditto. Fixes #77524.
18191 2006-02-18  Raja R Harinath  <harinath@gmail.com>
18193         * class.c (mono_class_from_generic_parameter): Make more robust to
18194         incomplete MonoGenericContainers from monodis.
18196 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18198         * class-internals.h: added some more exception types.
18199         * class.c, metadata.c: added a few checks to handle missing
18200         types.
18202 2006-02-17  Raja R Harinath  <rharinath@novell.com>
18204         Use owner-less generic-params some more.
18205         * class.c (my_mono_class_from_generic_parameter): Remove.
18206         (mono_class_from_generic_parameter): Handle null image,
18207         param->name and param->owner.
18208         (mono_class_from_mono_type): Update.
18209         (mono_class_create_from_typespec): Remove 'container' parameter.
18210         If that parameter is non-null, the result is always inflated by
18211         'mono_class_get_full' anyway.
18212         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
18213         parameter.
18214         (mono_class_get_full): Update.
18216         * class.c (inflate_generic_type) [GENERICINST]: If the generic
18217         instance is not open, don't bother inflating.
18218         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
18219         parse metadata for inflated classes.
18220         (_mono_class_get): Change GenericContext* parameter to
18221         GenericContainer*.
18222         (mono_class_create_from_typespec): Likewise.  Simplify, and
18223         implement trivially.  All the cases are handled in
18224         mono_class_from_mono_type.  Don't inflate returned class.
18225         (mono_class_get_full): Delegate GENERICINST optimization to
18226         inflate_generic_type.
18227         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
18229 2006-02-16  Dick Porter  <dick@ximian.com>
18231         * socket-io.c (create_object_from_sockaddr): Fix typo.
18232         (create_sockaddr_from_object): Check array lengths before
18233         potentially accessing items off the end.
18234         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
18235         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
18236         (ves_icall_System_Net_Sockets_Socket_Send_internal)
18237         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
18238         length checks to avoid wraparound overflows.
18239         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
18240         contents of the array of sockets
18241         (hostent_to_IPHostEntry2)
18242         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
18243         Check return value of inet_ntop ().
18244         (addrinfo_to_IPHostEntry): Fix typo
18246 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18248         Type metadata parsing doesn't use generic-instantiation information.
18249         * metadata.c (mono_metadata_parse_array_full): Change
18250         MonoGenericContext* parameter to MonoGenericContainer*.
18251         (mono_metadata_parse_type_full): Likewise.
18252         (mono_type_create_from_typespec_full): Likewise.
18253         (mono_metadata_parse_mh_full): Likewise.
18254         (mono_metadata_parse_generic_inst): Likewise.
18255         (do_mono_metadata_parse_generic_class): Likewise.
18256         (do_mono_metadata_parse_type): Likewise.
18257         * metadata-internals.h: Update to changes.
18258         * class.c (mono_class_find_enum_basetype): Likewise.
18259         (mono_class_setup_fields): Likewise.
18260         (mono_class_create_from_typespec): Likewise.
18261         * loader.c (method_from_methodspec): Likewise.
18262         (mono_get_method_from_token): Likewise.
18263         (mono_method_get_header): Likewise.
18265 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18267         * marshal.c: handle additional GENERICINST case (patch from
18268         Thong Nguyen <tum@veridicus.com>).
18269         Fix a few cases where LDIND_I/STIND_I was used for references.
18271 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18273         * reflection.c (mono_reflection_get_token): Remove unused variable.
18275 2006-02-16  Martin Baulig  <martin@ximian.com>
18277         * reflection.c (mono_reflection_get_token): Add support for fields
18278         in instantiated generic types.
18280         * icall.c
18281         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
18283 2006-02-15  Martin Baulig  <martin@ximian.com>
18285         * icall.c
18286         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
18287         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
18288         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
18289         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
18291 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18293         * class.c, metadata.c, metadata.h, object.c, icall.c,
18294         marshal.c: changed mono_type_get_underlying_type () to do
18295         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
18296         Fixed handling of instantiated generic valuetypes (bug #75479).
18298 2006-02-15  Raja R Harinath  <rharinath@novell.com>
18300         * metadata.c (mono_metadata_decode_signed_value): Simplify.
18301         Delegate to mono_metadata_decode_value, and work on the returned value.
18303         * icall.c (ves_icall_MonoType_GetGenericArguments):
18304         Add consistency check here too.
18305         
18306 2006-02-15  Ankit Jain  <jankit@novell.com>
18308         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
18309         char/short etc.
18311 2006-02-15  Ankit Jain  <jankit@novell.com>
18313         * metadata.c (mono_metadata_decode_signed_value): New function to decode
18314         signed values, used only for representing lower bounds of arrays.
18315         (mono_metadata_parse_array_full): Use new
18316         mono_metadata_decode_signed_value to decode lower bounds.
18318 2006-02-14  Martin Baulig  <martin@ximian.com>
18320         * reflection.c
18321         (mono_reflection_get_token): Support "MonoGenericMethod" and
18322         "MonoGenericCMethod" and allow generic instances / methods.
18324 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
18326         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
18327         to obtain the terminal size using an ioctl.
18329         * object.c (mono_nullable_init): Revert this as nullable reference
18330         types are not valid.
18331         (mono_nullable_box): Ditto.
18333 2006-02-09  Dick Porter  <dick@ximian.com>
18335         * threads.c (mono_thread_detach): Drop a reference to the thread
18336         we're detaching.
18338 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
18340         * object.c (mono_nullable_init): Handle nullable reference types.
18341         (mono_nullable_box): Ditto. Fixes #77446.
18343 2006-02-07  Martin Baulig  <martin@ximian.com>
18345         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
18347 2006-02-07  Ankit Jain  <jankit@novell.com>
18349         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
18350         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
18351         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
18352         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
18353         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
18354         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
18356 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
18358         * class.c (mono_class_create_generic): Set type_token as well.
18360         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
18361         compatible with MS.
18363 2006-02-02  Martin Baulig  <martin@ximian.com>
18365         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
18366         has never been used so far.
18368 2006-02-02  Martin Baulig  <martin@ximian.com>
18370         * mono-debug-debugger.h: Changed comment at the top of this file;
18371         the header is not installed, but it's safe to #include it from
18372         within the JIT.
18374         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
18375         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
18377 2006-02-02  Martin Baulig  <martin@ximian.com>
18379         * mono-debug.h
18380         (MonoSymbolTable): Removed the `metadata_info' field.
18382         * mono-debug.c
18383         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
18385         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18386         (mono_debugger_add_builtin_types): Removed.
18387         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
18388         (mono_debugger_create_notification_function): We now operate on a
18389         pre-allocated area; take a `gpointer' and return `void'.
18391         * mono-debug-debugger.c
18392         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
18393         (mono_debugger_add_builtin_types): Removed.
18395 2006-02-02  Martin Baulig  <martin@ximian.com>
18397         * threads.c (mono_debugger_create_all_threads): New public method.
18399 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18401         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
18402         breaks on several platforms.
18404 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
18406         * assembly.c: the VS.NET build doesn't supply default values for
18407         MONO_ASSEMBLIES and MONO_CFG_DIR.
18409 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
18411         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
18412         helper function.
18414         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
18416         * loader.c (method_from_memberref): Fix a warning.
18418         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
18420         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
18421         with explicit layout. Fixes #77433.
18423 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
18425         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
18426         max_interface_id is initialized before using it. Fixes #77398.
18427         (ves_icall_Type_GetInterfaces): Ditto.
18429 2006-01-30  Raja R Harinath  <rharinath@novell.com>
18431         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18432         allocate memory for parameter attributes when parsing memberref
18433         signatures.
18434         * loader.c (mono_loader_set_error_method_load): Don't warn.
18435         (method_from_memberref): Ensure MissingMethodException gets thrown
18436         if method is not found.  Make warning more informative.
18438 2006-01-29  Raja R Harinath  <harinath@gmail.com>
18440         Fix #77397
18441         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
18442         return true if is byref.
18443         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18444         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
18445         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
18447 2006-01-27  Raja R Harinath  <rharinath@novell.com>
18449         Fix tests/find-method.2.il
18450         * loader.c (find_method, find_method_in_class): Remove is_inflated
18451         argument.  Revert 2006-01-18 change.
18452         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
18453         is generic, search for method in its generic definition.
18454         * class.c (mono_class_setup_vtable_general): Print generic
18455         arguments of generic types in debugging printf.
18457 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
18459         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
18461         * threads.c (mono_threads_request_thread_dump): New helper function.
18463 2006-01-25  Raja R Harinath  <rharinath@novell.com>
18465         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
18467 2006-01-25  Ankit Jain  <jankit@novell.com>
18469         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
18470         move definition to ..
18471         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
18472         
18473 2006-01-25  Ankit Jain  <jankit@novell.com>
18474             Raja R Harinath  <rharinath@novell.com>
18476         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
18477         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
18478         as necessary.
18480 2006-01-25  Martin Baulig  <martin@ximian.com>
18482         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
18483         `MonoDebuggerThread' into debug-debugger.c.
18485 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
18487         * profiler.c: fix printing of data.
18489 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
18491         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
18492           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
18494 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18496         * object.c: fix deadlock related to string interning.
18498 2006-01-23  Martin Baulig  <martin@ximian.com>
18500         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18502         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
18504 2006-01-23  Martin Baulig  <martin@ximian.com>
18506         * mono-debug.h: Moved the prototypes of some functions which are
18507         used by the JIT here from mono-debug-debugger.h.
18509 2006-01-21  Martin Baulig  <martin@ximian.com>
18511         * Makefile.am: Don't install mono-debug-debugger.h.
18513 2006-01-21  Martin Baulig  <martin@ximian.com>
18515         * mono-debug-debugger.h: Enforce the private status of this header
18516         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
18517         Moved some stuff from mono-debugger-jit-wrapper.h here.
18519 2006-01-20  Raja R Harinath  <rharinath@novell.com>
18521         * class.c (mono_class_from_typeref): Add a sanity test to help
18522         catch lack of assembly load/search hooks.
18524 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
18526         * marshal.c (emit_struct_conv): Relax the fields with same offset
18527         check even more. Fixes #77230.
18529 2006-01-18  Martin Baulig  <martin@ximian.com>
18531         * loader.c (find_method_in_class): Added `gboolean is_inflated'
18532         argument; if false, we compare the uninstantiated signatures.
18533         (method_from_memberref): Compare the uninstantiated signatures;
18534         fixes #76417.
18536 2006-01-18  Robert Jordan  <robertj@gmx.net>
18538         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
18539         Clear the weak link. Fixes bug #77170.
18541         * gc.c (mono_gchandle_free):
18542         Reflect *-gc.c changes (tiny optimization).
18544 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
18546         * metadata.c (mono_metadata_signature_dup): Applied patch from
18547         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
18548         Fixes #77288.
18550 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18552         * marshal.c (emit_struct_conv): Allow fields with the same offset when
18553         marshalling from native to managed code. Fixes #77230.
18555 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18557         * threadpool.c: fix problem (Mac only) when more than one asynchronous
18558         connect. Fixes bug #77020.
18560 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18562         * class.c: fixed id assignement for nested interfaces (bug #77275).
18563         Added also better info for --print-vtable debugging.
18565 2006-01-12  Martin Baulig  <martin@ximian.com>
18567         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
18568         interfaces on-the-fly; fixes #76625.
18570         * class-internals.h
18571         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18572         don't need that anymore.
18574 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18576         * socket-io.c
18577         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18578         To avoid initing the nested_classes when not needed I turned the
18579         PeerCredData as a toplevel internal class, as it has to be shared
18580         anyways. 
18582         Fixes the CASA issue.
18584 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18586         * domain.c: Accessors for MonoJitInfo
18588         * profiler-private.h: Add jitinfo to the end jit hook
18590         * profiler.[ch]: Define new hooks, called after jitting which give
18591         the MonoJitInfo that was compiled
18593 2006-01-10  Martin Baulig  <martin@ximian.com>
18595         * class.c (mono_class_setup_events): Add support for generic
18596         classes; fixes #76440.
18598 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18600         Fix #77160.
18601         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18602         on passed-in method.
18604 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18606         * object.c (mono_runtime_invoke_array): Add Nullable support.
18608         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18610 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18612         * file-io.c: Don't consider sockets as directory and avoid an endless
18613         loop. Fix bug #76966.
18615 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18617         * object.c (mono_nullable_init): New helper function.
18618         (mono_nullable_box): Ditto.
18620         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18622         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18624         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18625         
18626 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18628         * class.c (mono_class_is_assignable_from): Make T assignable to 
18629         Nullable<T>.
18631 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18633         * appdomain.c: Bump corlib version to 46.
18634         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18635         serialization purpose) and changed ves_icall_System_Reflection_
18636         Assembly_get_code_base signature to accept a boolean (to escape, or 
18637         not, the assembly code base).
18639 2005-12-23  Dick Porter  <dick@ximian.com>
18641         * icall.c: 
18642         * threads-types.h: 
18643         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18644         CreateEvent icall now returns "created" boolean parameter.
18646 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18648         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18649         #76967.
18651         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18652         when attr_klass is an interface. Fixes #77045.
18654 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18656         * marshal.c (emit_struct_conv): Fix previous patch.
18657         
18658         * marshal.c (emit_struct_conv): Add a check for fields with the same
18659         offset.
18661 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18663         Fix regression in Mono.C5.
18664         * class.c (mono_class_create_generic): If 'klass' is an interface
18665         set up the interface offsets.
18666         (mono_class_is_assignable_from): Don't throw away generic arguments.
18668 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18670         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18671         type parameters.
18673 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18675         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18676         dead store.
18677         (do_mono_metadata_parse_generic_class): Don't pass the current
18678         generic context when parsing the type being instantiated: it
18679         cannot use it, anyway.
18681         * loader.c (method_from_memberref): Don't inflate a signature if
18682         it doesn't contain any type parameters.
18684 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18686         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18688 2005-12-14  Martin Baulig  <martin@ximian.com>
18690         * class.c
18691         (mono_type_get_name_recurse): Don't return null for type
18692         parameters and open generic classes.
18693         (mono_class_setup_methods): Don't exclude generic instances.
18694         (mono_get_unique_iid): Use different IDs for different
18695         instantiations of the same generic type.
18696         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18697         open generic instances; create a normal vtable for closed generic
18698         instances.
18699         (mono_class_setup_vtable_general): We're now also called for
18700         closed generic instances.
18702         * reflection.c
18703         (mono_reflection_bind_generic_parameters): Correctly use
18704         mono_metadata_lookup_generic_inst() everywhere.
18706 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18708         * object.c (mono_class_create_runtime_vtable): Call 
18709         mono_class_setup_vtable ().
18711         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18712         function.
18713         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18714         #76959.
18716         * loader.c (mono_loader_set_error_type_load): Print the type load
18717         warnings to the console so they are more visible to the user.
18718         (mono_loader_set_error_method_load): Ditto.
18720         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18721         is still broken.
18722         
18723         * reflection.c (ensure_runtime_vtable): Fix build.
18725         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18726         doesn't work in all cases.
18728 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18730         * object.c (mono_array_new_full): Treat a single dimensional array
18731         with 0 lower bounds as an szarray. Fixes #76973.
18733         * reflection.c (custom_attr_visible): Really fix this.
18735 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18737         * reflection.c (custom_attr_visible): Allow nested public attributes
18738         as well.
18740         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18741         interface check.
18743 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18745         * class.c (set_generic_param_owner): Delete.
18746         (mono_class_create_from_typedef): Don't set ->owner field of
18747         generic parameters to "param containers" of enclosing classes.
18748         * reflection.c (mono_reflection_initialize_generic_parameter):
18749         Likewise.
18751 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18753         * reflection.c (custom_attr_visible): Fix build.
18755 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18757         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18758         private attributes.
18759         
18760         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18761         handling of null parameter defaults.
18763 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18765         * class.c (mono_class_from_generic_parameter): Don't set
18766         klass->generic_container.
18767         (my_mono_class_from_generic_parameter): Likewise.
18769 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18771         * reflection.c (load_public_key): Fix a warning.
18772         (method_encode_code): Fix unaligned accesses.
18774 2005-12-07  Martin Baulig  <martin@ximian.com>
18776         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18778         * reflection.c
18779         (write_generic_param_entry): Encode our custom attrs.
18781         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18783 2005-12-07  Martin Baulig  <martin@ximian.com>
18785         * reflection.c (encode_new_constraint): Removed; we don't use the
18786         `NewConstraintAttribute' anymore.
18788 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18790         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18791         not fire a TypeResolve event when Assembly.GetType () is called.
18793 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18795         Beginning of support for nullable types in the runtime. Parts of
18796         this patch are from Martin.
18798         * appdomain.c (MONO_CORLIB_VERSION): Bump
18800         * domain.c (mono_init_internal): get the nullable type
18802         * class.c (mono_class_is_nullable): New method
18803         (mono_class_get_nullable_param): New mehod
18804         (mono_class_create_generic): In types T? set cast_class to T
18806         * class-internals.h (MonoDefaults): new nullable default class
18807         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18808         new methods.
18810 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18812         * metadata.c (select_container): New.  Refactor code to select the
18813         appropriate GenericContainer given the type of generic parameter
18814         we are looking for.
18815         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18816         not a MonoGenericContext.  Use select_container.  Update parameters.
18817         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18818         and MONO_TYPE_MVAR.
18819         (unwrap_arrays): Remove duplicate tests.
18820         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18821         generic instantiated class to find any arguments that are generic
18822         parameters.
18823         (mono_type_create_from_typespec_full): Use find_generic_param to
18824         avoid evicting some generic instantiations from the typespec
18825         cache.
18827 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18829         * reflection.c: fixed writing of doubles on ARM FPA.
18831 2005-12-02  Robert Jordan  <robertj@gmx.net>
18833         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18835 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18837         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18838         least on SUSE 10 they are not the same (on debian, they are just the
18839         same thing).
18841 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18843         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18844         DeclaringType for VARs and MVARs.
18845         * class.c (set_generic_param_owner): Fix initialization of owner
18846         fields.
18848 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18850         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18852 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18854         * threadpool.c: workaround for a bug that shows up on the Mac:
18855         select()+connect() on a blocking socket is not like it should
18856         be, so we proceed to connect() in that case, wasting the I/O
18857         threadpool thread until connect succeedes. Fixes bug #75436.
18859 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18861         * threadpool.c: fix typo when setting file descriptor states.
18863 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18865         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18866         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18867         create a temporary signature container.
18868         (mono_metadata_parse_generic_param): Update to changes.
18869         (mono_type_create_from_typespec_full): Update to changes.
18870         * loader.c (method_from_memberref): Don't use a
18871         MonoGenericContainer while parsing a memberref signature.
18872         (method_from_methodspec): Remove dead-store of the 'container'
18873         variable.  It's overwritten before use.
18875         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18876         checks tighter.
18877         (mono_metadata_parse_generic_param): Likewise.
18878         * loader.c (find_method_in_class): Does not need a
18879         MonoGenericContainer.  Use 'mono_method_signature' rather than
18880         'mono_method_signature_full'.
18881         (find_method, mono_get_method_constrained, method_from_memberref):
18882         Update to changes.
18884         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18885         owner-less generic-parameters are never evicted from the typespec
18886         cache.
18888         * loader.c (method_from_memberref): Don't use the current context
18889         when parsing signatures.
18890         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18892         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18893         side-effects in g_assert.
18894         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18895         that we don't potentially lose information.
18897 2005-11-26  Dick Porter  <dick@ximian.com>
18899         * icall.c:
18900         * threads.c: icalls to implement basic (ie, not named)
18901         System.Threading.Semaphore.
18903 2005-11-24  Dick Porter  <dick@ximian.com>
18905         * process.c
18906         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18907         Use GetProcessId() if it's available.
18909 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18911         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18913 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18914             Ankit Jain  <jankit@novell.com>
18916         * loader.c (mono_get_method_from_token): Initialize 'method' field
18917         of all generic parameters before parsing the signature.  Remove
18918         code that "fixed"-up MVAR references.
18920 2005-11-23  Ankit Jain  <jankit@novell.com>
18922         * metadata.c (mono_metadata_has_generic_params):
18923         (mono_metadata_load_generic_param_constraints):
18924         (mono_metadata_load_generic_params): Move duplicate code ...
18925         (mono_metadata_get_generic_param_row): ... here. Returns the
18926         first row-id in GenericParam table for a given owner (token).
18927         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18928         prototype.
18930 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18931             Ankit Jain  <jankit@novell.com>
18933         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18934         comparing VARs too.
18935         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18936         type->data.generic_param only if the type is an MVAR.
18937         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18938         leak owner-less VARs and MVARs into managed space.
18940 2005-11-21  Martin Baulig  <martin@ximian.com>
18942         * class-internals.h
18943         (MonoMethod): Moved the `generic_container' here from
18944         `MonoMethodNormal' since we now also need it for
18945         `MonoMethodPInvoke';
18946         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18947         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18948         an union containing both `MonoMethodNormal' and
18949         `MonoMethodPInvoke'.
18951         * loader.c
18952         (mono_get_method_from_token): Allow implementing generic methods
18953         as interncalls.
18955         * threads.c
18956         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18957         icall.
18959 2005-11-17  Dick Porter  <dick@ximian.com>
18961         * icall.c: 
18962         * process.h: 
18963         * process.c: Split the Process Start_internal icall into
18964         ShellExecuteEx_internal and CreateProcess_internal, which are
18965         called depending on whether UseShellExecute is true.  Fixes bug
18966         76670.
18968         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18970 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18972         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18973         'msize' parameters, use the information in 'mspec' instead.
18974         (emit_object_to_ptr_conv): Ditto.
18976         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18977         fields out of order. Fixes #76733.
18979 2005-11-17  Ankit Jain  <jankit@novell.com>
18981         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18983 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18985         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18986           bug #76575.
18988 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18990         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18991         for types with non-auto layout. Fixes #76717.
18993 2005-11-16  Ankit Jain  <jankit@novell.com>
18995         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18996         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18997         if generic_context is null.
18998           (mono_metadata_generic_param_equal): param->owner can be null.
18999           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
19000         null.
19002 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
19004         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
19005         the correct value.
19007 2005-11-15  Martin Baulig  <martin@ximian.com>
19009         * object.c (set_value): Use mono_class_from_mono_type() instead of
19010         the hack for generic instances; fixes #76136.
19012 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
19014         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
19015         fields.
19017         * image.c (load_metadata_ptrs): Initialize the new fields.
19019         * reflection.c (create_dynamic_mono_image): Ditto.
19021         * reflection.c (build_compressed_metadata): Use the new fields.
19023         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
19024         icall.
19026         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
19027         icall.
19028         
19029 2005-11-15  Ankit Jain  <jankit@novell.com>
19030             Raja R Harinath  <harinath@gmail.com>
19032         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
19033         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
19034         new per-generic_container cache if the cached MonoType's context matches
19035         the current context.
19036           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
19037         to the expected context.
19038           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
19040 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19042         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
19043         we changed the signature of an icall.
19044         * icall.c: Modify to mono_double_ParseImpl return true/false 
19045         depending on the success, instead of throwing the exception. This will
19046         help us in Double.TryParse methods.
19047         
19048 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
19050         * marshal.c (emit_marshal_object): Throw an exception when
19051         marshalling 'object' instead of crashing. Fixes #76696.
19053 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19055         * class-internals.h: Add prototype for mono_type_get_full_name ().
19057 2005-11-11  Dick Porter  <dick@ximian.com>
19059         * threads.c (mono_thread_manage): Make sure the main thread has
19060         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
19062 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19064         * loader.c (mono_loader_set_error_type_load): Log a warning to the
19065         console about the missing type.
19066         (mono_loader_set_error_method_load): Ditto.
19068 2005-11-09  Miguel de Icaza  <miguel@novell.com>
19070         * mono-config.c (mono_get_config_dir): Set the system defaults if
19071         none is specified.
19073         * assembly.c (mono_set_dirs): New API entry point to set the
19074         assembly and the config directory in one call
19076 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
19078         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
19079         the ftnptr was created from a delegate in a domain other than the
19080         current domain. Fixes #75377.
19082         * exception.h exception.c: Add mono_get_exception_not_supported ().
19084 2005-11-08  Martin Baulig  <martin@ximian.com>
19086         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
19088 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
19090         * security-manager.h: Added definitions to deal with strongname key 
19091         pairs bigger (and smaller) than 1024 bits.
19092         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
19093         adjust wrt the public key length being used.
19095 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
19097         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
19098           Windows build (r51396-51397).
19100 2005-11-03  Martin Baulig  <martin@ximian.com>
19102         * class.c (mono_class_setup_vtable_general): Also add generic
19103         methods to the vtable; fixes #76581.
19105 2005-11-01  Miguel de Icaza  <miguel@novell.com>
19107         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
19108         sure that we lookup GetString method from the System.Text.Encoding
19109         class, not the derived class or we get an empty method.
19111         Fixed class #76612.
19113 2005-10-25  Miguel de Icaza  <miguel@novell.com>
19115         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
19116         if it has been previously set (embedders). 
19118         Make mono_set_rootdir available also on Unix.
19120 005-10-24  Robert Jordan  <robertj@gmx.net>
19122         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
19124 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
19126         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
19127         only calls which are made to native code use this flag.
19129         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
19131 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
19133         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
19134         Add support for FieldBuilders.
19136 2005-10-29  Martin Baulig  <martin@ximian.com>
19138         * mono-debug.c
19139         (mono_debug_using_mono_debugger): New public method; returns
19140         whether we're running inside the debugger.
19142 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
19144         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
19145         for Method/Constructor/FieldBuilders.
19147 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
19149         * reflection.c (module_add_cattrs): Save custom attributes for global methods
19150         and fields as well.
19152 2005-10-26  Martin Baulig  <martin@ximian.com>
19154         * mono-debug-debugger.c
19155         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
19157 2005-10-24  Raja R Harinath  <harinath@gmail.com>
19159         * icall.c (base64_to_byte_array): Don't pass an out-of-range
19160         integer to isspace.
19162 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
19164         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
19165         when passing valuetypes byref. Fixes #76502.
19167 2005-10-19  Jackson Harper  <jackson@ximian.com>
19169         * profiler.c: Don't put a . in front of types that are not in a
19170         namespace.
19172 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
19174         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
19176 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
19178         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
19179         #76436.
19180         (mono_marshal_get_ldflda_wrapper): Fix a warning.
19182 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19184         * assembly.c metadata-internals.h icall.c: Define an additional
19185         parameter for mono_assembly_name_parse_full, so we can avoid creating
19186         S.R.AssemblyName.Version when no version info wasn't passed.
19187         
19188 2005-10-09  Miguel de Icaza  <miguel@novell.com>
19190         * class.c (mono_type_get_full_name): Reimplement method that was
19191         removed. 
19193         * image.c: Some docs
19195 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
19197         * profiler.c (output_newobj_profile): Fix printing of Total memory
19198         on x86.
19200 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19202         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
19204 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
19206         * threads.c: remove debug output.
19208 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19210         * threads.c (mono_thread_manage): Fix crashes if more than 64
19211         threads need to be aborted. Hopefully fixes #75899.
19213         * assembly.c (mono_stringify_assembly_name): New helper function.
19215         * class.c: Use mono_stringify_assembly_name instead of the similar
19216         static function.
19218         * assembly.h assembly.c: Add support for calling a postload search 
19219         hook if an assembly cannot be loaded.
19221         * appdomain.c: Register new search hooks which call the AssemblyResolve
19222         events in AppDomain. Fixes #75231
19224 2005-10-07  Martin Baulig  <martin@ximian.com>
19226         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
19227         methods without debug info.
19229 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
19231         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
19232         wrappers.
19234 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19236         * file-io.c: now that we return symlinks, use lstat and, when the file
19237         is a symbolic link, stat, to get the file attributes. Also avoid the
19238         conversion to/from utf16/external.
19240 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
19242         * class.c (mono_class_layout_fields): Compute klass->has_references
19243         correctly if an embedded valuetype is not yet initialized. Fixes
19244         #76331.
19246 2005-10-04  Martin Baulig  <martin@ximian.com>
19248         * metadata.c
19249         (mono_metadata_load_generic_param_constraints): New public
19250         function; splitted the constraints loading out from
19251         mono_metadata_load_generic_params().
19253         * class.c (mono_class_create_from_typedef): Call
19254         mono_metadata_load_generic_param_constraints() after setting up
19255         the type and creating our parent; fixes #75329.
19257 2005-10-04  Martin Baulig  <martin@ximian.com>
19259         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
19260         non-dynamic parent classes.
19262 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
19264         * file-io.c : win32 build fix (ETXTBSY seems not found).
19266 2005-10-04  Martin Baulig  <martin@ximian.com>
19268         * reflection.c
19269         (mono_image_get_methodspec_token): Make the cache actually work;
19270         fixes #75974.
19272 2005-10-04  Martin Baulig  <martin@ximian.com>
19274         * class.c (mono_class_name_from_token): Removed the unneccessary
19275         `MonoGenericContext *' argument.
19277 2005-10-04  Martin Baulig  <martin@ximian.com>
19279         * loader.c
19280         (method_from_methodspec): Make the caching work again; fixes the
19281         performance regression from #76262.
19283 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19285         * file-io.c:
19286         * file-io.h:
19287         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
19288         GetFileSystemEntries that performs the same work but without going
19289         into io-layer, locking, etc.
19291 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
19293         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
19294         ThreadState_Stopped as well. Fixes #76047.
19296 2005-09-29  Martin Baulig  <martin@ximian.com>
19298         * class.c
19299         (inflate_generic_context): If the new context has a `gmethod', set
19300         its `container' that that gmethod's `container'.
19302         * metadata.c
19303         (mono_metadata_parse_generic_param): Simplify things;
19304         `generic_container = generic_context->container;' is just fine.
19306         * loader.c (method_from_methodspec): Code cleanups.
19308 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19310         * decimal.c: fix warning (and let gcc generate correct
19311         code on ARM with optimizations).
19313 2005-09-28  Martin Baulig  <martin@ximian.com>
19315         * loader.c
19316         (method_from_memberref): Added `MonoGenericContext *class_context'
19317         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
19318         (method_from_methodspec): If we're a memberref, use the enclosing
19319         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
19321 2005-09-28  Martin Baulig  <martin@ximian.com>
19323         * object.c (mono_runtime_invoke_array): Added support for
19324         MONO_TYPE_GENERICINST; fixes #75917.
19326 2005-09-27  Martin Baulig  <martin@ximian.com>
19328         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
19329         `k->byval_arg.type' to determine the actual type.
19331         * loader.c (method_from_methodspec): Removed some hacks.
19333 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
19335         * class-internals.h (mono_field_is_deleted): Do the test for
19336         rtspecialname before we check the actual name of the field. This
19337         prevents us from dereferencing a pointer into the string table,
19338         saving us from accessing a few pages
19340         * *.c: Replace the use of {Enter,Leave}CriticalSection with
19341         macros. This will allow a deadlock debugger to easily be plugged
19342         in.
19344 2005-09-27  Martin Baulig  <martin@ximian.com>
19346         * loader.c (method_from_methodspec): Create a "signature"
19347         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
19349 2005-09-27  Martin Baulig  <martin@ximian.com>
19351         * class.c
19352         (inflate_generic_class): Correctly set the new context's
19353         container.
19355         * loader.c
19356         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
19357         instead of a `MonoGenericContext *'.
19358         (mono_method_signature_full): Take a `MonoGenericContainer *'
19359         instead of a `MonoGenericContext *'.
19361         * metadata.c
19362         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
19363         instead of a `MonoGenericContext *'.
19364         (mono_metadata_parse_method_signature_full): Likewise.
19366 2005-09-26  Martin Baulig  <martin@ximian.com>
19368         * class.c
19369         (mono_class_from_generic_parameter): Set `klass->generic_container'
19370         (mono_class_from_generic_parameter): Likewise.
19371         (mono_bounded_array_class_get): We inherit the generic container
19372         from the element class.
19374         * loader.c
19375         (find_method, find_method_in_class): Take a `MonoGenericContext *'
19376         argument rather than computing it here.
19377         (method_from_memberref): Correctly set the generic context before
19378         parsing the signature.  Fixes #75681.
19380 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
19382         * object.c (mono_class_has_special_static_fields): Fix warnings.
19384 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19386         * assembly.c: Add parse_public_key function, to
19387         par the public keys. Also added mono_assembly_name_parse_full,
19388         to define it the parsed key should be freed or not.
19389         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
19390         to parse a long format assembly name.
19391         * metadata-internals.h: Keep mono_assembly_name_parse_full as
19392         private, since calling it to preserve the key requires
19393         freeing it manually.
19394         
19395 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
19397         * locales.c : removed HAVE_ICU part.
19399 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
19401         * object.c (mono_class_create_runtime_vtable): Avoid calling 
19402         field_is_special_static if the klass has no special static fields.
19404         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
19405         (MonoCachedClassInfo): Likewise.
19407         * object.c (mono_class_has_special_static_fields): New helper function.
19409 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19411         * class.c (mono_class_create_from_typedef): Don't call 
19412         interfaces_from_typedef_full for enums.
19413         (mono_class_create_from_typedef): Compute the base types of enums directly
19414         without calling mono_class_setup_fields ().
19415         (mono_class_find_enum_basetype): New helper function.
19417         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
19418         one place inside the string heap.
19419         
19420 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
19422         * class.c: locking fixes, code cleanups, some docs added.
19423         Allocate some data structures in the image mempool.
19425 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19427         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19428         the example code.
19429         
19430 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
19432         * class-internals.h, class.c, reflection.c: reduce memory taken by
19433         MonoClass.
19435 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
19437         * metadata.c, metadata.h, loader.h: documentation updates, code and
19438         API cleanups.
19440 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19442         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19443         the example code.
19445         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
19446         page faults caused by the runtime while reading metadata.
19448 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19450         * socket-io.c: the field names were changed 3 months ago and no one
19451         realized until bug #76077 got filed!
19453 2005-09-20  Martin Baulig  <martin@ximian.com>
19455         * icall.c (assembly_icalls): Removed some unused debugger icalls.
19457 2005-09-20  Martin Baulig  <martin@ximian.com>
19459         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
19460         write the rank into the class entry.
19462 2005-09-20  Martin Baulig  <martin@ximian.com>
19464         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
19466 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
19468         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19470         * icall.c (custom_attrs_defined_internal): New icall.
19472         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
19473         function.
19474         (mono_custom_attrs_construct_by_type): New helper function.
19476 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
19478         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
19479         terminate the resulting string. Fixes #76123.
19481 2005-09-16  Martin Baulig  <martin@ximian.com>
19483         * mono-debug.c
19484         (mono_debug_add_method): Ignore inflated methods for the moment.
19486 2005-09-14  Martin Baulig  <martin@ximian.com>
19488         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
19490 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
19492         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
19493         return a success/failure indication.
19494         (mono_metadata_interfaces_from_typedef_full): Ditto.
19495         (get_constraints): Ditto.
19497 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
19499         * marshal.c (emit_marshal_array): Fix handling of null arrays.
19500         
19501         * marshal.c (emit_marshal_array): Add support for returning string
19502         arrays from delegates. Fixes #76063.
19504         * marshal.c: Use the emit_ldloc/stloc macros where possible.
19506 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19508         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
19509         icall.
19511 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
19513         * reflection.c icall.c: Fix after mono_get_exception_type_load
19514         signature change.
19516         * assembly.c (mono_assembly_get_assemblyref): New helper function.
19517         (mono_assembly_load_reference): Use the new helper.
19519         * class-internals.h (MonoLoaderError): New structure containing 
19520         information about type loading errors.
19522         * class-internals.h loader.c: Add APIs to store per-thread loader
19523         error information.
19525         * loader.c class.c: Set the loader error if needed.
19527         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
19529 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
19531         * decimal.c: fixed to handle the broken ARM fp format.
19533 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
19535         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
19536         broken.
19538 2005-09-06  Martin Baulig  <martin@ximian.com>
19540         * domain.c (supported_runtimes): Added v2.0.50727.
19542 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
19544         * culture-info.h: reduce the size of some structures.
19546 2005-09-05  Martin Baulig  <martin@ximian.com>
19548         Reflect latest API changes in the August CTP.
19550         * icall.c
19551         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
19552         ("MonoType.HasGenericArguments"): Removed.
19553         ("MonoMethod.BindGenericParameters"): Renamed to
19554         "MakeGenericMethod".
19555         ("MethodBuilder.BindGenericParameters"): Renamed to
19556         "MakeGenericMethod".    
19558 2005-09-05  Martin Baulig  <martin@ximian.com>
19560         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
19562 2005-09-05  Martin Baulig  <martin@ximian.com>
19564         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19566         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
19567         generic_container is non-NULL.
19569 2005-09-05  Martin Baulig  <martin@ximian.com>
19571         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19573         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19575 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19577         * reflection.c (encode_locals,
19578         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19579         for large generic types.
19581 2005-09-05  Martin Baulig  <martin@ximian.com>
19583         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19585         * class.c (mono_dup_array_type): New public method.
19586         (mono_metadata_signature_deep_dup): New public method.
19587         (dup_type): Correctly duplicate array and function types.
19589 2005-09-05  Martin Baulig  <martin@ximian.com>
19591         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19593         * reflection.c (get_default_param_value_blobs): Handle generic types
19594         and generic methods.
19596 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19598         * class.c: Fixed error reporting (method/class were inversed) for 
19599         inheritance demands.
19600         * security-manager.c|h: Added the AppDomain when calling the managed
19601         System.Security.SecurityManager.InheritanceDemand method.
19603 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19605         * reflection.c (encode_marshal_blob): 'marshaltype' and
19606         'marshaltyperef' are alternate sources for the custom marshaler
19607         name.
19609 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19611         * class.c: fix creation of array classes with rank == 1
19612         (patch by Ankit Jain <jankit@novell.com>).
19614 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19616         * object.c: fix check for creating the bound data for arrays vs
19617         szarrays.
19619 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19621         * object.c: configuration file name is now based on the executable name,
19622         not the image name. Fixes bug #75931.
19624 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19626         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19627         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19629 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19631         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19633 2005-08-24  Ankit Jain  <jankit@novell.com>
19634             Raja R Harinath  <rharinath@novell.com>
19636         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19637           called by it recursively.
19638           (mono_class_init): Remove special case in pending_init handling, since it's
19639           superseded by the fix to mono_class_from_typeref.
19641 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19643         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19644         BROKEN_THREAD_START stuff.
19646 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19648         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19649         trampoline.
19651         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19652         
19653         * object.c (mono_delegate_ctor): Replace the original function address with
19654         a delegate trampoline.
19656 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19658         * icall.c: add boolean argument to base64_to_byte_array and 
19659         InternalFromBase64String to control whether a whitespace-only string
19660         is allowed (or should casue a FormatException to be thrown). We need
19661         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19662         to match the MS behaviour in both profiles.
19663         * appdomain.c: Bump corlib version.
19665 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19667         This patch implements a big portion of publisher policy
19668         support, used to bind assembly versions and redirect
19669         one assembly from version A to version B.
19671         * assembly.c:
19672         New GSList loaded_assembly_bindings, for storing the cached
19673         assembly bindings.
19674         (assembly_binding_maps_name): New static function for checking if a 
19675         assembly binding information maps an assembly name.
19676         (mono_assembly_binding_info_free): New function for freeing
19677         assembly binding information resources.
19678         (get_publisher_policy_info): New static function for retrieving 
19679         assembly binding information from a MonoImage.
19680         (compare_versions): New static function for comparing an assembly
19681         binding information data and the version of an assembly name.
19682         (check_policy_versions): New static function for checking if an
19683         assembly binding info mapping an assembly name is valid for it.
19684         (mono_assembly_load_publisher_policy): New static function for
19685         loading the 'policy.major.minor.MyAssembly' image for an assembly
19686         with an assembly name 'aname'.
19687         (mono_assembly_bind_version): New static function for updating
19688         assembly redirection.
19689         (mono_assembly_apply_binding): New static function for applying
19690         assembly binding.
19691         (search_binding_loaded): New static function for searching 
19692         loaded assembly binding infos in the cache domain.
19693         (mono_assembly_load_full): Don't apply assembly binding for
19694         reflection only assemblies.
19696         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19697         which contains information about assembly binding. Also
19698         declare signature for mono_config_parse_publisher_policy ()
19699         function, used to retrieve pub policy info.
19700         
19701         * mono-config.c:
19702         (publisher_policy_start): New static function used to parse publisher 
19703         policy config files.
19704         (publisher_policy_parser): New static MonoParseHandler containing 
19705         the functions used when parsing config files.
19706         (mono_config_parse_publisher_policy): New function for parsing
19707         publisher policy files.
19708         
19709 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19711         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19713         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19715         * object.c (mono_get_addr_from_ftnptr): New helper function.
19717         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19719         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19721 2005-08-19  Dick Porter  <dick@ximian.com>
19723         * threads.c, threads.h, appdomain.c, appdomain.h,
19724         profiler-private.h, monitor.c, object.c, object-internals.h,
19725         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19726         store the thread ID, so it can hold a 64 bit value if needed.
19728 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19730         * reflection.c (mono_reflection_create_dynamic_method): Store the
19731         handle class into the method references as well so ldtoken works in
19732         dynamic methods.
19734         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19735         types.
19737 2005-08-19  Ankit Jain <jankit@novell.com>
19739         Fix #75847.
19740         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19741           here rather than using the method signature of a arbitrary function
19742           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19743           two arguments.
19744           Hack done with Harinath.
19746 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19748         * threadpool.c: disable printing stack traces when we get a exception
19749         in a threadpool thread. I need to do more testing to figure out which
19750         cases actually print this. Fixes bug #75828.
19752 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19754         * icall.c: there might be ignored whitespace after the last '='. This
19755         fixes length computation and bug #75840.
19757 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19759         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19760         well. Fixes #75809.
19762         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19763         #75784.
19764         
19765         * reflection.c (create_custom_attr_data): Ditto.
19767 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19769         * locales.c, culture-info.h : removed RegionLCIDMap.
19770         * culture-info-tables.h : regenerated.
19772 2005-08-16  Martin Baulig  <martin@ximian.com>
19774         * class.c (mono_type_get_name_recurse): Small fix.
19776 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19778         * locales.c : indentation fixie.
19780 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19782         * object-internals.h,
19783           locales.h,
19784           locales.c,
19785           culture-info.h,
19786           icall.c : added RegionInfo table support.
19787         * culture-info-table.h : regenerated for region support.
19789 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19791         * reflection.c (resolve_object): handle all kinds of MonoMethod
19792         including generic ones
19794 2005-08-12  Ankit Jain <jankit@novell.com>
19796         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19797           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19799 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19801         * process.c: Don't close a thread handle when it's NULL. This is a
19802         workaround for bug #75733.
19804 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19806         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19808 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19810         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19812 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19814         * threadpool.c: if a work item in the thread pool has a callback that
19815         catches a exception, don't propagate it after invoking the callback.
19816         Fixes bug #75336.
19818 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19820         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19822         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19824         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19826         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19828 2005-08-03  Ankit Jain  <jankit@novell.com>
19830         Fix #75683.
19831         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19832           PInvoke calling convention is 0.
19834 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19836         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19837         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19839 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19841         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19842         to handle threads not started by the GC (patch by Michael Meeks
19843         <michael.meeks@novell.com>).
19845 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19847         * reflection.c: Make buffer used in emitting types larger for some
19848         big generic types (patch by Michal Moskal).
19850 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19852         * mono-debug.c: Fix some (not all) alignment problems.
19854 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19856         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19857         Invoke mono_image_load_from_data_full passing the refonly
19858         parameter.
19860         * assembly.c
19861         (mono_assembly_open_from_bundle): Add the refonly argument, 
19862         in order to pass it to other methods it calls to.
19863         (do_mono_assembly_open): Add the refonly argument, in order 
19864         to pass it to other methods it calls to.
19865         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19866         the refonly parameter to it.
19868         * image.c: Add loaded_images_refonly_hash and
19869         loaded_images_refonly_guid_hash to cache the reflection
19870         only loaded images.
19871         (mono_images_init): Initialize the hash tables used for
19872         caching the reflection only images.
19873         (load_modules): Invoke mono_image_open_full passing the refonly
19874         parameter to load the modules the correct way.
19875         (build_guid_table): Add the refonly argument, to re-build the 
19876         correct hash table.
19877         (do_mono_image_open): Added the refonly argument, in order to
19878         define it for the loaded image.
19879         (mono_image_loaded_full): New function, which receives an
19880         additional parameter to look for the image in the refonly or
19881         non-refonly section.
19882         (mono_image_loaded): Updated, using mono_image_loaded_full.
19883         (mono_image_loaded_by_guid_full): The same case that happens
19884         with mono_image_loaded_full.
19885         (mono_image_loaded_by_guid): Likewise.
19886         (register_image): Use the ref_only variable inside MonoImage
19887         to decide in which hash table store the current image.
19888         (mono_image_open_from_data_full): Rename
19889         mono_image_open_from_data to mono_image_open_from_data_full,
19890         adding the refonly argument, to define the ref_only variable 
19891         inside MonoImage.
19892         (mono_image_open_from_data): Return 
19893         mono_image_open_from_data_full.
19894         (mono_image_open_full): Rename mono_image_open to
19895         mono_image_open_full, receiving the new refonly argument,
19896         to pass it to inner methods.
19897         (mono_pe_file_open): Update this function, to open
19898         a MonoImage as a non-refonly image.
19899         (mono_image_close): Use the refonly variable inside
19900         MonoImage to remove the image from the correct caches.
19902         * image.h: Add the signatures of mono_image_open_full,
19903         mono_image_open_from_data_full, mono_image_loaded_full,
19904         mono_image_loaded_by_guid_full.
19906         * metadata-internals.h: Add the ref_only field to 
19907         MonoImage.
19908         
19909 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19911         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19912         Fix the last behavior, which used to load the assemblies and
19913         extract MonoReflectionAssemblyName information, instead of
19914         extract it from the metadata tables. Needed for Reflection
19915         Only assemblies.
19916         
19917 2005-07-29  Martin Baulig  <martin@ximian.com>
19919         * mono-debug-debugger.c
19920         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19921         not initialized.
19923         * mono-debug.c
19924         (mono_debug_address_from_il_offset): Check whether we have
19925         debugging support before attempting to take the lock.
19926         (mono_debug_source_location_from_address): Likewise.
19927         (mono_debug_source_location_from_il_offset): Likewise.
19928         (mono_debug_il_offset_from_address): Likewise.
19929         (mono_debug_address_from_il_offset): Likewise.
19931 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19933         * class.c (mono_class_from_name_case): Add support for dynamic images.
19934         Fixes #75650.
19936         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19937         for #75479.
19939 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19940         
19941         * reflection.c (mono_method_get_object): Fix warning.
19943 2005-07-28  Martin Baulig  <martin@ximian.com>
19945         * mono-debug.c
19946         (mono_debug_add_wrapper): Also write the wrapper type.
19948 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19950         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19951         
19952         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19953         data indicates the class has none.
19955 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19957         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19958         loader lock with the debugger lock. Prevents deadlocks for beagle.
19960         Beagle can now run on an smp box for a weekend without any
19961         issues. Woohoo!
19963 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19965         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19966         in a module. Fixes #75629.
19968 2005-07-26  Martin Baulig  <martin@ximian.com>
19970         * mono-debug.c (mono_debug_add_wrapper): New static method.
19971         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19972         interncall or a wrapper.
19974         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19975         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19976         (MONO_DEBUGGER_VERSION): Bump to 51.
19978         * mono-debug-debugger.c
19979         (mono_debugger_add_type): Removed this empty function.
19980         (mono_debugger_add_method): Likewise.
19982 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19984         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19985         before accessing method->slot.
19987 2005-07-21  Jb Evain  <jbevain@gmail.com>
19989         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19990         Fixes #75010.
19992 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19994         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19995         #75587.
19997 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19999         * image.h image.c: Add mono_image_get_guid () API function.
20001 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
20003         There were issues when multiple threads tried to load
20004         assemblies. A deadlock was created between assemblies_mutex and
20005         mono_domain_assemblies_lock. This fixes the issue by making the
20006         assembly ref counting be lock free. See bug 75586.
20007         
20008         * image.c (mono_image_close): The add ref function here was using
20009         Interlocked operations while the unref was using a mutex and a
20010         --. I don't think this was ever a bug that would be exposed in a
20011         non-pendantic way (ie, by an embedder doing a ref on one thread
20012         and an unref on another), but for the sake of correctness, this is
20013         now Interlocked.
20015         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
20016         (mono_assembly_load_reference): Call mono_assembly_addref rather
20017         than touching the refcount ourselves.
20018         (mono_assembly_close): Use InterlockedDecrement to unref the
20019         assembly. Don't acquire the lock unless it is actually needed.
20021 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20023         * class.c (mono_class_layout_fields): Fix calculation of has_references
20024         for generic types.
20026 2005-07-12  Martin Baulig  <martin@ximian.com>
20028         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20030         * metadata.c
20031         (mono_type_hash): Provide better hashing for generic instances.
20032         (mono_generic_inst_hash): Improve hashing.
20033         (mono_generic_class_hash): Likewise.
20035         * reflection.c (mymono_metadata_type_hash): Improve hashing for
20036         generic instances.
20038 2005-07-12  Martin Baulig  <martin@ximian.com>
20040         * reflection.c (mono_reflection_create_runtime_class): Remove the
20041         hack for generic type definitions and non-`Run' assemblies.
20042         (mono_reflection_bind_generic_parameters): Also use
20043         `klass->wastypebuilder' to check for TypeBuilders.
20045 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20047         * class.c (mono_class_layout_fields): Fix calculation of has_references
20048         for generic types.
20050         * class.c (inflate_generic_class): Fix a leak.
20051         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
20052         for generic types.
20054 2005-07-11  Martin Baulig  <martin@ximian.com>
20056         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
20057         on error.
20059 2005-07-11  Martin Baulig  <martin@ximian.com>
20061         * loader.c (find_method): Also lookup in
20062         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
20064 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20066         * appdomain.c (mono_domain_unload): Don't free the error message
20067         before passing it to mono_get_exception_...
20069         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
20070         
20071 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
20073         * threads.c: try to better guess an available RT signal (bug #75387).
20075 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20077         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
20078         and CACHE_OBJECT.
20080 2005-07-07  Martin Baulig  <martin@ximian.com>
20082         * class.c (mono_type_get_name_full): Return NULL for
20083         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
20084         fixes #75408.
20086 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20088         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
20089         exit the appdomain as well being aborted.
20091         * threadpool.c: Create all threadpool threads inside the root appdomain, and
20092         change back to the root domain after calling managed code. This enables
20093         appdomains using threadpools to be unloaded.
20095 2005-07-07  Martin Baulig  <martin@ximian.com>
20097         * class-internals.h
20098         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
20099         into `MonoDynamicGenericClass' since we only need it for dynamic
20100         types.
20102         * reflection.c (mono_class_bind_generic_parameters): We don't need
20103         to compute the `parent' here.
20105 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
20107         * culture-info-table.h : regenerated.
20109 2005-07-06  Martin Baulig  <martin@ximian.com>
20111         * icall.c
20112         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
20114         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
20116 2005-07-06  Martin Baulig  <martin@ximian.com>
20118         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
20119         we're doing a signature-only comparision; fixes #74945.
20121 2005-07-06  Martin Baulig  <martin@ximian.com>
20123         * class-internals.h (MonoGenericClass): Moved some things out into
20124         a new `MonoInflatedGenericClass' type.  
20125         (MonoInflatedGenericClass): New type; the `klass' of a
20126         `MonoGenericClass' is now computed lazyly in
20127         mono_get_inflated_generic_class().      
20129         * class.c (mono_get_inflated_generic_class): New public function.
20130         (mono_class_inflate_generic_method): Removed the unused
20131         `MonoClass *' argument.
20132         (setup_generic_vtable): Don't call mono_get_inflated_method() on
20133         all the methods.
20134         (mono_class_create_generic): Make this static and merge it with
20135         mono_class_create_generic_2(); we're now called automatically from
20136         mono_get_inflated_generic_class().
20138         * loader.c (mono_method_signature): Call
20139         mono_get_inflated_method() here.
20141 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
20143         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
20144         type of fields with RVA.
20146         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
20147         for this pseudo class.
20148         (my_mono_class_from_generic_parameter): Likewise.
20149         (mono_class_init): Allow interfaces to have cctors.
20151 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20153         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
20154         lazily for AOT methods.
20156 2005-07-05  Martin Baulig  <martin@ximian.com>
20158         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
20159         returns FALSE for a successful match, not TRUE.
20161 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20163         * loader.c (mono_method_get_index): Optimize this a bit.
20165 2005-07-04  Martin Baulig  <martin@ximian.com>
20167         * class.c
20168         (class_compute_field_layout): Move the check for generic type
20169         definitions into mono_class_layout_fields().  Fixes #74684.
20170         (mono_class_from_generic_parameter): Correctly compute
20171         `klass->parent'; fixes #75457.
20173         * reflection.c (register_assembly, register_module): Make sure
20174         `domain->rejobject_hash' is already created.
20176 2005-07-02  Martin Baulig  <martin@ximian.com>
20178         * class-internals.h
20179         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
20180         `MonoDynamicGenericClass'.      
20182 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
20184         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
20185         returned by a field getter is null, since null is a valid value.
20187 2005-07-01  Martin Baulig  <martin@ximian.com>
20189         * reflection.c (mono_reflection_generic_class_initialize): Update
20190         the `dgclass->fields [i].parent' to the correct class.
20191         (mono_image_get_fieldref_token): Use the declaring type, not the
20192         reflected type.
20194 2005-07-01  Martin Baulig  <martin@ximian.com>
20196         * loader.c (find_method): Also look in the interfaces; fixes #75429.
20198 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
20200         * threads.c (thread_cleanup): assert that thread != NULL
20201         (wait_for_tids_or_state_change): We were using the wrong variable
20202         when accessing wait->threads. `i' was always out of the bounds of
20203         the array.
20205 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20207         * loader.c: map user32 and kernel32 to libMonoSupportW
20209 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
20211         * appdomain.c (unload_thread_main): Mark this as WINAPI.
20213 2005-06-28  Martin Baulig  <martin@ximian.com>
20215         * loader.c (method_from_methodspec): Fix #75334.
20217 2005-06-28  Martin Baulig  <martin@ximian.com>
20219         Fix #74953 - Arrays now implement the generic IList<T> interface
20220         on the 2.0 platform.
20222         * class-internals.h (MonoDefaults): Added `generic_array_class'.
20224         * reflection.c (mono_class_bind_generic_parameters): New public
20225         function; similar to mono_reflection_bind_generic_parameters(),
20226         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
20228         * domain.c (mono_init_internal): Try to initialize.
20229         `mono_defaults.generic_array_class' here; this'll only succeed if
20230         we're using the 2.0 corlib.
20232         * icall.c
20233         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
20234         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
20235         (mono_lookup_internal_call): Added support for nested classes.
20237         * loader.c
20238         (mono_get_method_from_token): Set `result->signature->pinvoke' if
20239         we're an interncall and have generic arguments.
20241         * class.c
20242         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
20243         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
20244         instance of System.Array.InternalArray<T> for arrays, so they
20245         implement the generic IList<T> interface.
20247 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
20249         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
20250         (chastamar@yahoo.com). Fixes #75374.    
20252 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
20254         * culture-info-table.h: regenerated.
20256 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20258         * icall.c: handle spaces correctly for base64 strings.
20260 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
20262         * *.c: Kill some warnings.
20264 2005-06-23  Duncan Mak  <duncan@novell.com>
20266         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
20267         that this builds on Solaris 10 (x86).
20269 2005-06-23  Martin Baulig  <martin@ximian.com>
20271         * class.c
20272         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
20273         generic type definitions.
20275 2005-06-23  Martin Baulig  <martin@ximian.com>
20277         Fix #75331.
20279         * metadata.c (mono_class_get_overrides): Renamed to
20280         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
20281         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
20282         pass it to mono_get_method_full().
20284 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
20286         * reflection.c (mono_reflection_create_runtime_class): take the
20287         mono_domain_lock in this method. Prevents deadlocks
20289 2005-06-22  Martin Baulig  <martin@ximian.com>
20291         * loader.c (method_from_methodspec): Fix #75330.
20293 2005-06-22  Martin Baulig  <martin@ximian.com>
20295         * reflection.c (type_get_qualified_name): Use
20296         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
20297         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
20298         argument; use it if we don't have an assembly name.
20300 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
20302         * object.c: In mono_message_init, set "copy out" flag for in
20303         parameters with the [Out] flag.
20305 2005-06-21  Martin Baulig  <martin@ximian.com>
20307         * class.c
20308         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
20309         and MONO_TYPE_PTR.
20311 2005-06-21  Martin Baulig  <martin@ximian.com>
20313         * class.c (mono_class_init): Don't initialize `class->fields' for
20314         generic instances since they're initialized again in
20315         compute_field_layout(). 
20316         (compute_field_layout): Set the field's `generic_info' here; fix
20317         #75320. 
20319 2005-06-21  Martin Baulig  <martin@ximian.com>
20321         * class-internals.h
20322         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
20324         * metadata.c (mono_metadata_generic_method_equal): Also
20325         distinguish the `generic_class'; fixes #75334.
20327 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20329         * domain.c:
20330         * appdomain.c:
20331         * domain-internals.h:
20332         * reflection.c: 'domain_assemblies' field is now protected by its own
20333         lock. Don't call into managed code to run the AssemblyLoad event if we
20334         now there are no registered delegates for it.
20336 2005-06-20  Martin Baulig  <martin@ximian.com>
20338         * class.c (mono_class_is_assignable_from): Use a custom version of
20339         mono_class_has_parent() to make things work for generic instances;
20340         fix #75300.
20342 2005-06-20  Martin Baulig  <martin@ximian.com>
20344         * loader.c (method_from_methodspec): Apply a patch from
20345         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
20347 2005-06-20  Martin Baulig  <martin@ximian.com>
20349         * class.c (mono_class_init): Reverted Zoltan's last change; it
20350         breaks generics.
20352 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
20354         * threads.c (wait_for_tids_or_state_change): Add missing locking.
20356 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20358         * socket-io.c: fix the index in the socket array for writable/error
20359         sockets. Fixes bug #75306.
20361 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
20363         * class.c (mono_class_init): Allow interfaces to have static ctors.
20365 2005-06-17  Martin Baulig  <martin@ximian.com>
20367         * loader.c (method_from_methodspec): Use `context->container' when
20368         parsing the `gmethod->inst'.
20370 2005-06-17  Martin Baulig  <martin@ximian.com>
20372         * class.c (mono_type_get_name_recurse): Don't add the assembly
20373         name for type arguments.
20375 2005-06-15  Martin Baulig  <martin@ximian.com>
20377         * reflection.c (mono_image_get_inflated_method_token): Encode
20378         correct klass; fixes #75260.
20380 2005-06-13 Michal Moskal <malekith@nemerle.org>
20382         * icall.c: Make GetCorrespondingMethod/Constructor take
20383         MonoReflectionMethod method not MonoMethod. Removed
20384         MonoType.GetCorrespondingField, and make
20385         MonoGenericType.GetCorrespondingField take name not
20386         MonoClassField.
20388 2005-06-13  Michal Moskal <malekith@nemerle.org>
20390         * reflection.c (field_encode_signature, encode_locals):
20391          Make sizes of buffers for types larger (for big generic types).
20392          (create_generic_typespec,
20393          mono_reflection_sighelper_get_signature_local,
20394          mono_reflection_sighelper_get_signature_field):
20395          Add asserts for too small buffers.
20397 2005-06-15  Martin Baulig  <martin@ximian.com>
20399         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
20400         if our parent is not a dynamic type.
20402 2005-06-15  Martin Baulig  <martin@ximian.com>
20404         * class-internals.h (MonoTypeNameFormat): New enum.
20406         * class.c
20407         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
20408         (mono_type_get_full_name): Removed.
20409         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
20410         argument instead of the boolean's.
20412         * icall.c (ves_icall_System_MonoType_getFullName):
20413         Added `gboolean assembly_qualified'.    
20415         * reflection.h
20416         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
20418         * reflection.c (mono_reflection_parse_type): Parse the new type
20419         name format.
20421 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20423         * icall.c: no need to convert from utf16 to utf8 and then back again
20424         after the call to GetLogicalDrives.
20426 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20428         * icall.c: frombase64. Fix problems exposed by new tests.
20430 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20432         * icall.c: added internal calls for converting char [] and strings in
20433         base64 into byte [].
20435 2005-06-10  Martin Baulig  <martin@ximian.com>
20437         * class.c (mono_class_create_generic_2): Read the nested classes
20438         from the metadata rather than from `gklass->nested_classes' since
20439         `gklass' might not be initialized yet.
20441 2005-06-09  Duncan Mak  <duncan@novell.com>
20443         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
20444         all public headers. Fixes #74919.
20446 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
20448         * domain.c: The key for proxy_vtable_hash is now a pointer
20449         array. Added new GHashFunc and GCompareFunc functions for this.
20451         * class.h: The list of interfaces in MonoRemoteClass is known in
20452         advance and can't grow (we create a new MonoRemoteClass if needed),
20453         so now the interface array can be allocated together with
20454         MonoRemoteClass.
20455         
20456         * object.c: Added a new method create_remote_class_key.
20457         Fixed mono_remote_class so it does not depend on
20458         mono_upgrade_remote_class.
20459         Removed extend_interface_array.
20460         Added new method clone_remote_class(), which makes a copy of a remote
20461         class and adds a new interface or class to it.
20462         mono_upgrade_remote_class() now creates a new remote class (or gets
20463         it from the cache) if an vtable upgrade is needed. In this way
20464         we make sure that other objects sharing the same remote class
20465         don't get the new vtable with unwanted interfaces.
20466         
20467         * object-internals.h:
20468         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
20469         
20470         * marshal.c: Track changes in mono_upgrade_remote_class().
20472 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
20473         * icall.c: Add runtime methods for obtaining members of inflated
20474         class, which were created from supplied non-inflated members. It
20475         is used in internal Get{Method,Constructor,Field} methods in
20476         System.Type
20478 2005-06-09  Martin Baulig  <martin@ximian.com>
20480         * reflection.c
20481         (mono_reflection_bind_generic_method_parameters): Fix #75169.
20483 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20484         * reflection.c (mono_image_basic_init): Define
20485         Version in MonoDynamicAssembly. 
20486         
20487 2005-06-08  Martin Baulig  <martin@ximian.com>
20489         Fix #75136.
20491         * loader.c
20492         (mono_method_signature_full): New public method; takes a
20493         `MonoGenericContext *'.
20494         (find_method): Use mono_method_signature_full() and pass the
20495         klass'es context to it.
20497         * class.c (mono_class_is_inflated_method): Use
20498         mono_method_signature_full() and pass the context to it.
20500 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
20502         * object.c: add proper locking in mono_remote_class_vtable(),
20503         fixes possible memory corruption.
20505 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
20507         * marshal.c (mono_remoting_marshal_init): set
20508         initialized after initialization.
20510 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
20512         * locales.c : hush.
20514 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
20516         * object.c (extend_interface_array): fix really silly
20517         memory corrupting / comparison bug.
20519 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20521         * reflection.c: Functions added to support the creation
20522         of CustomAttributeData, which includes Attribute data
20523         used by ReflectionOnly methods.
20525         * reflection.h:  mono_reflection_get_custom_attrs_data and
20526          mono_custom_attrs_data_construct added (functions exposed).
20528          * icall.c: Added mono_reflection_get_custom_attrs_data
20529          as icall.
20530         
20531 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
20533         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
20534         lupus's request.
20536 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
20538         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
20540         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
20541         dynamic DllImportAttribute.
20543         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
20544         dynamic DllImportAttribute.
20546         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
20547         Fixes #75162.
20549 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20551         * threads.c: avoid segfault when an unstarted thread is aborted.
20553 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
20555         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
20556         Returns the name and version of the runtime for reporting.
20558 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20560         * appdomain.c: bump corlib version.
20561         * object-internals.h: new field in MonoReflectionAssembly.
20563 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20565         * object-internals.h: Carlos forgot to add this field.
20567 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20569         * icall.c: Added create_version to create instances
20570         of Version of MonoReflectionAssemblyName. This change helps
20571         the AssemblyName tests to keep running fine.
20572         
20573 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20574   
20575         * object.c (mono_method_return_message_restore): A somehow less
20576         intrusive fix for #75138.
20578 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20580         * object.c (mono_method_return_message_restore): Fix computation
20581         of expected number of out args.
20583 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20585         * reflection.c (mono_image_get_method_info): Fix the case when the
20586         charset is empty.
20588 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20590         * object.c: Added missing null check in
20591           mono_method_return_message_restore.
20593 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20595         * reflection.c (mono_image_get_method_info): Handle the case when
20596         dllentry is empty.
20598 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20600         * object.c: When creating the vtable for a proxy, take into account
20601         all inherited interfaces, not only the ones registered in
20602         iclass->interfaces. This fixs bug #74996.
20603         Also, in mono_method_return_message_restore, verify that the array
20604         of out args has the expected lengh.
20606 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20608         * socket-io.c: update the timeout in Poll when the call is interrupte.
20610 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20612         * socket-io.c: support abort/suspend in Select_internal after last
20613         change.
20615 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20617         * threadpool.c: remove warning.
20619 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20621         * icall.c:
20622         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20623         removing the 1024 limit from select(). Runtime part of the fix for
20624         bug #71203.
20626 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20628         * socket-io.c: when resolving the addresses for the same
20629         host returned by gethostname(), get the local IPs from the interface
20630         list. Loopback addresses are discarded if the are interfaces up with
20631         non-loopback ones. Fixes bug #63265.
20633 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20635         * appdomain.c, verify.c, object-internals.h, reflection.c:
20636         bumped corlib number to 36, and added new extra_flags field
20637         to ReflectionMethodBuilder and friends.  Fixes #75060.
20639 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20641         * gc.c: register a new weak link only if the object is non-null
20642         (fixes bug#75047).
20644 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20646         * culture-info.h : short time pattern too.
20648 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20650         * culture-info.h : expand long time pattern string length.
20652 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20654         * culture-info-table.h : update (more French date format; #72788).
20656 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20658         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20659         the method is static. Fixes #75029.
20661 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20663         * reflection.c: Update the table_idx field of method builders after
20664         saving the module, since it can change. This is a workaround for
20665         bug #74914. 
20667 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20669         * culture-info-table.h : update (additional French date format).
20671 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20673         * icall.c (ves_icall_type_Equals): Revert last change.
20674         
20675         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20677         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20679 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20681         * class-internals.h: Added executioncontext_class field to 
20682         MonoDefaults structure.
20683         * domain.c: Cache System.Threading.ExecutionContext class in 
20684         mono_defaults.
20685         * object.c: Capture the ExecutionContext for asynchroneous calls in
20686          mono_async_result_new.
20687         * object-internals.h: Added execution_context and original_context 
20688         fields to MonoAsyncResult. Added execution_context to MonoThread.
20689         * security-manager.c|.h: Added mono_get_context_capture_method to 
20690         return the capture method (if required by the security manager or by
20691         the framework version used).
20692         * threadpool.c: Apply capture (if present) ExecutionContext in 
20693         mono_async_invoke and revert to original context after it completes.
20695 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20697         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20699 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20701         * culture-info-table.h : zh-CHT related workaround.
20703 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20705         * marshal.c (emit_marshal_custom): Add some error checking and call the
20706         methods in the ICustomMarshaler interface. Fixes #74875.
20707         
20708         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20709         native->managed wrappers.
20711 2005-05-12  Martin Baulig  <martin@ximian.com>
20713         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20714         here and use the loader lock.
20716         * mono-debug.c: Properly lock when the debugger is not attached.
20717         (mono_debug_init): Release the initial lock if we're not running
20718         in the debugger.
20720 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20722         * marshal.c (emit_marshal_custom): Pass through NULL values without
20723         calling the custom marshalling routines.
20725         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20726         conversion in structures. Fixes #74882.
20728 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20730         * culture-info-table.h : zh-* cultures were missing.
20732 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20734         * threads.c: Added a new event background_change_event which is signaled
20735         when a thread changes its background mode.
20736         Moved here several checks previously done in managed code. The checks
20737         require the thread lock, and using the thread lock in managed code
20738         can result in deadlocks.
20739         Merged Start_internal and Thread_internal into a single method. Now 
20740         Thread_internal does all work of creating and starting a thread.
20741         Added icalls for setting and getting the state of the object. Moved from
20742         managed code to avoid locking there.
20743         Added wait_for_tids_or_state_change() which is called instad of
20744         wait_for_tids when waiting for non-backround threads to end. This method
20745         will return if one of the threads ends or the background_change_event
20746         is signaled.
20747         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20748         the background mode. This method signals the background_change_event
20749         event.
20750         * icall.c:
20751         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20752         removed Start_internal.
20753         
20754 2005-05-11  Martin Baulig  <martin@ximian.com>
20756         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20757         to order of some fields to get proper alignment on 64-bit machines.
20759 2005-05-11  Martin Baulig  <martin@ximian.com>
20761         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20762         changes as they're broken and completely fuck up the debugger.
20764         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20766 2005-05-10  Martin Baulig  <martin@ximian.com>
20768         * reflection.c (mono_reflection_generic_class_initialize): Don't
20769         call mono_class_setup_parent() here.
20771 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20773         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20774         send/receive timeout use an integer in milliseconds. We were using a
20775         struct timeval.
20777 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20779         * locales.c:
20780         (internal_get_cultures): reserve the first slot of the array for the
20781         InvariantCulture, which will be filled in managed code.
20783 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20785         * reflection.c (mono_image_fill_module_table): Initialize the
20786         GENERATION field as well.
20788 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20790         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20791         Monitor.Enter on the object.
20793 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20795         * threads.c: Enable the wait for running threads when exiting.
20796         * icall.c: Suspend all threads before exiting.
20798 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20800         * assembly.c (mono_assembly_load_reference): Fix warning.
20802 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20804         * threadpool.c: changed the default number of threads per cpu. From now
20805         on, the default will be 20 + (5 * number of cpus) instead of 50.
20807 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20809         * loader.c (mono_method_get_signature_full): Add locking here.
20811 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20813         * appdomain.c: Moved methods for parsing and freeing assembly
20814         names to assembly.c.
20815         * assembly.c, domain-internals.h: Created public methods for parsing
20816         assembly names. Fixed mono_assembly_load_with_partial_name:
20817         it now finds the best match, taking into account the version,
20818         token and culture specified in the partial name. Also return
20819         the latest version if no version information is specified.
20821 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20823         * threadpool.c: replace check for SocketAsyncCall class.
20825 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20827         * threadpool-internals.h:
20828         * Makefile.am: added threadpool-internals.h
20830         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20831         that happen in threadpool threads (tested on MS).
20832         (mono_thread_pool_remove_socket): new function that dispatch any pending
20833         AIO call on a socket that is closing. By now only epoll really needs it,
20834         as select/poll wake up when the socket closes.
20837         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20839 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20841         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20843 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20845         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20847 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20849         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20850         has an abort request, convert it into a suspend request.
20852 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20854         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20855         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20856         is not supported yet.
20858 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20860         * image.c: register assemblies loaded from data (bundles) in the loaded
20861         assemblies hash. Fixes bug #74772.
20863 2005-04-29  Martin Baulig  <martin@ximian.com>
20865         * class.c (mono_type_get_name_recurse): Update to the new naming
20866         schema from the latest .NET 2.x beta2.
20867         (mono_class_setup_vtable_general): If we're a generic instance,
20868         copy the vtable from our generic type definition and inflate all
20869         the methods in it.
20871         * loader.c (find_method): Update to the new naming schema from the
20872         latest .NET 2.x beta2.
20874 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20876         * class.c (mono_class_init): Add a mono_loader_unlock to the
20877         #74734 fix.
20879 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20881         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20882         suspend_all_other_threads () call for the time being, since it can hang.
20884         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20885         the background threads to exit, since it can also hang.
20887         * class.c (mono_class_init): Applied patch from Ankit Jain 
20888         (radical@gmail.com). Avoid pending init errors when a field refers
20889         to a nested class using a typeref. Fixes #74734.
20891         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20892         this for dynamic modules.
20894 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20896         * threads.c: don't wait for threads that are in the process of aborting
20897         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20898         and waiting for background threads to finish. This makes xsp and
20899         mod-mono-server exit without random length delays and/or hangs.
20901 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20903         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20905 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20907         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20908         dynamic types to prevent infinite loops. Fixes #74727.
20910         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20911         ..._is_assignable_to.
20913 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20915         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20917 2005-04-25  Martin Baulig  <martin@ximian.com>
20919         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20921         * domain.c
20922         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20924         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20926         * reflection.c (build_compressed_metadata): Set metadata header
20927         version to 2.0.
20929 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20931         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20932         number into an integral and a decimal part. Fixes #70473.
20934         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20936 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20938         * culture-info-table.h : reflected the latest locale-builder output.
20940 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20942         * threadpool.c: check for SuspendRequested too when deciding if
20943         mono_thread_interruption_checkpoint should be called.
20945 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20947         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20948         * threads.c: remove interruption_mutex and use Interlocked instead. When
20949         suspending all the threads, wait for all the suspended events at once.
20950         If we're shutting down and get an APC that is going to be queued,
20951         call mono_thread_execute_interruption immediately, as the thread might
20952         be sleeping on a pthread condition or mutex.
20954         * icall.c: call mono_runtime_set_shutting_down before suspending the
20955         threads.
20957         Fixes bug #74693. And now xsp is happier when exiting.
20959 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20961         * loader.c (mono_stack_walk): Fix #74690.
20963 2005-04-22  Martin Baulig  <martin@ximian.com>
20965         * mono-debug.h (MonoDebugMethodJitInfo): Added
20966         `MonoDebugMethodJitInfo *jit'.
20968         * mono-debug.c (mono_debug_read_method): Cache the
20969         MonoDebugMethodJitInfo in `address->jit'.
20970         (mono_debug_free_method_jit_info): New public method.
20972 2005-04-22  Martin Baulig  <martin@ximian.com>
20974         * class.c (mono_class_is_assignable_from): Disallow
20975         type parameter -> interface.
20977 2005-04-21  Dick Porter  <dick@ximian.com>
20979         * threads.c (mono_thread_create): Turn an assertion into an error.
20981 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20983         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20984         
20985         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20986         Fix some gcc 4.0 warnings.
20988 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20990         * file-io.c: fix alt dir separator char on unix systems
20991         and cleanup (fixes bug #71214).
20993 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20995         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20996         a call to a remote domain, since the method may be an
20997         interface method in the client domain. This fixes bug #74192.
20999 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21001         * threadpool.c: recv/send are now performed before going back to managed
21002         code to save one transition.
21004 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21006         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
21008         * metadata/threadpool.c: removed hack to workaround the bug above.
21010         Fixes bug #74618.
21012 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
21014         * reflection.c reflection.h: Fix handling of parameter defaults in
21015         dynamic methods. Also fixes handling of parameter attributes.
21016         Fixes #74609.
21018         * mono-debug.c (mono_debug_close_image): Fix warning.
21020 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21022         * socket-io.h: replaced old unused field with new 'blocking'.
21023         * threadpool.c: restore socket blocking state on windows(tm).
21025 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
21027         * icall.c: don't return the codebase in the AssemblyName[] returned by
21028         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
21029         * object-internals.h: Removed FIXME (fields were presents) and fixed
21030         versioncompat declaration.
21032 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21034         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
21035         not closed, so don't cleanup when it happens.
21037 2005-04-13  Chris Toshok  <toshok@ximian.com>
21039         * mono-debug-debugger.h: change prototype for
21040         mono_debugger_lookup_type.
21042         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
21043         this function, although it should probably be named
21044         mono_debugger_init_type.
21046 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21048         * threadpool.c: fix non-AIO case.
21050 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
21052         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
21053         the built-in profiler to measure just JIT compilation times.
21055 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21057         * threadpool.c: the epollfd might be closed by another thread at
21058         any time, so ignore EBADF at treat it as a "we're closing" sign.
21060 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21062         * threadpool.c: release the semaphores with a count equals to the number
21063         of working threads in both IO and regular pools. Fixed typo that messed
21064         up the count of IO pool threads. Don't initialize the pipe handles if
21065         we're using epoll.
21067 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21069         * threadpool.c: some systems don't like a NULL when deleting the socket
21070         from epoll.
21072 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21074         * threadpool.c: fix semaphore allocation.
21076 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21078         * threadpool.c: added epoll() based implementation for asynchronous IO
21079         that is used instead of the default poll() when available.
21080         It can be disabled by setting MONO_DISABLE_AIO.
21082 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21084         * threadpool.c: windows needs 'closesocket' and instead of returning
21085         0 when the stream is closed while in select, it returns -1. Fixes bug
21086         #74573.
21088 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
21090         * class.c (class_compute_field_layout): Fix the regression caused by
21091         the previous try.
21093 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21095         * threadpool.c: separate pool for socket async. IO.
21096         * threadpool.h: mono_max_worker_threads is not a global any more.
21098 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
21100         * class.c (class_compute_field_layout): Fix #74549.
21102 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21104         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
21105         use 2 connected sockets instead.
21107 2005-04-08  Miguel de Icaza  <miguel@novell.com>
21109         * mono-config.c: Add new entry point for mkbundle
21110         mono_config_parse_memory. 
21112 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21114         * threadpool.c: removed another unused function.
21116 2005-04-08  Ankit Jain  <radical@corewars.org>
21118         * reflection.c (get_default_param_value_blobs): Add 'types'
21119         parameter to get the types encoded in the constant table.
21120         (mono_param_get_objects): Use the type from the constant table,
21121         not the type of the parameter, when creating default values.
21122         Handle null default values correctly.
21124 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21126         * file-io.c:
21127         * file-io.h:
21128         * threadpool.c:
21129         * threadpool.h:
21130         * icall.c:
21131         * socket-io.c: removed dead code for async IO.
21133 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21135         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
21137         * threadpool.c: intercept socket async. calls and pass them to a thread
21138         that is polling and dispatching the job items to the threadpool as
21139         socket become ready. Fixes bugs #71217, #71933.
21141         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
21142         between char and short/ushort arrays.
21144         * socket-io.c: remove dead code.
21146 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21148         * locales.c,
21149           icall.c : removed InternalToUpper_Comp() and
21150           InternalToLower_Comp().
21152 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21154         * char-conversions.h : The tables were incorrectly generated. Should
21155           be generated against invariant culture.
21157 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
21159         * object.c (mono_runtime_invoke_array): Fix return value when 
21160         passing pre-created valuetype objects to ctors.
21162         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
21163         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
21164         Fixes #74338.
21166 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
21168         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
21169         only used with --security and hides the wrong corlib version error.
21171 2005-03-30  Joshua Tauberer  <tauberer@for.net>
21173         * class.c: Changed mono_class_name_from_token so that types
21174         outside of a namespace don't have an initial period.  Improved
21175         the g_warning message used in _mono_class_get when loading
21176         fails.
21177         * assembly.c: In mono_assembly_load_reference, when an assembly
21178         can't be found, "No such file or directory" is misleading and
21179         unhelpful because a few paths were checked for the presence of
21180         the assembly.  When that happens (ENOENT), display a nicer
21181         message indicating the directories that were searched.  In all
21182         cases, the warning is made easier to read for non-hackers.
21184 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
21186         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
21187         project/solution.
21188         * appdomain.h|domain.c: Removed inline from functions.
21189         * appdomain.c: Reduced warnings when compiling on windows.
21190         * icall.c: Fixed output_debug declaration to gunichar2*.
21191         * mono-config.c: Reduced warnings when compiling on windows.
21192         * rand.c: Added missing "windows.h". Added missing return value.
21193         * rawbuffer.c: Added missing winsock2.h for windows.
21194         * sysmath.h: Added mono-compiler.h header to allow/ease 
21195         compilation with non-GCC compilers.
21196         * threads.c: Fixed declarations to compile with VS.NET C compiler.
21197         Removed cast warnings.
21199         Adapted from the work of J Lothian (for VC6).
21201 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
21203         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
21204         from default_path.
21206 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
21208         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
21209         the 2.0 profile.
21211 2005-03-27  Raja R Harinath  <harinath@gmail.com>
21213         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
21214         has to be in $(exec_prefix).  $(prefix) is for arch-independent
21215         stuff, and it would probably use $(prefix)/share rather than
21216         $(prefix)/lib.
21218 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21220         * console-io.c: added 2 includes that might be missing.
21222 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
21224         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
21225         profile.
21227         * reflection.c (create_custom_attr): Allocate the params array using
21228         alloca so it gets GC tracking.
21230 2005-03-23  Chris Toshok  <toshok@ximian.com>
21232         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
21233         out some spew.
21235 2005-03-24  Raja R Harinath  <rharinath@novell.com>
21237         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
21238         changes to pick up any changes in prefix, etc.
21240 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21242         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
21243         
21244         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
21245         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
21247 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21249         * class-internals.h object-internals.h class.c reflection.c: Extend the
21250         mono_lookup_dynamic_token () function to return the class of the
21251         token as well. 
21253         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
21254         well. Fixes #73848.
21256 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
21258         * security-manager.c: Skip inheritance checks for intra-corlib
21259         class inheritance and method overrides. This skips a lot of checks
21260         and (anyway) permissions cannot work until corlib is loaded.
21262 2005-03-23  Martin Baulig  <martin@ximian.com>
21264         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
21265         MONO_TYPE_GENERICINST.  
21267 2005-03-23  Martin Baulig  <martin@ximian.com>
21269         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
21271 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21273         * class.c: added locking comments to some functions.
21274         Cache the interface offsets arrays (saves about 20 KB
21275         of runtime memory in a typical app).
21276         Reduce the time overhead in mono_class_setup_supertypes ().
21278 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
21280         * icall.c: speedup and fix leaks in GetMethodsByName and
21281         GetPropertiesByName.
21283 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21285         * reflection.c: some locking fixes.
21287 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21289         * metadata.c: added missing break in case statement.
21291 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
21293         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21294         typedbyref return values. Fixes #73941.
21296 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
21298         * security-manager.c|h: Added demandunmanaged method and 
21299         suppressunmanagedcodesecurity class to MonoSecurityManager.
21300         Renamed aptc class to allowpartiallytrustedcallers.
21302 2005-03-17  Martin Baulig  <martin@ximian.com>
21304         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
21306 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21308         * file-io.c: disabled file async. IO using aio_*. It uses the
21309         threadpool now. Workaround for bug #73718.
21311 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21313         * assembly.h, mono-config.c: added code to deal with bundled configs
21314         for bundled assemblies.
21316 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
21318         * *.c, private.h: cleanup, removing old private.h header file.
21320 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
21322         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
21323         and throw_on_unmappable_char attributes.
21325 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
21327         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
21328         _ProcessName_internal.
21330 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
21332         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
21333         #73631.
21335         * icall.c threads.c threads-types.h: Remove slothash icalls as they
21336         are no longer used.
21338 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
21340         * object.c (compute_class_bitmap): Add support for generics. Fixes
21341         #73527.
21343 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21345         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
21347 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21349         * filewatcher.c: commented out the code for windows watcher, as we don't
21350         use it (we use the managed implementation instead).
21352 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21354         * object-internals.h (MonoThread): Remove 'unused1' field.
21356         * appdomain.c: Bump corlib version.
21358         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
21360         * reflection.c (mono_reflection_create_runtime_class): Remove the
21361         AssemblyBuilder.Save optimization since it causes too many problems.
21363 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
21365         * exception.c|h: Added mono_get_exception_reflection_type_load to
21366         create a ReflectionTypeLoadException object.
21367         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
21368         to return NULL is a InheritanceDemand fails during reflection. Updated
21369         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
21370         ReflectionTypeLoadException if an InheritanceDemand fails during 
21371         reflection. Added icall mapping for GetLinkDemandSecurity.
21372         * security-manager.c|h: Added ves_icall_System_Security_
21373         SecurityManager_GetLinkDemandSecurity internal call to return the
21374         class and methods permissions set for a LinkDemand. Removed unused
21375         fields in MonoSecurityManager.
21377 2005-03-10  Martin Baulig  <martin@ximian.com>
21379         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
21380         it's a generic instance.
21382 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
21384         * reflection.c (mono_get_object_from_blob): Applied patch from
21385         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
21387         * class.c (mono_class_is_assignable_from): Another try at fixing 
21388         #73469 without breaking anything.
21390 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
21392         * class.c: (mono_class_is_assignable_from): Revert the last changes
21393         since they don't work with generics.
21394         
21395         * class.c (mono_class_is_assignable_from): Fix build bustage.
21397         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
21398         the managed IsAssignableFrom method. Fixes #73469.
21400         * reflection.c (mono_reflection_call_is_assignable_from): New helper
21401         function.
21403 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
21405         * object.c (mono_load_remote_field_new): Fix returning uninitialized
21406         memory when the remoting callback does not sets the out arguments.
21407         Fixes #73007.
21409         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
21410         by mistake.
21412         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
21414         * object-internals.h (MonoStackFrame): Sync with managed object layout.
21416         * appdomain.c: Bump corlib version.
21418 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
21420         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
21421         function.
21423         * threads.c (mono_thread_attach): Detect threads which are not started
21424         by the GC pthread wrappers.
21426 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
21428         * icall.c: Added new icall for RNG.
21429         * rand.c|h: Added new icall to open the RNG. This allows to share a 
21430         single handle on Linux to access /dev/urandom and fix #73183.
21432 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
21434         * object.c: setting the new vtable in a transparent proxy object must
21435         not change the GC descriptor.
21437 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21439         * object.c: fixed compilation without GCJ support.
21440         * reflection.c: for runtime-created types ensure klass->has_references
21441         is correct (bug #73215).
21443 2005-03-02  Martin Baulig  <martin@ximian.com>
21445         * class.c (mono_class_is_assignable_from): Make this work if
21446         `oklass' is a generic instance; fixes #72831.
21448 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21450         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
21451         with hasthis set.
21452         
21453         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
21455         * marshal.c: Reorganize native->managed marshalling code to also use
21456         the emit_marshal_... functions.
21458 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21460         * object.c: typed allocs have issues with bitmap sizes > 30,
21461         so check for max_set >= 30.
21463 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21465         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
21466         managed code. Fixes #73012.
21468         * metadata.h (MonoMarshalSpec): Add elem_mult field.
21470         * metadata.c reflection.c: Load/Emit elem_mult as well.
21471         
21472         * metadata.h (MonoMarshalSpec): Add comment.
21474         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
21476         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
21477         num_elem to -1 if not given.
21479         * object-internals.h (MonoReflectionMarshal): Add has_size field.
21481         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
21482         given values.
21484 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
21486         * null-gc.c (mono_gc_free_fixed): Was not compilable.
21488 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
21490         * reflection.c (encode_marshal_blob): Encode param_num field as well.
21492         * object-internals.h (MonoReflectionMarshal): Add param_num field.
21494 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21496         * object.c: generalized the reference bitmap creation
21497         and added hooks for the new GC.
21498         * class-internals.c: removed the gc_bitmap field from MonoClass.
21500 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21502         * domain.c: help the compiler to produce better code
21503         in mono_jit_info_table_find ().
21505 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21507         * object.c: make all allocations look typed.
21509 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21511         * socket-io.c: load Mono.Posix if it's not loaded already
21512         (fixes bug#73033).
21514 2005-02-24  Martin Baulig  <martin@ximian.com>
21516         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
21517         * reflection.c (dup_type): Likewise.
21519 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
21521         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
21522         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
21524 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21526         * domain.c, threads.c, object-internals.h: make the critical thread
21527         local vars use the fast access mode (even when we're compiled in
21528         a lib). Provide accessors to be used by the jit during codegen.
21530 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21532         * appdomain.c: Changed hook functios behavior to include
21533         support for the reflection only assemblies. Some icalls were changed
21534         to support the mentioned assemblies too. Signatures of static methods
21535         try_assembly_resolve and real_load now have an additional parameter:
21536         refonly.
21538         * assembly.c: General changes to mono_assembly_ methods to support
21539         reflection only api. Functions mono_assembly_open, mono_assembly_load,
21540         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
21541         suffix, to support an additional gbool parameter to specify whether
21542         the assembli is reflection only or not. Created some new hook functions 
21543         to add support for reflection only assemblies. Signatures of static 
21544         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
21545         have now an additional parameter: refonly.
21547         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
21548         indicating whether the assembly is reflection only or not.
21550         * exception.c: Add mono_get_exception_invalid_operation.
21552         * icall.c: Throw an InvalidOperationException when trying to invoke
21553         a property/method/event, or trying to set/get the value of a field.
21554         Also add an icall to retrieve the ref_only flag to the
21555         MonoReflectionAssembly.
21557 2005-02-23  Chris Toshok  <toshok@ximian.com>
21559         Part of fix for #72827.
21560         * mono-debug.c (mono_debug_add_method): add lexical block data to
21561         the info we write.  Kind of a hack at the moment - we copy the
21562         lexical block info from the MonoDebugMethodInfo to the
21563         MonoDebugMethodJitInfo here, before writing it.
21564         (mono_debug_read_method): read the lexical block info.
21566         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
21568         * debug-mono-symfile.h: add lexical block support.
21570         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21571         support.
21573 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21575         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21577         * object.c (mono_runtime_free_method): Call mono_free_method () and
21578         put the TODOs there.
21580         * loader.c (mono_free_method): Free up most memory allocated for 
21581         dynamic methods.
21583 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21585         * reflection.c: properly flag a Type argument to a
21586         named custom attr value (bug #72248).
21588 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21590         * reflection.c: reduce code duplication in named custom
21591         attribute encoding.
21593 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21595         * reflection.c: properly encode custom attrs of type object
21596         (bug #72649).
21598 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21600         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21602 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21604         * socket-io.c: load System.dll if it's not loaded already
21605         (bug #72850 and #70477).
21607 2005-02-21  Martin Baulig  <martin@ximian.com>
21609         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21610         generic instances.
21612 2005-02-21  Martin Baulig  <martin@ximian.com>
21614         * reflection.c (mono_image_build_metadata): We also need to
21615         "fixup" the MethodImpl table after we computed the final method
21616         indices.  Call fixup_methodimpl() to do that.
21617         (fixup_methodimpl): New private method.
21619 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21621         * assembly.c: special case mscorlib.dll (bug#72536),
21622         patch from Carlos Alberto Cortez.
21624 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21626         * threads-types.h threads.c: Fix build bustage.
21628         * threads.c: Use a union for long<->double conversions.
21630         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21631         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21633         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21634         containing the checkpoint call with NOT_TAKEN.
21635         
21636         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21637         checkpoint before pushing the arguments, so they won't have to be
21638         spilled to stack.
21640 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21642         * domain.c, assembly.c, domain-internals.h: make some data
21643         const and relocation-free.
21645 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21647         * object.c, appdomain.c, class-internals.h: introduce the
21648         MonoClassRuntimeInfo structure to hold the info needed to
21649         use a class at runtime. Made mono_class_vtable() lock-free
21650         for all the appdomains.
21652 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21654         * metadata-internals.h, image.c: introduce a per-image mempool to
21655         be used for memory that has the same lifetime as the image.
21657 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21659         * domain.c: In mono_init_internal(), instead of selecting the first
21660         runtime version supported by an executable, get a list of all
21661         supported versions and select the one for which an mscorlib exists
21662         (since even if the runtime supports a given version, it doesn't mean
21663         that the framework for that version is installed).
21664         Modified get_runtimes_from_exe to support this behavior.
21665         In supported_runtimes, added information about additional system
21666         assembly versions.
21667         
21668         * assembly.c: Added support for more than one system assembly version
21669         per runtime version. Updated the assembly list.
21670         In mono_assembly_remap_version, removed the initial version check,
21671         since we don't know to which version we need to compare until we
21672         get the version set on which the assembly is based.
21673         Moved the code for loading corlib into the new method
21674         mono_assembly_load_corlib(), so it can be used by the initialization
21675         code.
21676         
21677         * domain-internals.h: Updated data structures and added declaration
21678         for mono_assembly_load_corlib.
21680 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21682         * reflection.c (resolve_object): Fix the creation of the signature in 
21683         the SignatureHelper case.
21685         * assembly.c (mono_assembly_remap_version): Fix binary search.
21686         
21687 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21689         * class.c: Added inheritance check when a method is overloaded (from a
21690         virtual method or when implementing an interface) and when a class is
21691         inherited. Added functions to set a failure for a class and to 
21692         retreive the exception from a failure.
21693         * class-internals.h: Added fields to MonoClass to keep the exception
21694         information status for inheritance (or other exceptions) to be thrown
21695         later (i.e. not at load time).
21696         * object.c: Throw the inheritance SecurityException when a type is to 
21697         be created with either class or method inheritance violations.
21698         * reflection.c|h: Fix when getting declsec from a class. Removed 
21699         unrequired code for class. Improved sanity in parameter naming.
21700         * security-manager.c|h: Added functions to check for class and method
21701         inheritance.
21703 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21705         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21706         and has_finalize in dynamic types as well.
21708 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21710         * culture-info-table.h : fixed currency format for en-GB (and so on).
21712 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21714         * gc.c: ensure the GC handles never have 0 as a value.
21716 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21718         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21719         a pointer to a struct to unmanaged code. Fixes #72625.
21721 2005-02-16  Martin Baulig  <martin@ximian.com>
21723         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21725 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21727         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21729 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21731         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21733         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21734         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21735         etc. Fixes #71471.
21737         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21739         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21741 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21743         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21744         changes to make the current context a field in MonoThread.
21746 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21748         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21749         the last change.
21750         
21751         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21752         extracted from mono_marshal_get_native_wrapper.
21754         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21755         to create wrappers around native functions.
21757         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21758         delegates for arbitrary function pointers. Fixes #71472.
21760 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21762         * threads.c: cleaned up the code a little.
21764 2005-02-15  Martin Baulig  <martin@ximian.com>
21766         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21767         the data table.
21769         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21770         allocate larger chunks if needed.
21772 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21774         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21775         in by mistake.
21777 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21779         * domain.c: keep the domains in an array and ensure the domain ids
21780         are kept small, so they can be used as indexes to domain-specific data
21781         with a small memory overhead.
21783 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21785         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21787 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21789         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21791 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21793         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21795         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21796         values.
21798         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21799         
21800 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21802         * domain-internals.h: add the hashtable here.
21804         * class-internals.h: Remove `info' from MonoMethod
21806         * domain.c: Add a new hashtable, jit_trampoline_hash
21808 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21810         * object.c: don't set the value of static fields
21811         (fixes bug#72494).
21813 2005-02-11  Martin Baulig  <martin@ximian.com>
21815         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21816         (mono_debug_add_method): Silently ignore the method if it's too big.
21817         (mono_debug_add_type): Likewise.
21819 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21821         * threads.c, appdomain.c: remove #ifdefs from the code.
21823 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21825         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21826         common security informations. This allows us to stay in unmanaged code
21827         when doing LinkDemand and it's special cases (except for the first 
21828         time for initialization). The flags a very much used with --security.
21829         * reflection.c|h: Added code to get declarative security attributes 
21830         for LinkDemand and InheritanceDemand. This required to refactor the
21831         existing code for Demand.
21832         * security-manager.c|h: Added new method fields for the special cases
21833         of LinkDemand.
21835 2005-02-10  Martin Baulig  <martin@ximian.com>
21837         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21838         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21840 2005-02-10  Martin Baulig  <martin@ximian.com>
21842         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21843         debugging code; this is almost a complete rewrite.
21845         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21847 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21849         * domain.c, object.h: expose mono_string_equal () and 
21850         mono_string_hash ().
21851         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21852         it's implemented in managed code.
21854 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21856         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21857         lo leak objects between appdomains.
21859 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21861         * assembly.c: old compilers compilation fix from 
21862         robertj@gmx.net (Robert Jordan).
21864 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21866         * class-internals.h: Little reminder for the future.
21868         * debug-helpers.c: Fix up wrapper_type_names
21870 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21872         * image.c, metadata-internals.h: when loading an image from a file,
21873         mmap all of it and use the same codepaths as when using a
21874         in-memory image: the code is simpler and we use less memory
21875         (both writable and readonly).
21877 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21879         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21880         API to alloc runtime data structures that need to be tracked by the
21881         GC and contain pointers.
21882         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21883         make the code more readable and eventually use a different GC.
21885 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21887         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21888         for out arguments.
21889         
21890 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21892         * object.c: In release_type_locks(), don't release the cctor lock
21893         if it has already been released. This fixes a crash in the
21894         thread5 test.
21896 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21898         * gc.c, marshal.c, icall.c: register a delegate for finalization
21899         only when the native function pointer has been allocated for it.
21901 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21903         * object.c: cleaned up some code, allocate objects that are
21904         pointer free with the atomic malloc variant. Allocate memory
21905         for static data from the mempool if it's pointer-free.
21906         Allocate the bounds array at the end of the array data, when needed.
21907         * object-internals.h, object.h: move a private function in a private
21908         header.
21909         * class.c: handle missing case in tracking references in fields.
21911 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21913         * class.c, class-internals.h: keep track if a type has
21914         reference fields in either the instance or static fields.
21916 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21918         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21919         and renamed to MonoRuntimeInfo. Added fields to store the expected
21920         framework assembly version. Changed mono_get_framework_version and
21921         mono_get_runtime_version for a single mono_get_runtime_info method.
21922         
21923         * assembly.c: Added method to remap system assembly versions to the
21924         current executing runtime version. Removed old mapping code.
21925         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21926         
21927         * icall.c, reflection.c: Track api changes.
21929 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21931         * loader.c (method_from_memberref): Improve error reporting,
21932         produce the class name instead of the typeref/typedef index. 
21934 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21936         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21938 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21940         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21941         stdcall and charset name mangling.  Reorganize the code and add
21942         some tracing stuff.
21944 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21946         * monodiet.c: More iters!
21948         * marshal.c: Iter usage.
21950         * icall.c: Iter usage.
21952         * object.c: Use iters.
21954         * debug-helpers.c: More iters
21956 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21958         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21959         under win32.
21961 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21963         * mono-debug-debugger.c: use iters
21965         * class.c, class-internals.h: mono_class_setup_events is static
21966         now
21968         * All callers: use iters
21970 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21972         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21973         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21975 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21977         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21979         * marshal.h: Add prototypes for ldfld/stfld_remote.
21981         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21982         this is called during startup.
21983         
21984 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21986         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21987         MonoThreadsSync struct private in monitor.c. Changed the way
21988         MonoThreadsSync is allocated so it's faster and there is no
21989         need to keep track of it with a finalizer and it uses less memory.
21990         This also finally allows us to allocate mono objects as ptrfree when
21991         there are no reference fields.
21993 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21995         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21996         disappearing link to the GC interface and use them to simplify
21997         the gchandles code.
21999 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
22001         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
22002         stfld_remote which call mono_load/store_field_new. This allows methods
22003         calling ldfld/stfld wrappers to be AOTed.
22005         * console-io.c: Include sys/filio.h under solaris.
22006         
22007         * console-io.c: Include curses.h if needed correctly.
22009 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
22010         
22011         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
22012         method->klass as well.
22014         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
22016         * class.c (mono_class_init): Switch on lazy initialization of 
22017         methods.
22019         * class.c (mono_class_get_finalizer): Handle the case when the 
22020         finalizer is inherited.
22022 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22024         * console-io.c: <curses.h> is needed by term.h on solaris.
22026 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
22028         * icall.c, class-internals.h, monodiet.c, class.c: Remove
22029         mono_class_setup_properties where possible. Remove this ftn from
22030         the header file, and make it static.
22032 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
22034         * loader.c: Add missing setup_... call.
22036         * class.c: Add missing setup_... calls.
22038         * class.c (mono_class_init): Switch on lazy initialization of 
22039         the generic vtable.
22040         
22041         * class.c (mono_class_init): Fix generics broken by the recent changes.
22043         * monodiet.c (handle_type): Add missing setup_... calls.
22045         * class.c: Back out garbage in previous patch.
22046         
22047         * class.c: Add missing setup_... calls.
22049         * class.c (mono_class_get_method_from_name_flags): Avoid calling
22050         mono_class_setup_methods () if possible.
22052         * class-internals.h (MonoClass): Add 'has_cctor' flag.
22054         * class-internals.h (MonoCachedClassInfo): New structure.
22056         * class.c: Initialize properties and events fields of MonoClass lazily.
22058         * class.c: Add infrastructure for lazily initializing the methods and
22059         vtable fields of MonoClass. Not yet used.
22061         * class.c (mono_class_get_finalizer): New helper function.
22063         * class.c: Add infrastructure for loading some class related data from
22064         an AOT file.
22066         * object.c: Add infrastructure for initializing the vtable from data
22067         in the AOT file.
22069         * gc.c (run_finalize): Use mono_class_get_finalizer ().
22071         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
22072         appropriate initialization function before accessing parts of the
22073         MonoClass structure.
22075         * marshal.c: Fix warnings.
22076         
22077         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
22079         * mono-debug-debugger.c (get_exception_message): Use 
22080         mono_class_get_method_from_name_flags ().
22082 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
22084         * reflection.c, appdomain.c: Replace a few manual searches that
22085         Zoltan missed. (Paolo approved this part of my initial patch).
22087 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
22089         * profiler.c: disable recording statistical events at report time.
22091 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22093         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
22094         to byteswap arrays of enum values, too (bug #72080).
22096 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
22098         * appdomain.c (set_domain_search_path): Allow this to be called if
22099         domain->setup is not yet set.
22101         * loader.c (mono_method_get_index): New helper function.
22103         * loader.c reflection.c: Use mono_method_get_index ().
22105         * class.c (mono_class_get_method_from_name_flags): New helper method.
22107         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
22108         this.
22110         * class.c (mono_class_get_cctor): New helper method.
22112         * string-icalls.c object.c class.c marshal.c reflection.c: Use
22113         mono_class_get_method () to look up methods.
22115 2005-02-01  Miguel de Icaza  <miguel@novell.com>
22117         * console-io.c: Fix the build, this should work on Windows.
22119 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
22121         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
22122         be set to null to keep things valid
22124 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22126         * icall.c: added Console 2.0 icalls.
22127         * Makefile.am: added console-io.[ch]
22128         * console-io.[ch]: internal calls for Console 2.0 API.
22130 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22132         * class.c: make sure we consider all the interfaces
22133         when calculating max_interface_id (bug found by
22134         Jeroen Frijters running ikvm).
22136 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
22138         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
22139         valuetype fields to null.
22141         * object.c (set_value): Ditto. Fixes #71669.    
22143 2005-01-31  Martin Baulig  <martin@ximian.com>
22145         * metadata.c (mono_metadata_has_generic_params): New public
22146         function; checks whether something is a generic method.
22148 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
22150         * appdomain.c: fix infinite recursion when adding assemblies.
22152 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
22154         * object.c: Fix small typo to return all items for Environment.
22155         GetCommandLineArgs.
22157 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22159         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
22160         reflection.c: more domain and assembly-unload related fixes
22161         and memory leaks plugs.
22163 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
22165         * 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.
22167 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
22169         * loader.c (mono_method_signature): Make this method lazy
22170         (mono_get_method_from_token): Don't computate the signature here.
22172         Doing this saves quite a bit of memory. I got 90 kb on starting up
22173         monodoc. It should also save some disk reads on startup.
22175         * *: MonoMethod->signature might be NULL now. You *MUST* use
22176         mono_method_signature.
22178 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
22180         * object.c (mono_runtime_get_main_args): Return an array from the
22181         current domain here. Fixes #71938.
22183 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
22185         * monitor.c: formatting changes to comply with the
22186         mono coding style and remove #ifdefs from the code.
22188 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22190         * metadata.c, private.h: remove some unneeded data
22191         and use a more compact representation for table schemas.
22193 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
22195         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
22196         to get a better distribution in hash tables.
22197         * *.c: use mono_aligned_addr_hash() where appropriate.
22198         * assembly.c: make var static.
22200 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
22202         * domain-internals.h: Put MonoJitInfo on a diet.
22204         * domain.c: Fix a warning.
22206 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22208         * gc.c: rework the gc handles code to reuse handles
22209         when freed.
22211 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22213         * domain.c: fixed long standing bug in mono_string_equal() which
22214         was brought to light with the ldstr changes.
22216 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
22218         * reflection.c: Remove warning by adding missing include for marshal.h
22220 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22222         * domain.c, object.c: change the ldstr_table to hold
22223         MonoString* as keys: makes the runtime isinterned lookup
22224         faster and simplifies memory management.
22226 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
22228         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
22229         possible to add imperative security checks before calling the icall.
22230         * reflection.c: Return security attributes on the original MonoMethod
22231         (and not the wrapped one). This fix permissions on icalls.
22233 2005-01-25  Dick Porter  <dick@ximian.com>
22235         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
22236         the check for mktime() support actually test the mktime() return
22237         value.  "Fixes" bug 71682, though the output is still different to
22238         MS.
22240 2005-01-25  Martin Baulig  <martin@ximian.com>
22242         * class.c (mono_class_is_assignable_from): Make this work for
22243         generic instances.
22245 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
22247         * marshal.c (mono_string_utf8_to_builder)
22248         (mono_string_builder_to_utf16): We might not have ownership of the
22249         string. In thise case, we need to create a new buffer.
22251         * object-internals.h (mono_stringbuilder_capacity): sb->str might
22252         be null, in which case, use the default capacity.
22254 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22256         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
22257         GC events to the profiler.
22259 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22261         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
22262         if you don't want the GC to run.
22264 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
22266         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
22267         start providing a GC API and keeping different implementations in
22268         their own file.
22269         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
22271 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
22273         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
22274         mmap rather than allocating a huge buffer.
22275         (mono_debug_close_mono_symbol_file): Free the buffer allocated
22276         above.
22278 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
22280         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
22281         and CheckExecutionRights.
22282         * reflection.c|h: Keep the index of the declarative security to be 
22283         used, instead of the pointer, when AOT compiler is used. Also add 
22284         class initialization when requesting demands.
22285         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
22286         CheckExecutionRights. Both properties are now FALSE by default, and
22287         unmodifiable, unless the --security option is used.
22289 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22291         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
22292         reflection.c: properly refcount images and assemblies, many leaks fixed.
22294 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22296         * threadpool.c: increase the timeout for threads in the thread pool to
22297         10s.  Fixes bug #67159.
22299 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
22301         * class-internals.h: Sun's compiler insists on explicit
22302         signed on bit fields to handle then correctly.
22304 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
22306         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
22307         Make the size of the array fit only the number of invalid path
22308         chars that we have.
22310         * class.c (_mono_class_get): Improve the error reporting when a
22311         class referenced is not found, to assist debugging. 
22313 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
22315         * threads.c: fix off-by-one error.
22316         * domain.c: free data allocated in the domain.
22318 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22320         * reflection.c (mono_method_body_get_object): Fill out exception info
22321         as well.
22323         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
22324         structure.
22325         
22326 2005-01-19  Martin Baulig  <martin@ximian.com>
22328         * loader.c (mono_get_method_constrained): Make this work again.
22330 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22332         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
22333         guint16 to match the managed side.
22335         * reflection.c (mono_reflection_body_get_object): Fill out local
22336         variables array.
22338         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
22339         as well.
22341         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
22342         'local_var_sig_token'.
22344 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
22346         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
22347         System.Drawing.
22349         * reflection.c (mono_method_body_get_object): Handle abstract and
22350         runtime methods.
22352 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
22354         * marshal.c, loader.c, class-internals.h, reflection.c:
22355         store the emthod data for a wrapper in an array instead of a list.
22357 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
22359         * marshal.c: change the code to allocate memory more
22360         conservatively for method wrappers.
22362 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
22364         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
22365         fields from MonoClass to the marshal info structure where they belong.
22367 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22369         * class.c, object.c, class-internals.h, marshal.c: rearrange
22370         some fields and tweak some types to lower memory usage.
22372 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
22374         * threads.c (signal_thread_state_change): Handle the case when the
22375         target thread is the current thread.
22377         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
22379         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
22380         emit_ptr_to_object_conv. 
22382         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
22383         marshalling. Fixes #71352.
22385 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22387         * metadata.h, blob.h: move table enum to blob.h so it can be included
22388         in any header.
22389         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
22390         cut the size of MonoImage/MonoDynamicImage.
22392 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
22394         * profiler.c (mono_profiler_install_simple): Fix default arguments.
22396 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
22398         * reflection.c, reflection.h, icall.c: add a function to check
22399         if an attribute type is defined for a metadata object.
22401 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
22403         * object-internals.h: Added some needed fields from StringBuilder class.
22404         * marshal.c: Set the maxCapacity when creating a StringBuilder.
22406 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
22408         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
22409         threads before shutting down the runtime.
22411         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
22413 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22415         * object-internal.h, threads.c: implement stacksize and 
22416         parameterized thread start functionality (requires
22417         matching corlib). Marked broken code for later removal.
22419 2005-01-12  Martin Baulig  <martin@ximian.com>
22421         * class-internals.h (MonoGenericClass): Moved the `initialized'
22422         flag to MonoDynamicGenericClass, removed `init_pending'.
22423         (MonoGenericInst): Added `is_reference' flag.
22425 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
22427         * reflection.c (mono_image_create_pefile): Only set the pe_offset
22428         inside the MSDOS header. Fixes #71201.
22430         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
22431         gc thread.
22432         (mono_domain_finalize): Ditto.
22434 2005-01-12  Martin Baulig  <martin@ximian.com>
22436         * class.c (mono_get_shared_generic_class): Use the cache for
22437         non-dynamic generic classes.
22439         * class-internals.h (mono_class_create_generic_2): Removed
22440         function prototype, this function is now static inside class.c.
22442         * class.c (mono_class_create_generic_2): Made this static, only
22443         call it from mono_class_init() and mono_class_setup_parent().
22444         (collect_implemented_interfaces_aux): Call mono_class_init() on
22445         the interfaces we collect.
22446         (mono_class_setup_vtable): Call mono_class_init (class->parent).
22448 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22450         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
22451         it a real thread handle.
22453         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
22454         MonoJitExceptionInfo, since each catch clause needs its own variable.
22455         
22456 2005-01-11  Dick Porter  <dick@ximian.com>
22458         * image.c (mono_pe_file_open): New variant on mono_image_open()
22459         that does not set up the CLI metadata; used for FileVersionInfo so
22460         it can get the data for windows binaries too.
22461         
22462         * process.c (process_read_string_block): Don't read off the end of
22463         the StringTable block.
22465         These both fix bug 70766.
22467 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
22469         * gc.c: set some fields to NULL at GC cleanup time.
22470         * threads.c: if we quit the main thread, call exit ().
22472 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22474         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
22476 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
22478         * threads.h, threads.c, object.c: added accessor and settor for
22479         main_thread. Handle it specially when exiting from it: wait
22480         for other foreground threads to exit.
22482 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
22484         * process.c, verify.c: remove some bloat.
22486 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
22488         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
22489         the calling convention to cdecl under win32.
22491 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
22493         * object.c (mono_object_get_size): New function to get the size of
22494         an object instance.
22496         * profiler.c (simple_allocation): Use above.
22498 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
22500         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
22501         ves_icall_System_AppDomain_getRootDomain (as it's not required to
22502         get an appdomain by it's id and we can't assume the root's id is 0).
22503         * domain-internals.h: Change the function prototype to match.
22504         * icall.c: Change the icall table for AppDomain.
22506 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
22508         * locales.c (string_invariant_compare_char): Only compute
22509         GUnicodeTypes in the case where we need them.  Test for ordinality
22510         first and return if so.
22512         From the commit:
22514                 /*
22515                  * FIXME: here we must use the information from c1type and c2type
22516                  * to find out the proper collation, even on the InvariantCulture, the
22517                  * sorting is not done by computing the unicode values, but their
22518                  * actual sort order.
22519                  */
22521 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22523         * loader.c: for P/Invoke methods, allow the "Internal" shared
22524         library name to refer to the calling process symbol namespace.
22526 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
22528         * Makefile.am: Add the security manager to the build.
22529         * security-manager.c|h: New. Initialization of the security manager.
22531 2005-01-07  Dick Porter  <dick@ximian.com>
22533         * threads.c: 
22534         * monitor.c: Update thread state during Monitor and WaitHandle
22535         waits.  Fixes bug 71031.
22537 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
22539         * reflection.c (property_encode_signature): Correctly handle when the
22540         property has no methods.
22542 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
22544         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
22545         
22546         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
22547         fields from mb, not rmb. Fixes #71017.
22549         * marshal.c (emit_ptr_to_str_conv): Add support for 
22550         ByValTStr -> string conversion. Fixes #71015.
22552         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
22554         * mempool.c (mono_mempool_contains_addr): New helper function.
22556 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22558         * metadata.c (mono_metadata_compute_size): Fix size calculation of
22559         HasSematics encoded fields.
22560         
22561         * metadata.c (mono_type_to_unmanaged): Improve error message for 
22562         invalid string marshalling.
22564         * metadata.c: Fix warnings.
22565         
22566 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22568         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22569         profiler support.
22571 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22573         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22574         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22575         tests.
22577 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22579         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22580         so methods containing these can be AOTed.
22582 2005-01-03  Martin Baulig  <martin@ximian.com>
22584         * loader.c (find_method): Removed the hack for generic instances.
22585         (method_from_memberref): If our parent is a generic instance, pass
22586         its generic type definition to find_method() and then inflate the
22587         method.
22588         (mono_get_method_constrained): Pass the generic type definition to
22589         find_method() and inflate the method later.
22591         * class-internals.h (MonoStats): Added `generic_class_count'.
22593         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22594         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22596         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22597         generic type definitions.
22599 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22601         * loader.c icall.c: Fix warnings.
22603 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22605         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22606         blittable types. Fixes #70864.
22608 2004-12-29  Martin Baulig  <martin@ximian.com>
22610         * icall.c
22611         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22613         * reflection.c (mono_method_get_object): Create a
22614         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22615         call mono_get_inflated_method().
22617         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22619 2004-12-27  Martin Baulig  <martin@ximian.com>
22621         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22622         (MonoMethodInflated): Added `inflated' field.
22624         * class.c (mono_class_inflate_generic_method): Don't really
22625         inflate the method here; just set the `is_inflated' flag in the
22626         MonoMethod.
22627         (mono_class_get_inflated_method): Actually inflate the method here
22628         if it's not already inflated; we use the MonoMethodInflated's new
22629         `inflated' field as a cache.
22631 2004-12-26  Martin Baulig  <martin@ximian.com>
22633         * class.c
22634         (inflate_generic_class): Moved some code out of inflate_generic_type().
22635         (mono_class_inflate_generic_method): If we're already inflated,
22636         inflate the context and use the declaring method; ie. make sure
22637         the declaring method of an inflated method is always the generic
22638         method definition.
22639         (mono_class_create_from_typedef): Create
22640         `class->generic_container->context->gclass'.
22642 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22644         * metadata-internals.h, marshal.c, reflection.c: More
22645         MonoGHashTable->GHashTable.
22647         * domain-internals.h, class.c: Change MonoGHashTable's into
22648         GHashTables for some cases where no gc stuff is used
22650         All users: update apis
22652 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22654         * metadata.c (builtin_types): Make this `const'. Makes this get
22655         put into the shareable section.
22656         (mono_metadata_init): Casts to make gcc happy.
22658 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22660         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22662 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22664         * icall.c: Added an internal call to retrieve the position and length
22665         of assembly-level declarative security attributes (RequestMinimum, 
22666         RequestOptional and RequestRefuse). This is used by the Assembly class
22667         to re-create the corresponding permission sets.
22669 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22671         * marshal.c: fix the stelemref wrapper to be type correct
22672         (and faster).
22674 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22676         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22677         to do key & 0x7fffffff. Hashtable already does this. It just
22678         results in longer code.
22680 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22682         * appdomain.c: Bump corlib version.
22683         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22684         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22685         * reflection.c|h: Add functions to get declarative security infos
22686         (blob position and length) for assemblies, classes and methods.
22688 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22690         * reflection.c: sort the constant table (bug #70693).
22692 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22694         * object-internals.h, threads.c, domain.c: add accessors for
22695         the MonoThread and MonoDomain tls keys.
22697 2004-12-18  Martin Baulig  <martin@ximian.com>
22699         * class.c (inflate_generic_type): If we're inflating a generic
22700         instance, set `ngclass->context->container = context->container';
22701         ie. the container we inflated into.
22703         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22704         inflate_generic_type() changes.
22706 2004-12-17  Martin Baulig  <martin@ximian.com>
22708         * class-internals.h
22709         (MonoGenericClass): Replaced `MonoType *generic_type' with
22710         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22711         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22712         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22714 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22716         * exception.c (mono_exception_from_token): New helper function.
22718 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22720         * assembly.c (mono_assembly_load_with_partial_name): Call 
22721         mono_assembly_loaded before invoking the preload hooks. Fixes
22722         #70564.
22724         * object-internals.h (MonoThread): Change culture_info and 
22725         ui_culture_info into an array.
22727         * threads.c: Cache culture info objects from more than one appdomain.
22729         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22730         current UI culture.
22732 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22734         * threads.h threads.c appdomain.c: Clear the culture_info field of
22735         all threads during unloading if they point to an object in the dying
22736         appdomain.
22738 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22740         * culture-info.h (TextInfoEntry): New struct
22741         * object-internals.h: sync with managed
22742         * locales.c: fill the `text_info_data' field
22743         * culture-info-tables.h: update
22745 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22747         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22748         collector.
22750 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22752         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22753         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22755 2004-12-12  Martin Baulig  <martin@ximian.com>
22757         * mono-debug-debugger.c (write_type): If we're an enum and the
22758         builtin types have already been initialized, call mono_class_init().
22760 2004-12-11  Martin Baulig  <martin@ximian.com>
22762         * metadata.c (mono_metadata_load_generic_params): Added
22763         `MonoGenericContainer *parent_container' argument; automatically
22764         compute `container->is_method'; pass the correct owner to
22765         get_constraints().      
22767         * reflection.c (compare_genericparam): Sort the GenericParam table
22768         according to increasing owners. 
22770 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22772         * profiler.c: allow disabling the default profiler.
22774 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22776         * decimal.c, icall.c: allow disabling System.Decimal support.
22778 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22780         * reflection.c: Add support for null attribute arguments.
22782 2004-12-09  Martin Baulig  <martin@ximian.com>
22784         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22785         names to get rid of compiler warnings.
22787 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22789         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22790         mono_marshal_load_type_info (). Fixes #69625.
22791         (mono_marshal_get_ptr_to_struct): Likewise.
22793 2004-12-08  Martin Baulig  <martin@ximian.com>
22795         * mono-debug.h: Bumped version number to 47.
22797         * mono-debug-debugger.c
22798         (mono_debugger_event_handler, mono_debugger_event): Take two
22799         guint64 arguments insteed of a gpointer and a guint32.  
22801 2004-12-08  Martin Baulig  <martin@ximian.com>
22803         * debug-mono-symfile.h
22804         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22805         `address' to `native_offset'.
22807 2004-12-08  Martin Baulig  <martin@ximian.com>
22809         * class.c (mono_class_create_from_typespec): Only inflate if we
22810         either have `context->gclass' or `context->gmethod'.
22812 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22814         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22816         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22818         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22820         * reflection.c (mono_assembly_get_object): Remove the workaround put
22821         in for the release.
22822         
22823         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22825         * appdomain.c: Bump corlib version.
22827         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22828         be visible in other appdomains.
22830 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22832         * threads.c: Interlocked inc and dec for longs were messed up,
22833         use a KISS based impl for this. Fixes 70234
22835 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22837         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22839 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22841         * icall.c: fix to follow policy not to allow struct
22842         arguments in icalls.
22844 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22846         * process.c: make the patch that handles spaces in file paths work
22847         on mono/windows too.
22849 2004-12-06  Martin Baulig  <martin@ximian.com>
22851         * class.c (mono_class_create_generic): Call
22852         mono_class_setup_supertypes() if we're dynamic.
22853         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22855 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22857         * object-internals.h: Add new fields to MonoThread.
22859         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22861         * icall.c threads-types.h threads.c: Add new icalls.
22863         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22865         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22866         managed side.
22868         * appdomain.c: Bump corlib version.
22870         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22871         internal assemblies. Fixes #69181.
22873 2004-12-05  Martin Baulig  <martin@ximian.com>
22875         * class.c (mono_class_inflate_generic_signature): Make this a
22876         no-op if `context' is NULL or we don't have any type parameters;
22877         also copy `sentinelpos'.        
22879 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22881         * image.c: Add unbox_wrapper_cache.
22883         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22885         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22886         function generator.
22887         
22888         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22889         Fixes #70173.
22891         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22892         
22893 2004-12-04  Martin Baulig  <martin@ximian.com>
22895         * loader.c (mono_method_get_signature_full): New public function;
22896         like mono_method_get_signature(), but with an additional
22897         `MonoGenericContext *' argument.
22899         * class.c (mono_class_inflate_generic_signature): Formerly known
22900         as inflate_generic_signature(); make this public.
22902 2004-12-04  Martin Baulig  <martin@ximian.com>
22904         * metadata.c
22905         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22906         instead of a `MonoGenericContainer *'.  
22907         (mono_metadata_parse_array_full): Likewise.
22908         (mono_metadata_parse_signature_full): Likewise.
22909         (mono_metadata_parse_method_signature_full): Likewise.
22910         (mono_metadata_parse_generic_inst): Likewise.
22911         (mono_metadata_parse_generic_param): Likewise.
22912         (mono_metadata_parse_mh_full): Likewise.
22913         (mono_type_create_from_typespec_full): Likewise.
22915 2004-12-03  Martin Baulig  <martin@ximian.com>
22917         * class-internals.h (MonoGenericContainer): Replaced the
22918         `MonoGenericContext * pointer with a `MonoGenericContext'
22919         structure and made it the first element.
22921 2004-12-03  Martin Baulig  <martin@ximian.com>
22923         * class.c
22924         (inflate_generic_type): Set the `context->container' when creating
22925         a new MonoGenericContext.
22926         (mono_class_inflate_generic_method): Likewise.
22927         (mono_class_create_from_typespec): Just use `context->container'
22928         to get the container.
22930         * loader.c (method_from_methodspec): Set `context->parent' from
22931         `context->container' - and if that's a method container, use its
22932         parent.  Also set the `context->container' when creating a new
22933         MonoGenericContext.
22934         (mono_get_method_from_token): Use just `context->container' to get
22935         the container.
22937         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22938         `gclass->context->container'.
22940         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22941         the `context->container' when creating a new MonoGenericContext.
22943 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22945         * reflection.c (compare_genericparam): Sort params with identical
22946         owner by their number. Fixes gen-111 on sparc.
22948 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22950         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22951         around the domain changes.
22953         * appdomain.c (mono_domain_unload): Handle the case when the thread
22954         calling Unload is itself being aborted during unloading. Fixes #70022.
22956         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22958         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22959         checkpoint_func as an icall so it gets a wrapper.
22960         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22961         in the cross-appdomain wrappers too.
22963         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22965         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22967         * reflection.c: Fix some memory leaks.
22968         
22969 2004-12-02  Martin Baulig  <martin@ximian.com>
22971         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22973         * metadata.c (generic_class_cache): New static hashtable.
22974         (mono_metadata_lookup_generic_class): New public method.
22976 2004-12-02  Martin Baulig  <martin@ximian.com>
22978         * class.c (mono_class_create_from_typedef): Call
22979         mono_class_setup_parent() and mono_class_create_mono_type() before
22980         parsing the interfaces.
22982 2004-12-02  Martin Baulig  <martin@ximian.com>
22984         * metadata.c (generic_inst_cache): New static hashtable.
22985         (mono_metadata_lookup_generic_inst): New public function.
22986         (mono_metadata_inflate_generic_inst): New public function.
22987         (mono_metadata_parse_generic_inst): New public function.
22988         (do_mono_metadata_parse_generic_class): Use the new
22989         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22990         since this'll also use the cache.
22992         * reflection.c (mono_reflection_bind_generic_method_parameters):
22993         Use mono_metadata_lookup_generic_inst() to use the new cache.
22995         * class.c (inflate_mono_type): Use
22996         mono_metadata_inflate_generic_inst() to inflate a generic
22997         instance; this'll also use the new cache.
22999         * loader.c (method_from_methodspec): Use
23000         mono_metadata_parse_generic_inst() and
23001         mono_metadata_inflate_generic_inst() rather than parsing it
23002         manually, so we can use the new cache.
23004 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
23006         * threads.c (wait_for_tids): Do not incorrectly free threads when 
23007         the wait times out.
23009 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
23011         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
23012         iter->args based on whether parameters are passed in registers (i.e.
23013         MONO_ARCH_REGPARMS is defined)
23015 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
23017         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
23018         the exception message. Fixes #70070.
23019         (method_from_methodspec): Fix warnings.
23021 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23023         * process.c: (complete_path) return the path quoted
23025 2004-12-01  Martin Baulig  <martin@ximian.com>
23027         * class-internals.h (MonoGenericInst): New structure.
23028         (MonoGenericClass): Replaced `type_argc', `type_argv' and
23029         `is_open' with `MonoGenericInst *inst'.
23030         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
23031         `is_open' with `MonoGenericInst *inst'.
23033 2004-11-30  Martin Baulig  <martin@ximian.com>
23035         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
23037         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
23038         to `generic_class_cache'.
23040         * metadata.c
23041         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
23042         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
23043         (mono_generic_inst_is_valuetype): Renamed to
23044         mono_generic_class_is_valuetype().
23046         * class-internals.h
23047         (MonoGenericInst): Renamed to MonoGenericClass.
23048         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
23049         (MonoClass): Renamed `generic_inst' to `generic_class'.
23050         (MonoGenericContext): Renamed `ginst' to `gclass'.
23052         * object-internals.h
23053         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
23055         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
23056         mono_reflection_generic_class_initialize().
23058         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
23059         now known as "System.Reflection.MonoGenericClass".
23060         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
23062 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
23064         * class-internals.h: Added a flag field to MonoClass to cache the
23065         declarative security attributes actions associated with the class.
23066         * domain-internals.h: Added booleans to MonoJitInfo to cache the
23067         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
23068         applicable to the JITted method.
23069         * reflection.c|h: Added functions to extract (as flags) which security
23070         actions are available (declaratively) for a method, class or assembly.
23071         * metadata.c|h: Added functions to search the declarative security
23072         table in the metadata.
23073         
23074 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
23076         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
23077         EXPORTEDTYPES are already in the class name cache, so there is no
23078         need to add extra code here to look at them. Just removes a bit of
23079         cruft.
23081         (ves_icall_System_Environment_get_TickCount): No need for #if
23082         WINDOWS. We already have the code in io-layer.
23084 2004-11-28  Martin Baulig  <martin@ximian.com>
23086         * loader.c
23087         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
23088         Fixes gen-112.cs.
23090 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
23092         * assembly.c (do_mono_assembly_open): Instead of having a
23093         conditional WITH_BUNDLE, incorporate support for bundles here, by
23094         having a global `bundles' variable holding a pointer to the actual
23095         bundles. 
23097         (mono_register_bundled_assemblies): New API call used by the
23098         bundle code. 
23100         See mkbundle.1 for details.
23101         
23102 2004-11-27  Martin Baulig  <martin@ximian.com>
23104         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
23105         the vtable for generic methods.
23107 2004-11-26  Martin Baulig  <martin@ximian.com>
23109         * metadata.c
23110         (mono_metadata_generic_method_hash): New public function.
23111         (mono_metadata_generic_method_equal): Likewise.
23113         * class-internals.h
23114         (MonoGenericContainer): Added `GHashTable *method_hash'.
23116         * reflection.c (ReflectionMethodBuilder): Added
23117         `MonoGenericContainer *generic_container'.
23118         (reflection_methodbuilder_to_mono_method): Don't create a new
23119         MonoGenericContainer each time we're called.
23120         (mono_reflection_bind_generic_method_parameters): Use
23121         `container->method_hash' to cache the results so we don't create a
23122         different method if we're called several times with the same
23123         arguments.
23125         * loader.c (method_from_methodspec): Use the new
23126         `container->method_hash' here, too.
23128 2004-11-26  Martin Baulig  <martin@ximian.com>
23130         * class.c (inflate_generic_signature): Correctly compute
23131         `res->has_type_parameters'.
23132         (mono_class_vtable): Use the `has_type_parameters' flag to
23133         determine whether we're a generic method.
23135         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
23137 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
23139         * object.c (mono_runtime_run_main): Fix a small memory leak.
23141 2004-11-25  Martin Baulig  <martin@ximian.com>
23143         * class.c (set_generic_param_owner): Fixed the loop.
23145 2004-11-25  Martin Baulig  <martin@ximian.com>
23147         * object.c (mono_class_vtable): Don't create any JIT wrappers for
23148         generic methods.
23150 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
23152         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
23153         names. Fixes #69787.
23155 2004-11-24  Martin Baulig  <martin@ximian.com>
23157         * class.c (mono_class_create_generic_2): If we don't have a
23158         `ginst->parent', inflate `gklass->parent' to get our parent.
23160 2004-11-24  Martin Baulig  <martin@ximian.com>
23162         * reflection.c (compare_genericparam): Correctly sort the
23163         GenericParam table; fixes #69779.
23165 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
23167         * reflection.c: When writing a PE file, don't create a huge
23168         buffer in memory. Just write the arrays we have to the file.
23169         This reduces memory usage.
23171         * metadata-internals.h: MonoDynamicStream pefile is no longer used
23172         globally.
23174 2004-11-17  Martin Baulig  <martin@ximian.com>
23176         * class.c (mono_class_init): Don't setup `class->parent' for
23177         dynamic instances; moved this to mono_class_generic_2().
23178         (mono_class_create_generic): Also set `klass->inited' for dynamic
23179         generic instances.
23180         (mono_class_create_generic_2): Don't do anything for dynamic
23181         generic instances.  Set `klass->parent' here and also call
23182         mono_class_setup_parent() here. 
23184         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
23185         `MonoType *parent' argument; set `ginst->parent' before calling
23186         mono_class_create_generic_2(), so we set the correct parent.
23188 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
23190         * reflection.c: allow getting attributes from ModuleBuilder
23191         (used by ikvm).
23193 2004-11-17  Martin Baulig  <martin@ximian.com>
23195         * class.c (mono_class_create_from_typedef): If a type parameter is
23196         inherited from an outer class, set its owner to that class.
23198 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
23200         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
23201           for (int*) written size. This fixes bug #69592.
23203 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
23205         * icall.c: Added IsAuthenticodePresnet internal call.
23206         * image.c|h: New function that check a MonoImage for an Authenticode
23207         signature in the certificate PE data directory.
23208         * security.c|h: New internal call to ask the runtime if an 
23209         Authenticode signature seems referenced in the PE header.
23211 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
23213         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
23215         * reflection.c (mono_image_create_pefile): Free the assembly streams
23216         after writing out the assembly file.
23218         * object.c (mono_runtime_run_main): Fix small memory leak.
23220         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
23221         property access modifiers. Fixes #69389.
23223 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
23225         * domain.c, object.c, object-internals.h, domain-internals.h,
23226         object.h, marshal.c: keep dynamic code info per domain.
23228 2004-11-15  Martin Baulig  <martin@ximian.com>
23230         * class.c (mono_type_get_name_recurse): Put type arguments in
23231         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
23232         see bug #68387.
23234 2004-11-15  Martin Baulig  <martin@ximian.com>
23236         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
23237         (mono_class_setup_vtable): When computing `the_cname' for a
23238         generic instance, don't include the namespace since we'd otherwise
23239         add it twice.
23241 2004-11-15  Martin Baulig  <martin@ximian.com>
23243         * class.c (mono_class_create_generic): Changed return type to void.
23244         (mono_class_create_generic_2): New public function; setup
23245         `class->method', `class->field' and `class->interfaces' here
23246         instead of in mono_class_init().
23248         * class.h (mono_class_create_generic): Moved to class-internals.h.
23250 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
23252         * reflection.c (mono_image_create_pefile): take a file HANDLE.
23253         rather than writing to memory, write to this file. Right now,
23254         we are just writting into a buffer, and copying that. However
23255         we can avoid the buffer later.
23257         (mono_dynamic_stream_reset): new function
23259         * icall.c, object-internals.h: update for the above.
23261 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
23263         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
23264         have been using gc'd memory. First it is slower, unlikely
23265         the comment in the source code said, secondly, it increases
23266         our footprint to do it in the gc.
23268         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
23269         the method so that it does not have to copy to managed code.
23271 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
23273         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
23275 2004-11-12  Martin Baulig  <martin@localhost>
23277         * reflection.c (mono_image_create_token): Allow generic method
23278         definitions here, since they may appear in an `.override'; see
23279         gen-98/gen-99 for an example.
23281 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
23283         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
23284         #69365.
23286         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
23287         descriptive.
23289 2004-11-11  Martin Baulig  <martin@ximian.com>
23291         * class.c (mono_class_setup_vtable): In an explicit interface
23292         implementation, the method name now includes the arity.
23294 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
23296         * object.c (mono_array_full_copy): Fix warning.
23298 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
23300         * appdomain.c: Removed look_for_method_by_name(). Use the new method
23301         mono_class_get_method_from_name() instead.
23302         
23303         * class-internals.h: Added two new types of wrappers. 
23304         Added MonoRemotingTarget enum. Added new trampoline function type, which
23305         takes an additional MonoRemotingTarget value as parameter, so it is
23306         possible to request a trampoline for a specific target.
23307         
23308         * class.c: Added new mono_class_get_method_from_name() method.
23309         
23310         * class.h: In MonoRemoteClass, we can have now to vtables, one for
23311         general remoting sinks and one specific for cross domain calls.
23312         
23313         * debug-helpers.c: Added new wrapper names.
23314         
23315         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
23316         of a remote class.
23317         
23318         * image.c: Porperly delete value objects form the remoting invoke hashtable.
23319         
23320         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
23321         with several other methods (mono_marshal_get_xappdomain_dispatch,
23322         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
23323         and others) can generate a fast remoting wrapper for cross domain calls.
23324         More information can be found in docs/remoting.
23325         Other changes: Removed mono_find_method_by_name, and used
23326         mono_class_get_method_from_name instead.
23327         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
23328         is stored in the remoting invoke hashtable.
23329         
23330         * marshal.h: published the new method for getting the xdomain wrapper,
23331         and also added a method for getting the adequate wrapper for a given
23332         method and target.
23333         
23334         * object-internals.h, object.c: Added a couple of methods for capying and
23335         cloning arrays.
23336         Modified mono_install_remoting_trampoline, which takes the new remoting
23337         trampoline that has a remoting target as parameter.
23338         mono_class_proxy_vtable now also takes a remoting target as parameter, and
23339         will return the most suitable vtable for the target.
23340         Added mono_remote_class_vtable, which returns the vtable of a remote class
23341         (which can be the normal remoting vtable or the xdomain vtable).
23342         
23343         * threads.c: the xdomain invoke and dispatch wrappers must also be
23344         protected against interruptions.
23346 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23348         * icall.c: use memmove in BlockCopyInternal when the source and
23349         destination arrays are the same.
23351 2004-11-09  Martin Baulig  <martin@ximian.com>
23353         * class-internals.h (MonoGenericContainer): Removed `method' and
23354         `signature', replaced them with `is_method' and `is_signature'
23355         flags.  Added `context'.
23357         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
23358         instead of a `MonoGenericContainer *'.
23360         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
23361         for dynamic type parameters.
23362         (mono_metadata_load_generic_params): Setup `container->context'.
23364         * reflection.c (mono_reflection_setup_generic_class): Setup
23365         `tb->generic_container->context'.
23366         (do_mono_reflection_bind_generic_parameters): Use
23367         mono_class_inflate_generic_type() to correctly inflate types,
23368         rather than using our own hack just for MONO_TYPE_VAR.
23370 2004-11-09  Martin Baulig  <martin@ximian.com>
23372         * class.c (mono_class_inflate_generic_method): Small fix; don't
23373         crash here.
23375         * icall.c
23376         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
23377         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
23378         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
23379         (ves_icall_Type_BindGenericParameters): Likewise.
23380         (ves_icall_Type_get_IsGenericInstance): Likewise.
23381         (ves_icall_Type_GetGenericParameterPosition): Likewise.
23382         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
23383         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
23384         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
23386 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
23388         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
23389         assembly versions and public key tokens. Fixes #69113.
23391 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
23393         * metadata.c: fix bug introduced with the type cache changes
23394         on 2004-11-06.
23396 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
23398         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
23399         the MonoClass pointer instead of the token in exception clauses.
23400         * reflection.c: updates for the above and make the code not depend
23401         on the structure of MonoExceptionClause.
23403 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
23405         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23406         Add support for dynamic assemblies. Fixes #69114.
23408         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
23410 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
23412         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
23413         since most only those methods use it. the code member of
23414         MonoMethodPInvoke was dead, so that can be removed too. Also,
23415         remove inline_count (again, not used), and move slot so that it
23416         can share bits with some other flags. This saves 8 bytes in the
23417         structure and gives us about 50 kb back for mcs helloworld.cs
23419         * *.[ch]: Do naming changes for the above.
23421         * loader.c (mono_method_get_header): Lazily init the header
23422         on first access.
23423         (mono_get_method_from_token): don't init the header here
23424         (mono_free_method): the header may never be allocated
23426         Overall, this saves 150 kb of unmanaged allocations
23427         for mcs helloworld.cs. That accounts for 10% of the unmanaged
23428         memory at runtime.
23429         
23430         * loader.c, loader.h (mono_method_get_header): new accessor.
23432         * *.[ch]: use the above method. Prepares us to lazily load
23433         the header.
23435         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
23436         three warnings, which are actual bugs (see 69206).
23438         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
23439         unused. Saves a cool 4 bytes / method.
23441 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
23443         * metadata.c (builtin_types): Add types for System.Object here.
23444         (mono_metadata_parse_type_full): Cache MonoType*'s that are
23445         for a class or valuetype from klass->this_arg or klass->byval_arg.
23447         On mcs for a hello world, this gets us down from 21836 MonoType's
23448         to 14560.
23450         (mono_metadata_free_type): Account for the above change.
23452 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
23454         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
23455         exception instead of asserting if name is null.
23456         (ves_icall_System_AppDomain_GetData): Ditto.
23458 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
23460         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
23461         EnumBuilder.
23463         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
23464         Return NULL when the domain does not have entry_assembly set.
23466         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
23467         Add a 'resource_modules' argument.
23468         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
23470         * reflection.c (mono_reflection_create_runtime_class): Move setting
23471         of wastypebuilder here, so mono_get_type_object () returns a MonoType
23472         for enums too.
23474         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
23475         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
23476         Throw an ArgumentNullException if 'ptr' is null.
23478         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
23479         assemblies here. Fixes #69020.
23481 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
23483         * reflection.c (build_compressed_metadata): Fix the previous patch for
23484         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
23485         the stack.
23487 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
23489         * assembly.c (mono_assembly_names_equal): Allow a match if one of
23490         the cultures is false. Fixes #69090.
23492         * reflection.c (build_compressed_metadata): Fix invalid memory read 
23493         detected by valgrind.
23494         
23495         * reflection.c (mono_reflection_get_type): Avoid triggering a 
23496         TypeResolve multiple times for the same type. Fixes #65577.
23498 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
23500         * marshal.c: Avoid using ldftn to call managed functions. It is
23501         much slower than just a call.
23503         * reflection.c (mono_module_get_object): free the basename we
23504         allocate here from glib.
23505         
23506         * reflection.c (ensure_runtime_vtable): make sure to free
23507         overrides.  Also, we were allocating an array of MonoMethod not an
23508         array of MonoMethod*.
23510         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
23512         * image.c (mono_image_close): free image->guid here.
23514 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
23516         * reflection.c: Fix some spec conformance issues with the PE file
23517         structures so mcs compiled apps run on the Net 2.0 beta.
23519 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
23521         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
23522         Implement this. Fixes #67264.
23524         * debug-helpers.h debug-helpers.c marshal.c: Move 
23525         mono_find_method_by_name to debug-helpers.c.
23527 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
23529         * object.c (mono_release_type_locks): type_initialization_hash is
23530         a GHashTable.
23532         * reflection.c object.c object-internals.h: Fix warnings.
23534         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
23535         without accessors. Fixes #61561.
23537         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
23538         application base from the root domain if not set. Fixes #65641.
23539         (mono_runtime_init): Fix warning.
23541 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23543         * appdomain.c: call mono_thread_pool_init.
23544         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
23545         of worker threads based on the number of CPUs and the environment
23546         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
23547         for non-windows (windows) systems.
23549 2004-10-27  Chris Toshok  <toshok@ximian.com>
23551         * mono-debug-debugger.c (write_class): don't call mono_class_init
23552         here, as even with the check for (!klass->init_pending), we get
23553         into a situation where we're hitting cycles in class
23554         initialization.  Fixes #68816.
23556 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
23558         * image.c: Avoid overwriting values in the loaded_images_hash when an
23559         assembly is loaded multiple times. Fixes #61152.
23561         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
23562         so multiple satellite assemblies for the same name can be loaded.
23563         Fixes #68259.
23565         * mono_domain_assembly_preload: Actually return the loaded assembly, 
23566         not NULL.
23568         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23569         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23571         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23572         pending finalizers are not invoked after the appdomain has been 
23573         unloaded. Fixes #67862.
23575 2004-10-22  Martin Baulig  <martin@ximian.com>
23577         * mono-debug-debugger.c
23578         (mono_debugger_runtime_invoke): Don't box valuetypes.
23580 2004-10-22  Chris Toshok  <toshok@ximian.com>
23582         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23583         don't hide private methods.
23585 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23587         * icall.c: Allows the runtime to "share" (when known) the public key
23588         token of an assembly. This avoid the need to recalculate the token 
23589         (from the public key) in managed code.
23591 2004-10-21  Chris Toshok  <toshok@ximian.com>
23593         * debug-helpers.c (append_class_name): argh, revert last patch.
23594         
23595 2004-10-21  Chris Toshok  <toshok@ximian.com>
23597         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23598         not '/', so that it matches what the debugger uses to look up
23599         methods.
23601 2004-10-21  Martin Baulig  <martin@ximian.com>
23603         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23604         public method; this is called each time an exception is thrown and
23605         allows the debugger to use exception catch points.
23607 2004-10-21  Martin Baulig  <martin@ximian.com>
23609         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23610         the stack pointer and the exception object in some struct and pass
23611         that to the debugger.
23613 2004-10-21  Chris Toshok  <toshok@ximian.com>
23615         * mono-debug-debugger.c (do_write_class): add instance/static
23616         event support.  We don't expose "raise" or "other" yet.
23617         (event_is_static): new method.
23619 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23621         * mono-debug-debugger.c
23622         (mono_debugger_handle_exception): Remove
23623         bogus return value for fussy compilers.
23625 2004-10-20  Martin Baulig  <martin@ximian.com>
23627         * mono-debug-debugger.c
23628         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23629         (mono_debugger_handled_exception): Likewise.
23631 2004-10-20  Martin Baulig  <martin@ximian.com>
23633         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23634         MONO_DEBUGGER_EVENT_EXCEPTION.
23636         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23637         public function to send the debugger a notification for an
23638         exception and inform it about a catch/finally clause.
23640 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23642         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23643         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23644         fix 2.95 build. 
23646         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23648 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23650         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23651         marshalled as [In,Out]. Fixes #58325.
23653 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23655         * reflection.c (mono_method_body_get_object): Implement some fields.
23657 2004-10-12  Martin Baulig  <martin@ximian.com>
23659         * reflection.c (mono_reflection_bind_generic_parameters): Small
23660         fix, correctly retrieve our parent from a generic instance.
23662 2004-10-12  Martin Baulig  <martin@ximian.com>
23664         * metadata.c (mono_metadata_generic_param_equal): We always have
23665         an owner.
23667         * class.c
23668         (mono_class_from_generic_parameter): We need to have an owner.
23669         (my_mono_class_from_generic_parameter): Likewise.
23671         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23672         mono_reflection_create_generic_class() and added a new
23673         mono_reflection_setup_generic_class().  
23674         (mono_reflection_initialize_generic_param): If we're a nested
23675         generic type and inherited from the containing class, set our
23676         owner to the outer class.
23678 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23680         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23682         * reflection.c (mono_method_body_get_object): New function to create
23683         a MethodBody object.
23685         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23687 2004-10-11  Martin Baulig  <martin@ximian.com>
23689         * metadata.c (_mono_metadata_type_equal): Renamed to
23690         do_mono_metadata_type_equal() and made static.
23692 2004-10-11  Martin Baulig  <martin@ximian.com>
23694         * appdomain.c: Bump corlib version number to 28.
23696 2004-10-10  Martin Baulig  <martin@ximian.com>
23698         * class-internals.h
23699         (MonoGenericInst): Added `MonoGenericContainer *container'.
23700         (MonoGenericMethod): Likewise.
23701         (MonoGenericContext): Likewise.
23702         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23704         * metadata.c
23705         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23706         (do_mono_metadata_parse_generic_inst): Likewise.
23707         (mono_metadata_parse_type_full): New public method.  This is the actual
23708         mono_metadata_parse_type() implementation - with an additional
23709         `MonoGenericContainer *' argument.
23710         (mono_metadata_parse_array_full): Likewise.
23711         (mono_metadata_parse_signature_full): Likewise.
23712         (mono_metadata_parse_method_signature_full): Likewise.
23713         (mono_metadata_parse_mh_full): Likewise.
23714         (mono_type_create_from_typespec): Likewise.
23715         (mono_metadata_interfaces_from_typedef_full): New public method;
23716         this is similar to the other _full() methods, but we take a
23717         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23718         (mono_metadata_parse_generic_param): Take an additional
23719         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23720         from that container.
23721         (mono_metadata_generic_param_equal): New static method to compare
23722         two type parameters.
23723         (_mono_metadata_type_equal): New static method; takes an
23724         additional `gboolean signature_only' argument - if true, we don't
23725         compare the owners of generic parameters.
23726         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23727         with a TRUE argument - do a signature-only comparision.
23729         * loader.c: Use the new _full() methods and pass the
23730         MonoGenericContainer to them.
23732         * object-internals.h (MonoReflectionTypeBuilder): Added
23733         `MonoGenericContainer *generic_container' field.
23734         (MonoReflectionMethodBuilder): Likewise.
23736 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23738         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23739         case initial images of dynamic assemblies.
23741         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23743         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23745         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23746         length of event->other array.
23747         (typebuilder_setup_events): Ditto.
23749         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23750         'assembly_by_name' and add an 'assemblies' list.
23752         * assembly.h assembly.c: Add a new search hook for determining whenever
23753         an assembly is already loaded. Use this instead of searching in the
23754         loaded_assemblies list.
23756         * domain.c appdomain.c: Implement the new search hook so loaded 
23757         assemblies are now scoped by appdomain. Fixes #67727.
23759 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23761         * threads.c (mono_thread_attach): Initialize synch_lock field so
23762         mono_thread_detach works again.
23764         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23765         'lib' too. Fixes #63130.
23767 2004-10-06  Jackson Harper  <jackson@ximian.com>
23769         * culture-info-tables.h: regenerated.
23771 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23773         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23774         implemented by other interfaces in the result. Fixes #65764.
23775         
23776         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23777         Handle unloadable modules without crashing.
23779         * image.c (load_modules): Revert the previous patch since modules must
23780         have a fixed index inside the array.
23781         
23782         * image.c (load_modules): Don't include native modules in the modules
23783         array.
23785 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23787         * reflection.h: Add param_defaults field.
23789         * reflection.c: Add support for parameter defaults in dynamic methods.
23790         Fixes #64595.
23792         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23793         an empty string when a type has no namespace. Fixes #64230.
23795 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23797         * tabledefs.h: Added "internal" security actions to support non-CAS
23798         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23799         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23801 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23803         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23804         constructor of abstract class. Fixes #61689.
23806 2004-10-04  Martin Baulig  <martin@ximian.com>
23808         * class-internals.h (MonoGenericContainer): New type.
23809         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23810         `MonoGenericContainer *generic_container'.
23811         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23812         `MonoGenericContainer *generic_container'.
23814         * metadata.c (mono_metadata_load_generic_params): Return a
23815         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23816         removed the `num' argument.
23818 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23820         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23821         for dynamic images.
23823         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23824         machine fields.
23826         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23828         * reflection.c: Save pe_kind and machine values into the generated
23829         image file.
23831         * appdomain.c: Bump corlib version number.
23833         * object-internals.h: Reorganize layout of LocalBuilder.
23835         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23836         New helper function.
23838         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23839         created MonoType for dynamic types. Fixes #66180.
23841 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23843         * threadpool.c: the ares hashtable needs a critical section around it.
23844         this prevents some nasty segfaults
23846 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23848         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23849         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23850         bug 67324).
23851         
23852 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23854         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23855         
23856 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23858         * image.c: Always canonicalize image file names, to avoid loading
23859         the same assembly twice when referenced using a relative path.
23861 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23863         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23865         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23867         * marshal.c: Fix warnings.
23869 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23871         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23872         attempting to marshal the delegate_trampoline as the method_addr.
23873         This patch has a static hashtable of marshalled delegates so that 
23874         we can map delegate_trampoline addresses back to delegates.  This
23875         allows a delegate passed to managed code to be passed back into native
23876         code.  Fixes #67039
23878 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23880         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23882         * reflection.c (method_encode_code): Align method headers properly.
23883         Fixes #66025.
23885 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23887         * marshal.c: In the runtime invoke wrapper, reset the abort
23888         exception if it is cached. This avoids the automatic rethrowal of 
23889         the exception after the catch of the wrapper. Also check for pending
23890         interruptions before calling the managed method. This is done using
23891         the new method emit_thread_force_interrupt_checkpoint, since the
23892         normal checkpoint method is ignored when running the invoke wrapper.
23893         * object.c: If the abort exception is rethrown, set the abort_exc
23894         field of the thread, so it will be rethrown aftere every catch.
23895         * threadpool.c: Only run an interruption checkpoint if what has been
23896         requested is a stop of the thread (aborts will be ignored).
23897         * threads.c: By default, a thread will now never be interrumped while
23898         running the runtime invoke wrapper (this ensures that runtime_invoke
23899         will always return to the caller if an exception pointer is provided).
23900         There is a new special method mono_thread_force_interruption_checkpoint()
23901         to force an interruption checkpoint even if running a protected
23902         wrapper, which is used by the same runtime invoke wrapper to do a check
23903         at a safe point.
23905 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23907         * object.c, object-internals.h: Implemented mono_release_type_locks,
23908         which releases the cctor locks held by a thread.
23909         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23910         by a thread. Added mono_thread_exit() method to be used to safely stop
23911         a thread.
23913 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23915         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23916         Move null check before dereference.  Avoid indexing beyond the end
23917         of the 'modules' array.
23919 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23921         * metadata-internals.h (MonoImage): Add module_count field.
23922         * image.c (load_modules): Set image->module_count.
23923         (mono_image_load_file_for_image): Use image->module_count.
23924         * reflection.c (mono_image_load_module): Append to image->modules array 
23925         of dynamic assembly.
23926         (mono_module_get_object): Fix loop to actually increment index.
23927         Use image->module_count.
23928         * assembly.c (mono_assembly_load_references): Use image->module_count.
23929         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23930         Likewise.
23932 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23934         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23935         Avoid assert on generic types.
23937 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23939         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23941         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23943         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23944         function to convert a MarshalSpec structure to its managed counterpart.
23946         * reflection.c: Fix warnings.
23947         
23948         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23949         field.
23951         * icall.c (mono_create_icall_signature): Fix build.
23953 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23955         * icall.c: Add MakePointType icall.
23957         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23958         warnings.
23960 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23962         * threadpool.c: reuse allocated slots in the queue.
23964 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23966         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23968         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23970         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23971         previous change.
23973         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23974         ThrowOnUnmappableChar.
23976         * icall.c (ves_icall_Type_GetPacking): New icall.
23978 2004-09-24  Martin Baulig  <martin@ximian.com>
23980         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23982 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23984         * appdomain.c:
23985         (mono_domain_set): allow setting a domain that is being unloaded.
23986         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23987         being unloaded.
23989 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23991         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23992         the GetCustomAttributes icall.
23994 2004-09-23  Martin Baulig  <martin@ximian.com>
23996         * object-internals.h (MonoReflectionGenericParam): Replaced
23997         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23998         with `guint32 attrs'.
24000 2004-09-23  Martin Baulig  <martin@ximian.com>
24002         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
24004 2004-09-23  Martin Baulig  <martin@ximian.com>
24006         * object-internals.h (GenericParameterAttributes): New enum.
24008 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
24010         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
24011         
24012         * class.c (init_events): Fill out event->other field.
24014         * class.c: Fix warnings.
24016         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
24018 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
24020         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
24021         walk which doesn't supply the IL offset.
24023 2004-09-22  Martin Baulig  <martin@ximian.com>
24025         * reflection.c (mono_reflection_setup_internal_class): If we're
24026         System.ValueType, System.Object or System.Enum, set
24027         `klass->instance_size' and create the vtable.
24028         (mono_reflection_create_internal_class): If we're an enum type,
24029         get the base class from our current corlib.
24031 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
24033         * reflection.h (MonoResolveTokenError): New type.
24035         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
24036         icall.
24038         * icall.c: Add an 'error' argument to the ResolveToken icalls.
24040 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
24042         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
24043         Support also calling constructors, but only for already allocated objects.
24045 2004-09-17  Geoff Norton <gnorton@customerdna.com>
24047         * reflection.c (type_get_qualified_name): If the klass is null
24048         return the typename to avoid a NullRefEx.
24049         (encode_cattr_value): Get the qualified name of the boxed type,
24050         not the underlying enumtype.  Fixes #62984.
24052 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
24054         * marshal.c: Fix problems with previous checkin.
24056 2004-09-21    <vargaz@freemail.hu>
24058         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
24059         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
24061         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
24063 2004-09-21  Geoff Norton <gnorton@customerdna.com>
24065         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
24066         should only return a type for pointers, arrays, and passbyref types.
24067         Fixes bug #63841.
24069 2004-09-21  Martin Baulig  <martin@ximian.com>
24071         * domain.c (mono_debugger_check_runtime_version): New public
24072         function.
24074         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
24076 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
24078         * reflection.c: Added missing sort to the declarative security 
24079         attributes table. MS implementation stops seeing the attributes if the
24080         token number regress in the table (as shown by ildasm and permview).
24082 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
24084         * object-internals.h (MonoReflectionModule): Add 'token' field.
24085         
24086         * reflection.c (mono_reflection_get_token): Add support for Module
24087         and Assembly.
24088         (mono_module_get_object): Set 'token' field.
24089         (mono_module_file_get_object): Set 'token' field.
24091         * icall.c: Add new Assembly and Module icalls.
24093         * appdomain.c: Bump corlib version.
24095 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
24097         * loader.h loader.c class.h class.c: Add helper functions for obtaining
24098         tokens of metadata objects.
24100         * reflection.h reflection.c (mono_reflection_get_token): New function
24101         to obtain the token of a metadata object.
24103         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
24105 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
24107         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
24108         
24109         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
24111 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
24113         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
24114         * object-internals.h: Added 3 MonoArray* members to MonoReflection
24115         AssemblyBuilder to access the permissions set in the class lib.
24116         * reflection.c: Added security attributes encoding step in 
24117         mono_image_build_metadata.
24118         * tabledefs.h: Added new security actions defined in 2.0:
24119         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
24121 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24123         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
24124         macro parameter.
24126 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24128         * locales.c: nullify the ICU_collator member of CompareInfo when it is
24129           finalized. There where random SIGSEVs at program termination, when
24130           an object being finalized was trying to do a string comparison and
24131           the current culture was already finalized.
24133 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24135         * threads.c: call thread_cleanup before finishing the thread if we get
24136         there.
24138 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
24140         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
24141         assemblies from the parent. Fixes #65665.
24143 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
24145         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
24146         modifiers.
24148 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
24150         * reflection.h: add prototype for mono_get_dbnull_object
24151         * reflection.c: add prototypes for get_default_param_value_blobs 
24152         and mono_get_object_from_blob for fussier compilers
24154 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
24156         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
24157         false deadlock checks in class initialization.
24159 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
24161         * image.c (mono_image_addref): Fix comment.
24163         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
24164         possible.
24166 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
24168         * reflection.c (mono_param_get_objects): Modified to return
24169         ParameterInfo.DefaultValue object.
24171         (get_default_param_value_blobs):
24172         (mono_get_object_from_blob):
24173         (mono_get_dbnull_object): New helper routines. 
24175         * object.c (mono_get_constant_value_from_blob): New helper routine
24176         carved out from get_default_field_value ()
24178         * object-internals.h (mono_get_constant_value_from_blob): Added
24179         function declaration.
24181 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
24183         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
24184         referenced assemblies. Fixes #62135.
24186         * exception.h exception.c (mono_get_exception_file_not_found2): New
24187         helper function.
24189 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
24191         * class.h class.c: Add mono_type_get_underlying_type ().
24193 2004-09-09  Geoff Norton <gnorton@customerndna.com>
24195         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
24196         Fix GetTypes() to support dynamically created assemblies.
24198 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
24200         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
24201         
24202         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
24203         previous patch.
24205         * reflection.h reflection.c loader.c: Allow dynamic construction of
24206         pinvoke methods. Fixes #65571.
24207         
24208         * reflection.c (mono_reflection_get_type): Revert previous change since
24209         it causes regressions.
24211 2004-09-08  Martin Baulig  <martin@ximian.com>
24213         * class.c (class_compute_field_layout): Don't call
24214         mono_class_layout_fields() for open generic instances.
24216 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
24217         * threads.c appdomain.c: fix typo in GC macro
24219 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24221         * threads.c: don't call mono_thread_detach() in start_wrapper(),
24222         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
24224 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
24226         * image.c (mono_image_close): Applied patch from 
24227         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
24228         assembly is loaded multiple times from data.
24229         
24230         * image.c (mono_image_open): Fix warning.
24232 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24234         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
24235         once. Fixes #58334.
24236         
24237         * reflection.c (mono_reflection_create_runtime_class): Initialize
24238         klass->nested_classes. Fixes #61224.
24240 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24242         * threads.c: sched_yield() on exit, to allow threads to quit.
24244 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24246         * object.c (mono_unhandled_exception): Remove leftover debug code.
24248 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
24250         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
24252 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24254         * marshal.c (emit_marshal_array): Really null terminate string arrays.
24255         
24256         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
24258 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24260         * marshal.c (emit_marshal_array): Null terminate string arrays.
24261         
24262         * marshal.c (raise_auto_layout_exception): Fix warning.
24264         * reflection.c (mono_param_get_objects): Initialize the default value
24265         with DBNull.Value, not null. Fixes #62123.
24267 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
24269         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
24270         throw an exception with a cute explanation.
24272 2004-09-06  Dick Porter  <dick@ximian.com>
24274         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
24275         Close the new process's thread handle, as we don't use it.  The
24276         handle stays around forever otherwise.
24278 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24280         * object.c (arith_overflow): Fix warning.
24282         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
24283         calling conventions in method refs. Fixes #65352.
24285         * reflection.c: Fix warnings.
24287 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24289         * icall.c: Add a new icall for Array.Clear
24291 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24293         * object.c: When allocating an array, we have to throw
24294         an overflow exception if any of the lengths are < 0.
24296 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24298         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
24299         properly. Also move implementation of string array marshalling to 
24300         managed code. Fixes #42316.
24302 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24304         * assembly.c: provide more information when loading an assembly fails.
24306 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24308         * filewatcher.c: don't expect the development fam package to be
24309         installed.
24311 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
24313         * marshal.c: Make a copy of the signature cookie since it will be
24314         freed by the caller.
24315         
24316         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
24318         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
24320         * metadata.c (mono_metadata_free_marshal_spec): New function to free
24321         marshal specs.
24323         * marshal.c: More refactoring.
24324         
24325         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
24326         smaller functions.
24328 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
24330         * object.c: In mono_message_invoke, fill the output parameter array after
24331           calling the managed method (it was done before the call). This fixes
24332           bug #59299.
24334 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24336         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
24337         as well.
24339 2004-09-02  Martin Baulig  <martin@ximian.com>
24341         * class.c (mono_class_instance_size): Don't allow generic type
24342         definitions or open generic instances.
24343         (mono_class_array_element_size): If we're a value type, call
24344         mono_class_instance_size() on the original class.
24346         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
24347         handle generic instances.
24349         * mono-debug-debugger.c (write_type): Handle generic instances
24350         like classes.
24352 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24354         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
24355         the allocation request fails. Fixes #65089.
24357         * object.c (mono_runtime_free_method): Do not call mono_free_method.
24358         
24359         * object.c (mono_runtime_free_method): New function to free a dynamic
24360         method.
24362         * marshal.c (mono_delegate_free_ftnptr): New function to free the
24363         delegate trampoline.
24365         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
24366         with hasthis as dynamic,
24368         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
24370         * domain.c (mono_jit_info_table_remove): New function to remove an
24371         entry from the jit info table.
24373         * class-internals.h (MonoMethod): Add 'dynamic' field.
24375         * loader.c: Fix warnings.
24377 2004-09-01  Martin Baulig  <martin@ximian.com>
24379         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
24380         instead of mono_debugger_lock() because the latter one is a no-op
24381         unless running in the debugger.
24383 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24385         * class.c (class_compute_field_layout): Classes with auto-layout or
24386         reference fields are not blittable.
24387         
24388 2004-09-01  Dick Porter  <dick@ximian.com>
24390         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
24391         mono_image_get_filename() to get the assembly location.
24393         * icall.c:
24394         * metadata.h: Fix compile warnings
24396 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24398         * class.c (class_compute_field_layout): System.Object is blittable.
24400         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
24401         as in/out. Fixes #59909.
24403 2004-09-01  Martin Baulig  <martin@ximian.com>
24405         * metadata.h (MONO_TYPE_ISREFERENCE): Call
24406         mono_metadata_generic_inst_is_valuetype() if we're a generic
24407         instance to check whether our underlying type is a reference type.
24409 2004-09-01  Martin Baulig  <martin@ximian.com>
24411         * metadata.c (mono_type_size): If we're a generic instance, call
24412         mono_class_value_size() for value types.
24414 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
24416         * marshal.c: Implement more custom marshalling functionality. Fixes
24417         #64915.
24419 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24421         * mono-debug.c, debug-mono-symfile.c: add some locking love.
24423 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
24425         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
24427         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
24429         * icall.c: Fix some warnings.
24431         * threads.c (abort_appdomain_thread): Fix unref errors.
24432         (mono_thread_current): Fix THREAD_DEBUG define.
24434 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
24436         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
24438         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
24440 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
24442         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
24443         string arrays.
24445 2004-08-28  Martin Baulig  <martin@ximian.com>
24447         * metadata.c
24448         (mono_metadata_generic_inst_is_valuetype): New public function.
24450         * metadata.h (MONO_TYPE_ISSTRUCT): Call
24451         mono_metadata_generic_inst_is_valuetype() if we're a generic
24452         instance to check whether our underlying type is a valuetype.
24454 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
24456         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
24457         #63768.
24459 2004-08-25  Martin Baulig  <martin@ximian.com>
24461         * loader.c (mono_get_method_from_token): Abstract methods can also
24462         be generic and thus have type parameters.
24464         * metadata-internals.h
24465         (MonoDynamicImage): Added `GPtrArray *gen_params'.
24467         * reflection.c (mono_image_get_generic_param_info): Don't create a
24468         metadata row, just add an entry to the `gen_params' array.
24469         (build_compressed_metadata): Sort the `gen_params' array and then
24470         actually create the metadata.
24472 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24474         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
24476 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
24478         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
24480 2004-08-24  Martin Baulig  <martin@ximian.com>
24482         * class.cs (mono_class_is_subclass_of): Like an interface, a
24483         generic instance also derives from System.Object.
24485 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
24487         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
24488         custom modifiers to be in any order. Fixes #61990.
24490 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
24492         * object.c: Register mono_object_new_fast icall.
24493         
24494         * object.c (mono_class_get_allocation_ftn): Return to calling
24495         mono_object_new_fast, since it seems faster to compute the object 
24496         size in unmanaged code than passing it as a parameter.
24498         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
24500         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
24501         this function with Boehm as the oom handler, so we don't have to check
24502         the result of GC_malloc.
24504         * object.c: Remove checks for oom.
24506         * object.h object.c (mono_class_get_allocation_ftn): New function to
24507         return the icall which can be used to allocate an instance of a given
24508         class. 
24510         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
24512         * class-internals.h: Add 'enabled' field.
24514 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
24516         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
24518 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
24519         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
24520         value 0x0010.
24522 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
24524         * appdomain.c: use the Tls function for appdomain too,
24525         at Zoltan's request. Actually return in mono_context_get
24527         * appdomain.c, profiler.c, threads.c: use __thread
24529 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
24531         * appdomain.c threads.c: Call GC_CreateThread on windows.
24533         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
24534         multiple libraries since this don't work on windows.
24536 2004-08-18  Martin Baulig  <martin@ximian.com>
24538         * class-internals.h
24539         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
24540         MonoMethodHeader.
24542         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
24543         MonoMethodNormal since we also need it for abstract and interface
24544         methods.
24546         * reflection.c
24547         (build_compressed_metadata): Sort the GenericParam table.
24548         (mono_image_create_token): Added `gboolean create_methodspec'
24549         argument; this is false when generating a MethodImpl token.
24550         (reflection_methodbuilder_to_mono_method): Abstract and interface
24551         methods may also have generic parameters.
24553 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
24555         * appdomain.c: thread local alloc
24557 2004-08-17  Martin Baulig  <martin@ximian.com>
24559         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
24561         * icall.c
24562         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
24563         argument.
24565         * class.c (mono_type_get_full_name): New public function.
24566         (mono_type_get_name): Don't include the type arguments.
24568 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24570         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24571         for inclusion into the mono executable.
24573 2004-08-16  Martin Baulig  <martin@ximian.com>
24575         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24576         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24578 2004-08-14  Martin Baulig  <martin@ximian.com>
24580         * class.c (dup_type): Also copy the `byref' field.
24582 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24584         * reflection.c (create_dynamic_mono_image): Revert the last change 
24585         since it breaks bootstrap.
24587 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24589         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24591         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24592         not free them with g_free.
24594 2004-08-11  Martin Baulig  <martin@ximian.com>
24596         * reflection.c (mono_reflection_setup_internal_class): Also call
24597         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24599 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24601         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24602         called during default (first) AppDomain creation. Keep track of
24603         Evidence when loading assemblies.
24605 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24607         * opcodes.c, opcodes.h: reduce runtime relocations.
24609 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24611         * culture-info.h, locales.c: fixes and chages to sue the new
24612         optimized format of the locale data.
24613         * culture-info-tables.h: regenerated.
24615 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24616         
24617         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24619 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24621         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24622         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24623         * domain-internals.h: icall declaration.
24624         * icall.c: icall registration.
24625         * object-internals.h: New fields in MonoAssembly for CAS.
24627 2004-08-05  Duncan Mak  <duncan@ximian.com>
24629         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24630         CEE_LDELEM_ANY.
24632 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24634         * reflection.c: fix to deal with object[] arrays in custom ctors
24635         (bug #62550).
24637 2004-08-05  Martin Baulig  <martin@ximian.com>
24639         * class.c (mono_class_array_element_size): Added support for
24640         generic instances and correctly handle "recursive" types.
24642 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24644         * assembly.c: Fix warnings.
24646 2004-08-04  Martin Baulig  <martin@ximian.com>
24648         * class.c
24649         (mono_type_get_name_recurse): Added `gboolean include_arity'
24650         argument specifying whether or not we should include the generic
24651         arity in the type name.
24652         (_mono_type_get_name): New static function.
24653         (mono_class_setup_vtable): If we're a generic instance, don't
24654         include the generic arity in the names of explicit method
24655         implementations.        
24657 2004-08-03  Martin Baulig  <martin@ximian.com>
24659         * class.c (mono_type_get_name_recurse): Enclose the generic type
24660         arguments in `<', '>'.
24662 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24664         * gc.c: make GC warning messages use the trace API, they are just
24665         noise to most of the users.
24667 2004-08-03  Martin Baulig  <martin@ximian.com>
24669         * debug-mono-symfile.c (read_string): Correctly read the string.
24671 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24673         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24674         
24675         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24676         icalls.
24677         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24679 2004-07-30  Martin Baulig  <martin@ximian.com>
24681         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24682         Reflect latest symbol writer changes.   
24684 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24686         * object.c: always create an object if null is passed
24687         to Invoke() where a valuetype is expected.
24689 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24691         * marshal.c (mono_marshal_init): make managed
24692         signatures match native ones better for 64bits.
24694 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24696         * appdomain.c: hack to build correctly the private bin path on windows.
24697         Fixes bug #61991.
24699 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24701         * assembly.c: Load mscorlib from the correct framework directory
24702           (mono/<version>/mscorlib.dll).
24703         * appdomain.h: Added prototypes for new functions.
24704         * internals.h: Added some prototypes.
24705         * domain.c: When initializing the runtime, get from the executable and
24706           the configuration files the runtime version that the app supports.
24707           Added support methods for reading app.exe.config. Added list of versions
24708           supported by the JIT. Added two new methods: mono_init_from_assembly,
24709           which initializes the runtime and determines the required version from
24710           the provided exe file, and mono_init_version, which initializes
24711           the runtime using the provided version.
24712         * icall.c: Get machine.config from version-specific directory.
24713         * reflection.c: When generating an image, embed the version number
24714           of the current runtime.
24716 2004-07-28  Dick Porter  <dick@ximian.com>
24718         * socket-io.c
24719         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24720         returned sockaddr size before creating the remote address object.
24721         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24722         61608.
24724 2004-07-28  Dick Porter  <dick@ximian.com>
24726         * locales.c (string_invariant_compare_char): Fix invariant char
24727         compares between upper and lower cases.  Fixes bug 61458.
24729 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24730         
24731         * marshal.c: actually cache stelem.ref wrappers.
24732         
24733 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24735         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24736         sections and remove the mono_cli_rva_map () function.
24738 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24740         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24741         by Geoff Norton (<gnorton@customerdna.com>).
24743 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24745         * class.c: fix class loads for pointer types (typeof(int) !=
24746         typeof(int*)).
24748 2004-07-27  Martin Baulig  <martin@ximian.com>
24750         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24751         reading the debugging information from an external ".mdb" file.
24753 2004-07-24  Martin Baulig  <martin@ximian.com>
24755         * reflection.c (mono_image_get_type_info): Only write a class
24756         layout entry if we actually have a size or a packing size.
24758 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24760         * reflection.c (type_get_fully_qualified_name): 
24761         insert cast to get type checking of ?: with non-gcc compilers
24763 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24765         * rand.c: use g_getenv for both lookups of
24766         MONO_EGD_SOCKET
24768 2004-07-17  Martin Baulig  <martin@ximian.com>
24770         * reflection.c (mono_reflection_bind_generic_method_parameters):
24771         Set `gmethod->reflection_info'.
24773 2004-07-17  Martin Baulig  <martin@ximian.com>
24775         * class.c (mono_class_create_from_typedef): Insert the newly
24776         created class into the hash table before computing the interfaces
24777         since we could be called recursively.
24779 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24781         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24782         function to implement stelem.ref in managed code
24783         * class-internals.h, debug-helpers.c: a new wrapper type
24784         for the above.
24786 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24788         * gc.c: allow GC handles to work even when no GC is compiled in.
24789         Fix part of bug #61134 (GetAddrOfPinnedObject).
24791 2004-07-13  Peter Williams  <peter@newton.cx>
24793         * process.c (complete_path): Make sure we don't attempt to execute
24794         directories.
24796 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24798         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24799           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24800           and will add/subtract the hour if needed
24802 2004-07-12  Martin Baulig  <martin@ximian.com>
24804         * reflection.c (mono_field_get_object): If we have
24805         `field->generic_info', take the attributes from
24806         `field->generic_info->generic_type'.    
24808 2004-07-12  Martin Baulig  <martin@ximian.com>
24810         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24811         This function must be called before initializing the runtime.
24812         (mono_debug_init_1): New function; call this after initializing
24813         the runtime, but before loading the assembly.  It tells the
24814         debugger to load corlib and the builtin types.
24816         * mono-debug-debugger.c: Did some larger changes in the debugging
24817         code; support recursive class declarations, make sure we actually
24818         add all classes.
24820 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24822         * debug-helpers.c: undo my previous patch and fixed the real issue in
24823         ../mini/exceptions-x86.c
24825 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24827         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24828         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24829         called from other .cctors.
24831 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24833         * loader.c: Removed the mono_loader_wine_init hack now that we are
24834         doing a managed version of Windows.Forms.
24836 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24838         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24839         threadpool.c, threads.c: remove static data from rootset.
24841 2004-07-09  Dick Porter  <dick@ximian.com>
24843         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24844         Don't do any more processing if the matched length was 0.  It was
24845         increasing the size of the string before.  Fixes bug 61167.
24847 2004-07-09  Dick Porter  <dick@ximian.com>
24849         * socket-io.h:
24850         * socket-io.c
24851         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24852         Add support for SO_PEERCRED if its available.
24854 2004-07-09  Peter Bartok <pbartok@novell.com>
24855         * loader.c: winelib.exe.so error message is now only displayed if
24856         MONO_DEBUG is set. To help us avoid questions when people are trying
24857         out the new Managed.Windows.Forms.
24859 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24861         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24862         for isinst and castclass wrappers.
24864         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24865         to libmetadata from the JIT, so they could be used by the marshalling
24866         code and the interpreter.
24868         * marshal.c: Register marshalling related JIT icalls here instead of
24869         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24870         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24872         * metadata.h: Remove unneeded marshalling conversions.
24874         * opcodes.c: Update for new opcodes.
24875         
24876 2004-07-08  Martin Baulig  <martin@ximian.com>
24878         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24879         (mono_debug_get_domain_data): Make this function static.
24881 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24883         * gc.c, object.h: add nice GC handle API for embedders.
24885 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24887         * reflection.c: more changes for the new api
24889         * object.c: When we reflect on a field w/ a constant value, it
24890         will not have a memory location, so we must access metadata. Also,
24891         allow easier reading of strings so that we can read them from
24892         the constant data.
24894         * class.c (mono_class_layout_fields): no need for literal fields here.
24896         * class-internals.h: api changes for const fields
24898         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24900 2004-07-06  Martin Baulig  <martin@ximian.com>
24902         * mono-debug.h: Increment version number to 44.
24904         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24905         now a gpointer, rewrote this whole method.
24907         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24908         function.  Add information about the wrapper in a new "misc table".
24910         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24911         for the new misc table.
24913 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24915         * metadata-internals.h image.c: Add a cache for helper signatures.
24917         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24919 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24921         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24922         delegates from a delegate. Fixes #61033.
24923         
24924         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24925         marshalling of stringbuilder arrays. Fixes #59900.
24927 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24929         * icall.c: Add EnumBuilder:setup_enum_type icall.
24931 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24933         * icall.c: Added a new icall for the property version of
24934         OffsetOfStringData.
24936 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24938         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24939         it has a constant size across platforms.
24941         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24942         stack trace.
24944 2004-06-29  Martin Baulig  <martin@ximian.com>
24946         * mono-debug.c (mono_debug_add_method): Protect the whole function
24947         in mono_debugger_lock(), not just parts of it.
24949 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24951         * reflection.c: make sure padding bytes in heaps are zeroed.
24953 2004-06-24  David Waite  <mass@akuma.org>
24955         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24956         image.c, loader.c, locales.c, marshal.c, metadata.c,
24957         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24958         string-icalls.c, threads.c: change to C90-style comments from C99 /
24959         C++ -style
24961 2004-06-24  Dick Porter  <dick@ximian.com>
24963         * threads.c
24964         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24965         return createdNew.  Fixes bug 60412.
24967         * threads-types.h: 
24968         * icall.c: Add createdNew parameter to CreateMutex icall
24970 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24972         * reflection.c, object-internals.h: save default value in params.
24974 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24976         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24977         no need to build a new path combining that with the application base.
24978         Fixes bug #60442.
24980 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24982         * reflection.c: fixed minor standard compliance issues.
24984 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24986         * reflection.c: fixed issue with encoding some custom attributes
24987         (arrays in properties and fields, bug #60411).
24989 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24991         * reflection.c: fix start address when copying the public key token.
24993 2004-06-23  Martin Baulig  <martin@ximian.com>
24995         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24996         the `exc' object in a static object to put it into the GC's root set.
24998 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
25000         * reflection.c: make mono_reflection_setup_internal_class ()
25001         callable a second time to setup a new parent class.
25003 2004-06-23  Dick Porter  <dick@ximian.com>
25005         * threads.c: Check for WAIT_IO_COMPLETION return values.
25007 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
25009         * appdomain.c: Removed the g_free on the public key token. Now copy 
25010         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
25011         * assembly.c: Added public key token string value when loading 
25012         assemblies. Fix bug #60439.
25013         * icall.c: Added missing informations (like public key) in 
25014         GetReferencedAssemblies. Fix #60519.
25015         * image.h: Changed definition for public key token from const char*
25016         public_tok_value to guchar public_key_token [17];
25017         * reflection.c: Updated for changes to public key token.
25019 2004-06-22  Lluis Sanchez Gual
25021         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
25022         for the field in base classes.
25024 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25026         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
25027         mark headers as not supported, they are installed only for use by the
25028         debugger.
25030 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
25032         * *.c, *.h: avoid namespace pollution in public headers.
25034 2004-06-21  Martin Baulig  <martin@ximian.com>
25036         * exception.c (mono_get_exception_security): It's in
25037         "System.Security", not in "System".
25039         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
25040         the exception classes.
25042 2004-06-21  Martin Baulig  <martin@ximian.com>
25044         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
25045         Protect the exception object from being finalized.
25047 2004-06-21  Martin Baulig  <martin@ximian.com>
25049         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
25050         public function.
25052 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
25054         * reflection.c: Load the assembly in mono_reflection_type_from_name,
25055         if it was not loaded before. Fix parts of #60439.
25057 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
25059         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
25060         code that was broken since Ben's change: wrappers are now
25061         dependent on the method signature only again.
25063 2004-06-21  Martin Baulig  <martin@ximian.com>
25065         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
25066         added interface support.
25068 2004-06-21  Martin Baulig  <martin@ximian.com>
25070         * class.c (mono_vtable_get_static_field_data): New public method.
25072 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
25074         * filewatcher.c : Windows build fix to be compliant with API changes.
25076 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25078         * class.h, class.c: more accessors.
25079         * metadata.h, metadata.c: prepare for hiding MonoType and
25080         MonoMethodSignature: people should use the accessors from now on
25081         outside of the tree.
25083 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25085         * *.c, *.h: more API cleanups.
25087 2004-06-18  Jackson Harper  <jackson@ximian.com>
25089         * assembly.c: Trace loading assemblies.
25090         * loader.c: Trace loading native libraries.
25091         * mono-config.c: Trace loading config files.
25092         
25093 2004-06-18  Dick Porter  <dick@ximian.com>
25095         * locales.c: Tell ICU the lengths of strings, it can cope with
25096         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
25098 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
25100         * image.c: swapped name/filename;
25102 2004-06-18  Martin Baulig  <martin@ximian.com>
25104         * mono-debug-debugger.c (write_class): Write the parent class at
25105         the end of the header.
25107 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25109         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
25111 2004-06-17  Raja R Harinath  <rharinath@novell.com>
25113         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
25114         (bundle_obj): New conditional define.
25115         (BUILT_SOURCES): Remove.
25116         ($(bundle_srcs)): Make parallel-make safe.
25117         (libmonoruntime_la_LIBADD): Make unconditional.
25118         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
25119         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
25121 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
25123         * culture-info-tables.h: It was inconsistent with the latest
25124           supp info files.
25126 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
25128         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
25129         be loaded.
25131         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
25132         with gcc 2.95.
25134 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25136         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
25137         cleaned up public header threads.h.
25139 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25141         * Makefile.am, *.c, *.h: more API cleanups.
25143 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
25145         * Makefile.am: removed monosn from compilation.
25146         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
25147         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
25148         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
25149         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
25150         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
25151         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
25153 2004-06-15  Jackson Harper  <jackson@ximian.com>
25155         * assembly.c: Make locales lower case when searching the GAC for
25156         assemblies. gacutil will always make locales lowercase when
25157         installing so this effectively makes them case insensitive.
25158         
25159 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
25161         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
25162         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
25163           parameter which allows to choose whether the wait can be interrupted or 
25164           not. Also added the method mono_monitor_enter(), which locks the monitor
25165           using an infinite wait and without allowing interruption.
25166           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
25167           interrupted.
25168         * object.h: Added new fields in MonoThread. suspend_event holds the event
25169           used to susped/resume the thread. synch_lock is the lock object to use for
25170           modifying the thread state.
25171         * threads.c: Use the new synch_lock object for locking, instead of "this",
25172           which can generate deadlocks.
25173           Moved thread state change in Thread.Sleep and Thread.Join from managed
25174           to unmanaged code. This avoids a deadlock when the thread was suspended
25175           just after acquiring the thread lock.
25176           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
25177           Implemented Thread.Suspend using an event instead of ThreadSuspend,
25178           which is not fully implemented in the io-layer.
25179         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
25181 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
25183         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
25184         threads-types.h: more API cleanups.
25186 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25188         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
25189         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
25190         threadpool.c, threads.c: first pass at the exported API cleanup.
25192 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
25194         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
25196 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25198         * icall.c: added internalGetHome.
25200 2004-06-14  Dick Porter  <dick@ximian.com>
25202         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
25203         possible to return successfully when '.' or '..' were the only
25204         entries in a directory, but were skipped.  The MonoIOStat was not
25205         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
25206         Fixes bug 59574.
25208 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25210         * reflection.c: make binaries run on .Net 1.1 by default.
25212 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25214         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
25216 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
25218         * marshal.c: keep track of struct size with explicit layout
25219         (bug #59979).
25221 2004-06-12  Martin Baulig  <martin@ximian.com>
25223         * mono-debug-debugger.c: Comment out a debugging g_message().
25225 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25227         * reflection.c, reflection.h: do not free custom attrs that are cached.
25228         * icall.c: use braces to make code clearer.
25230 2004-06-11  Martin Baulig  <martin@ximian.com>
25232         * class.h (MonoInflatedField): New type.
25233         (MonoClassField): Replaced `MonoType *generic_type' with
25234         `MonoInflatedField *generic_info'.
25236         * icall.c
25237         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
25239 2004-06-11  Martin Baulig  <martin@ximian.com>
25241         * reflection.c (mono_image_create_method_token): Correctly encode
25242         varargs methods.
25244 2004-06-11  Martin Baulig  <martin@ximian.com>
25246         * metadata.c (mono_metadata_parse_method_signature): When parsing
25247         a MethodDef which has VarArgs, also set sentinelpos if we don't
25248         have any parameters.
25250 2004-06-11  Martin Baulig  <martin@ximian.com>
25252         * verify.c (mono_method_verify): In CEE_CALL, use
25253         mono_method_get_signature() to get the method's signature, unless
25254         we're a PInvoke method.
25256 2004-06-10  Jackson Harper  <jackson@ximian.com>
25258         * assembly.c: Use <path>/lib/mono/gac for the extra paths
25259         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
25260         logical name as the supplied path is just a prefix to the gac not
25261         the direct path to it.
25262         
25263 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
25265         * reflection.c: make the token for a created method match
25266         the token of the MethodBuilder it was created from
25267         (IKVM requires this behaviour now).
25269 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
25271         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
25272         reflection.c, socket-io.c: leak fixes.
25274 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
25276         * icall.c: handle sentinel pos in vararg methods in position different
25277         from 0.
25279 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25281         * culture-info-tables.h: freshly generated.
25283 2004-06-09  Martin Baulig  <martin@ximian.com>
25285         * loader.c (mono_get_method_constrained): Call `mono_class_init
25286         (constrained_class)'.   
25288 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
25290         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
25291         any methods. Fixes #59629.
25293 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25295         * culture-info-tables.h: reflecting locale-builder updates.
25297 2004-06-08  Dick Porter  <dick@ximian.com>
25299         * object.h:
25300         * locales.c: Fixed compile warnings, including a real bug in
25301         CompareInfo_internal_compare.
25302         
25303 2004-06-08  Dick Porter  <dick@ximian.com>
25305         * locales.c
25306         (ves_icall_System_Globalization_CompareInfo_internal_index):
25307         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25308         Double-check the resuls of usearches, because ICU currently
25309         ignores most of the collator settings here.  Fixes bug 59720.
25310         
25311 2004-06-08  Dick Porter  <dick@ximian.com>
25313         * locales.c
25314         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25315         Fix memory leak and segfault-causing typo.  No idea how this one
25316         lasted so long without being noticed.
25318 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
25320         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
25321         any methods. Fixes #59629.
25323 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25325         * assembly.c:
25326         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
25327         own the critical section before). Removed dead code (that's done
25328         in the preload hook).
25330         (mono_assembly_load_with_partial_name): call the preload hook.
25332 2004-06-08  Martin Baulig  <martin@ximian.com>
25334         * metadata.c (mono_metadata_signature_alloc): Default
25335         `sentinelpos' to -1.
25337         * reflection.c (mono_image_get_array_token): Likewise.
25339 2004-06-08  Martin Baulig  <martin@ximian.com>
25341         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
25343         * metadata.c (mono_metadata_parse_method_signature): When parsing
25344         a MethodDef which has VarArgs, set sentinelpos.
25346         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
25347         `gint16' since we're using -1 for non-varargs methods.
25349         * reflection.c
25350         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
25351         (method_encode_signature): Added varargs support.
25352         (method_builder_encode_signature): Likewise.
25353         (mono_image_get_varargs_method_token): New static method.
25354         (mono_image_create_method_token): New public method; this is
25355         called via an icall instead of mono_image_create_token() when
25356         calling a varargs method.       
25358 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
25360         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
25362 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25364         * culture-info-tables.h : Reflecting the latest locale-builder that
25365           fixed empty array representation ({} to {0}).
25367 2004-06-07  Jackson Harper  <jackson@ximian.com>
25369         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
25370         looking up extra gac paths. This allows MONO_GAC_PATH to act
25371         exactly like a prefix.
25372         
25373 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25375         * reflection.c (mono_reflection_type_from_name): Make a copy of the
25376         type name before modifying it. Fixes #59405.
25378 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25380         * culture-info.h: added fields for "all datetime patterns".
25381         * locales.c: (  ves_icall_System_Globalization_CultureInfo
25382           _construct_datetime_format ()): fill xxx_patterns fields.
25383         * object.h: added fields for "all datetime patterns" to
25384           MonoDateTimeFormatInfo.
25385         * culture-info-tables.h: reflecting locale-builder updates.
25387 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25389         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
25390         the event has no add and remove methods. Fixes #59629.
25392 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
25394         * object.c: Fixed possible integer overflow when allocating large
25395         strings.
25397 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25399         * culture-info-tables.h: reflecting locale-builder updates.
25401 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25403         * culture-info-tables.h: reflecting locale-builder updates.
25405 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
25407         * culture-info-tables.h: reflecting locale-builder updates.
25409 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
25411         * threads.c: Made Thread.Sleep abortable.
25413 2004-06-02  Martin Baulig  <martin@ximian.com>
25415         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
25417         * debug-mono-symfile.h: Bumped symbol file version number to 37.
25419 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
25421         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
25423 2004-05-30  Jackson Harper  <jackson@ximian.com>
25425         * reflection.c: Do not hardcode assembly versions or public key
25426         tokens anymore. All of this except the corlib section was dead
25427         code anyways.
25428         
25429 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
25431         * object.c (mono_runtime_invoke_array): Automatically create boxed
25432         objects for byref valuetypes if needed. Fixes #59300.
25433         
25434         * object.c (mono_method_return_message_restore): Handle 
25435         MONO_TYPE_OBJECT as well.
25437 2004-05-28  Jackson Harper  <jackson@ximian.com>
25439         * reflection.c: The modified type encoding was causing build
25440         problems. Reverted for now.
25441         
25442 2004-05-28  Jackson Harper  <jackson@ximian.com>
25444         * reflection.c/h: Take an assembly ref so that we dont create
25445         fully qualified names when encoding types in the same assembly as
25446         the custom attribute being emitted.
25447         * appdomain.c: Increment version number.
25448         
25449 2004-05-26  Duncan Mak  <duncan@ximian.com>
25451         * icall.c
25452         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
25453         Set the full version number (major, minor, build, revision).
25455 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
25457         * marshal.c (emit_struct_conv): increment src/dst after blit
25458         (mono_marshal_get_managed_wrapper,
25459         mono_marshal_get_native_wrapper): make sure we have marshalling
25460         info before marshalling params (info computation affects
25461         blittable)
25463         * class.c (class_compute_field_layout): correctly deal with
25464         blittable
25465         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
25466         value types (as per what windows dows by default)
25467         (mono_class_setup_mono_type): System.ValueType is blittable
25468         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
25469         blittable
25471         * marshal.c (mono_marshal_load_type_info): flag types  as
25472         non-blittable if the native layout doesn't match the managed
25473         layout
25475 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25477         * appdomain.c: don't add stuff in the private search path that is
25478         above the application base. If application base is not set, there's
25479         no private search path.
25481 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
25483         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
25484         byref struct arguments in native->managed marshalling.
25486 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
25488         * marshal.c (mono_marshal_get_runtime_invoke): correctly
25489         cache methods using signature (special case for methods
25490         that are value type or string class)
25491         
25492         * image.c (mono_image_close): clean up allocated GSList's
25493         in runtime_invoke_cache.
25495 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25497         * mono-config.c: set the correct path for mono_cfg_dir on windows when
25498         there's no MONO_CFG_DIR environment variable defined.
25500 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25502         * threads.c: windows version must be >= 0x0500 to include OpenThread.
25504 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
25506         * threadpool.c: Really wait for 500ms after the async call, even if the wait
25507           is interrumped.
25508         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
25509           before waiting for it, and call CloseHandle after the wait to unref it.
25510           This will make sure that handles are not disposed too early.
25512 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25514         * appdomain.c:
25515         * appdomain.h:
25516         * icall.c: removed
25517         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
25518         needed now.
25520         * object.c: se the application_base only for the domain that runs
25521         Main. Fixes bug #59216,
25523 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25525         * appdomain.c:
25526         * object.c: only the domain in which Main is run have
25527         SetupInformation.ConfigurationFile set, so moved a few lines from
25528         appdomain.c to object.c.
25530 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25532         * appdomain.c: we tried to load [name].(dll|exe), but according
25533         to bug #57710, we must also try [culture]/[name].(dll|exe) and
25534         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
25535         There's a test case attached to bug #58922.
25537 2004-05-27  Dick Porter  <dick@ximian.com>
25539         * icall.c:
25540         * file-io.c: Implemented icalls for locking and unlocking regions
25541         in a file.
25542         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
25543         FALSE on error (fixes both compiler warning and real bug.)
25545 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
25547         * culture-info-tables.h: reflecting locale-builder updates.
25549           (Added missing ChangeLog entry for 05/26)
25551 2004-05-27  Jackson Harper  <jackson@ximian.com>
25553         * locales.c: Fix some cut and paste errors.
25554         
25555 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25557         * mono-config.c: set the correct path for config. directory on windows.
25559 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25561         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
25562           on win32.
25564 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25566         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
25567         from pinvoke functions.
25568         
25569         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25571 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25573         * culture-info-tables.h: reflecting locale-builder updates.
25575 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25577         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25578         #59086.
25580 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25582         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25583         * icall.c: Modified icalls for RNG.
25584         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25585         Windows (CryptoAPI).
25587 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25589         * locales.c: Fix build.
25591 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25593         * culture-info-tables.h: reflecting locale-builder updates.
25595 2004-05-25  Jackson Harper  <jackson@ximian.com>
25597         * locales.c: When creating the current culture use the $LANGs
25598         specific culture. So DateTimeFormat and NumberFormat entries are created.
25599         
25600 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25602         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25603         a char array as parameter.
25605 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25607         * image.c: In mono_image_open(), always use an absolute path name to
25608           look for already loaded images.
25610 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25612         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25613         missing in the windows build (like older cygwin include files).
25615 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25617         * icall.c: Fixed check for possible integer overflow in Buffer_
25618         BlockCopy icall. Replaced comments style // by /* */.
25620 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25622         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25623         
25624         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25625         check after MONO_VTADDR. Fixes pinvoke2.exe.
25627         * marshal.h marshal.c metadata.h: Add beginnings of support for
25628         ftnptr -> delegate marshalling.
25630 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25632         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25633         * threads.c: Fix warnings.
25635 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25637         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25638         * icall.c: Registered icalls for Suspend and Resume.
25639         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25640           Thread.Abort.
25641         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25642         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25643         * process.c: Use WaitForSingleObjectEx.
25644         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25645           checkpoints.
25646         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25647           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25648           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25649           background threads. Added basic support for Abort in Windows.
25650           Start new threads using a managed delegate invoke wrapper. This wrapper
25651           has an interruption checkpoint that is needed since an interruption
25652           can be requested before the thread leaves the unmanaged code that starts 
25653           the thread.
25654         * marshal.c: Added interruption checkpoint after every native call, and
25655           also before managed calls for wrappers called from unmanaged code to
25656           go into managed code.
25657         * object.h: Added new field in MonoThread to keep track of interruption
25658           requests.
25660 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25662         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25663         calls.
25665 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25667         * appdomain.c:
25668         * assembly.c:
25669         * gc.c:
25670         * locales.c:
25671         * mono-config.c:
25672         * rand.c: getenv -> g_getenv (windows!)
25674         * process.c: complete_path is also used on non-windows platforms.
25676 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25678         * icall.c: new signature for Process_Start.
25680         * process.[ch]: new signature for Process_Start. If we're on windows
25681         and UseShellExecute is false, we have to search for the program by
25682         ourselves if we don't get a full path.
25684 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25686         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25687         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25689 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25691         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25692         Fixes bug #58373.
25694 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25696         * process.c: use double quotes to quote program name and arguments on
25697         windows. Fixes bug #58575.
25699 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25701         * file-io.c: don't return "." and ".." when using windows Find*File.
25703 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25705         * marshal.c: Don't pass wrappers to message init because method 
25706         addressed used to lookup metadata. part of remoting[2|3] fix.
25708 2004-05-15  Jackson Harper  <jackson@ximian.com>
25710         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25711         path is essentially the same as MONO_PATH except that it points to
25712         GACs instead of lib directories.
25713         * loader.h: The user gac is gone so we dont need function to
25714         enable/disable it.
25715         * mono-config.c: user gac option is now gone.
25716         
25717 2004-05-15  Jackson Harper  <jackson@ximian.com>
25719         * culture-info.h: Make defines more consistent, add calendar data
25720         to the culture info table.
25721         * culture-info-tables.h: Add basic calendar data. Basically
25722         everyone gets default gregorian until all the data is
25723         updated.
25724         * locales.c: Use the new consistent defines. Set calendar data for
25725         culture info objects.
25726         * object.h: add a field for calendar data to CultureInfo
25727         
25728 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25730         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25731         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25732         a signature.
25733         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25734         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25735         an extra param that is the pointer of the method to invoke. The IL for
25736         the invoke method is no longer specific to the method, but to the
25737         signature of the method. Thus, we can share the same code for multiple
25738         methods. This reduces the number of methods that have to be compiled.
25740 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25742         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25744         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25746         * icall.c: Optimize Buffer.BlockCopy.
25748 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25750         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25751         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25752         quote). Changed them to "MMMM yyyy".
25754 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25756         * rand.c
25757         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25759 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25761         * reflection.h: Updated after changes to managed structures.
25763         * appdomain.c: Bump corlib version.
25765 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25767         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25768         windows.
25770 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25772         * Makefile.am: link to ../os/libmonoos.la on windows.
25774         * assembly.c:
25775                 -If MONO_DEBUG, warn about non-existing directories in
25776                 MONO_PATH.
25777                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25778                 compile time variable.
25779                 -Removed init_default_path and call mono_set_rootdir from
25780                 libmonoos.a instead (windows only).
25782         * assembly.h: declare mono_assembly_getrootdir().
25784         * domain.c:
25785         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25787         * loader.c: s/getenv/g_getenv/
25789 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25791         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25793         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25795         * metadata.h: Add new marshalling conversions.
25797         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25798         function.
25800         * reflection.c (mono_reflection_get_type): Lookup the type in all
25801         modules of a multi-module assembly. Fixes #58291.
25803 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25805         * threads.c: Before aborting a background, set the StopRequested
25806         state.  This avoids throwing the Abort exception.
25807         In mono_thread_manage, don't continue with the shutdown until all
25808         aborted threads have actually stopped.
25810 2004-05-10  Jackson Harper  <jackson@ximian.com>
25812         * locales.c: Remove the modifier from culture names.
25813         
25814 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25816         * Makefile.am: monosn is not installed any more. It has been deprecated
25817         in favor of sn.
25819 2004-05-07  Jackson Harper  <jackson@ximian.com>
25821         * locales.c
25822         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25823         Fix array construction, add bailout if the length is 0.
25825 2004-05-07  Dick Porter  <dick@ximian.com>
25827         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25828         machine doesn't have a DNS entry.  Patch by Urs Muff
25829         (umuff@quark.com), fixes bug 57928.
25831 2004-05-06  Jackson Harper  <jackson@ximian.com>
25833         * reflection.c: Handle null PublicTokens properly. alloc mem for
25834         assembly names culture so we dont crash when freeing it.
25835         
25836 2004-05-06  Jackson Harper  <jackson@ximian.com>
25838         * assembly.c: Check the usergac when loading with partial names.
25839         
25840 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25842         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25843         does nothing for now (not required for Linux/Windows) but the class
25844         library can call it (and a newer or modified runtime could need it).
25845         * icall.c: Registred icall.
25847 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25849         * loader.c: prints a message on module loading error we set MONO_DEBUG
25850         environment variable.
25852 2004-05-05  Jackson Harper  <jackson@ximian.com>
25854         * appdomain.c: Handle PublicKeyToken=null properly.
25855         
25856 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25858         * environment.c|h: Added icall ves_icall_System_Environment_
25859         GetOSVersionString to get the current OS version as a string.
25860         * icall.c: Registred icall.
25862 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25864         * object.c: in mono_object_get_virtual_method(), take into account that
25865         non-virtual methods don't have a slot in the vtable. Check needed when
25866         the object is a proxy.
25868 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25870         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25871         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25873         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25875         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25876         passed when a valuetype is expected.
25878         * object.c (mono_unhandled_exception): Only set the exit code if the
25879         exception happens in the main thread. Fixes thread5.exe.
25881         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25882         invalid names. Fixes #58047.
25884 2004-05-03  Jackson Harper  <jackson@ximian.com>
25886         * assembly.c: This line was committed accidently and is unneeded.
25887         
25888 2004-05-03  Jackson Harper  <jackson@ximian.com>
25890         * icall.c: Add new icall for Assembly::LoadWithPartialName
25891         * assembly.c/.h: new function that probes the GAC to load partial
25892         assembly names by Paolo Molaro.
25893         
25894 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25896         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25897         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25898         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25899         full type name.
25901 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25903         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25904         * reflection.c: fix bug when parsing a full type name and Version is not
25905         the last thing in the string.
25907 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25909         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25910         crashes when it is freed.
25912 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25914         * assembly.c: print the compat warning to stderr.
25916 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25918         * assembly.c (mono_assembly_load_references): Add a compatibility
25919         hack to run old applications that might be still referencing the
25920         3300-based assemblies, only do this for System.xxx.
25922 2004-05-01  Jackson Harper  <jackson@ximian.com>
25924         * appdomain.c: If the culture is neutral we set it to "".
25925         
25926 2004-04-29  Jackson Harper  <jackson@ximian.com>
25928         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25930 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25932         * string-icalls.c: added low overhead function for copying chars
25933         * icall.c: added needed icall for the above function
25935 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25937         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25938         Environment.GetLogicalDrives.
25940 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25942         * rand.c: try and talk to egd or prngd
25943         for random bytes if opening devices fail.
25945 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25947         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25948         alignment for the type using the native alignment of its members 
25949         instead of using klass->min_align.
25951         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25953 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25955         * file-io.c:
25956         * socket-io.c: added check for sys/aio.h.
25958 2004-04-28  Dick Porter  <dick@ximian.com>
25960         * threads.c: Don't abort a thread thats already aborting, when
25961         terminating everything.
25963 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25965         * icall.c: added 2 new async calls for Socket.
25967         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25968         IO on *nix systems.
25970         * threadpool.c: removed unused variable.
25972 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25974         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25976 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25978         * locales.c: put back string_invariant_tolower () and
25979         string_invariant_toupper ().
25981 2004-04-26 David Waite <mass@akuma.org>
25983         * file-io.h:
25984         * socket-io.h:
25985         * threads.h:
25986         * unicode.h: remove comma from end of enumeration declarations
25988 2004-04-26 David Waite <mass@akuma.org>
25990         * debug-mono-symfile.h:
25991         * decimal.c:
25992         * mono_debug.h:
25993         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25996 2004-04-26  Jackson Harper  <jackson@ximian.com>
25998         * appdomain.c: Increment version number.
25999         
26000 2004-04-26  Jackson Harper  <jackson@ximian.com>
26002         * appdomain.c: Set assembly references public token value when
26003         PublicKeyToken is specified, not the hash_value. Free public token
26004         values when free assembly name data. Previously the public key
26005         token was hex decoded, however we are using hex encoded public key
26006         tokens, so this is not neccasary.
26007         * assembly.c: Lookup assemblies in the gac if their public token
26008         value is set. Add function to allow enabling user gac
26009         lookups. Specify whether or not the assembly was loaded from the
26010         GAC. Compare full assembly names when checking the cache for
26011         assemblies (Temporarily disabled see comment in code). Remove
26012         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
26013         specifies trace-loader they get extra info to stdout on the
26014         loading of assemblies.
26015         * image.h: Add a field for an assembly references public token
26016         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
26017         whether an assembly has been loaded from the GAC.
26018         * image.c: Remove a corlib -> mscorlib name mapping.
26019         * loader.h: Add function to enable/disable the user gac.
26020         * mono-config.c: Check if the usergac is enabled in the config
26021         file.
26022         * icall.c: New icall to determine whether or not an assembly has
26023         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
26024         * tabldefs.h: Add constant for assemblyref flag that specifies a
26025         full public key is used instead of a public token.
26026         * reflection.c: Remove mscorlib -> corlib mappings. Set
26027         PublicTokenValue instead of hash value. This value is a hex
26028         string so it does not need to be expanded.
26030 2004-04-26  Martin Baulig  <martin@ximian.com>
26032         * mono-debug-debugger.c (mono_debugger_initialize): Set
26033         `mono_debugger_initialized' before calling mono_debug_lock().
26035 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
26037         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
26038           InternalToUpper/InternalToLower.
26039         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
26040           removed invariant culture shortcut.  This is now done in managed code.
26041         * locales.c: (string_invariant_toupper/tolower) removed.
26043 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26045         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
26046         Added Poll internal call.
26048         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
26049         call for Poll. Select was too heavy for polling a single socket.
26051         * threadpool.[ch]: added mono_threadpool_cleanup.
26052         * threads.c: use it. Don't use Thread_Abort on windows.
26054 2004-04-23  Martin Baulig  <martin@ximian.com>
26056         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
26058 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
26060         * icall.c: Registred new icalls for key pair protection and added an
26061         icall for Environment.GetFolderPath on Windows.
26062         * security.c|h: Added new icalls for key pair protection.
26064 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26066         * socket-io.c: don't display the non-supported family warning for known
26067         families. Now this is not displayed on windows when checking support
26068         for IPv4/IPv6.
26070 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26072         * class.c: don't display the layout warning for static fields.
26074 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
26076         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
26077         * locales.c, locales.h: Added new icalls for culture-specific
26078         Char.ToLower and Char.ToUpper.
26080 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26082         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
26083         by David Waite.
26085 2004-04-20  Martin Baulig  <martin@ximian.com>
26087         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
26088         of the type name before passing it to mono_reflection_type_from_name().
26090 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
26092         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
26093         encodings here. Fixes #56965.
26095 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
26097         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26098         fix test on strstr result not that I can see anything that
26099         relies on the result.
26101 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
26103         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
26104         Fixes #57081.
26106         * marshal.c (mono_marshal_get_string_encoding): New helper function.
26108         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
26109         function to determine which marshalling to use for strings. Fixes
26110         #56965.
26112         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
26114         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
26116 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
26118         * icall.c: #include mono-config.h
26120 2004-04-15  Jackson Harper  <jackson@ximian.com>
26122         * culture-info-tables.h: Fix date formats for en-US culture.
26123         
26124 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
26126         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
26127         ThreadPool.SetMinThreads.
26128         * threadpool.c: Implemented ThreadPool.GetMinThreads and
26129         ThreadPool.SetMinThreads.
26131 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26133         * mono-config.c: also load the .config file in the directory
26134         where the assembly was found.
26136 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
26138         * assembly.c: load per-assembly config files.
26139         * icall.c: decrapified code to get the config dir and moved to
26140         mono-config.c.
26141         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
26142         per-assembly config files. When doing a dll map lookup give precedence
26143         to the per-assembly data.
26145 2004-04-14  Martin Baulig  <martin@ximian.com>
26147         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
26148         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
26149         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
26151         * mono-debugger-debugger.c: While the debugger is locked, remember
26152         whether the symbol tables have changes and send one single
26153         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
26155 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
26157         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
26159         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
26160         function.
26162         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
26163         account when marshalling string arrays. Fixes #56965.
26165 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
26167         * icall.c: Add new icalls mapping for security.
26168         * security.c|h: Add internal calls for WindowsIdentity,
26169         WindowsImpersonationContext and WindowsPrincipal.
26171 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
26173         * class.c: Added comment to ensure the System.MonoDummy class
26174         is removed when no longer necessary
26176 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
26178         * appdomain.c: Pass arguments to the bootstraping exceptions to
26179         minimize JITed methods at boot
26181         * metadata.c (mono_exception_from_name_two_strings): Allow for the
26182         second string to be null.
26184         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26185         Change the protocol to minimize the JIT methods at startup.  Now
26186         it Returns the internal codepage, if the value of "int_code_page"
26187         is 1 at entry, and we can not compute a suitable code page
26188         number, returns the code page as a string.
26190 2004-04-13  Jackson Harper  <jackson@ximian.com>
26192         * culture-info-tables.h: Fix number of decimal digits for all
26193         english locales.
26195 2004-04-13  Jackson Harper  <jackson@ximian.com>
26197         * icall.c: Clairfy out of sync error message. It is not always
26198         your corlib that is out of sync.
26200 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
26202         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
26203         properties when only the set accessor is overriden. Fixes #55874.
26205 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
26207         * assembly.c (mono_assembly_load_references): Make this thread safe.
26208         Fixes #56327.
26210 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
26212         * monosn.c: Add missing initialization calls.
26214 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
26216         * locales.c:
26217         ves_icall_System_Globalization_CultureInfo_construct_number_format
26218         Fix g_assert so it compiles on fussier compilers re int/ptr
26219         mismatch
26221 2004-04-08  Dick Porter  <dick@ximian.com>
26223         * socket-io.h:
26224         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
26225         53992.  Also rearrange the code so that the internal calls return
26226         an error value and exceptions are thrown from managed code.
26228         * icall.c: Add type info to the socket icalls.
26230 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26232         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
26233         owes me a beer.
26235 2004-04-07  Martin Baulig  <martin@ximian.com>
26237         * class.c (mono_class_from_generic_parameter): Don't default
26238         `klass->parent' to `mono_defaults.object_type'.
26240 2004-04-07  Martin Baulig  <martin@ximian.com>
26242         * reflection.c (mono_reflection_initialize_generic_parameter): Set
26243         `param->pklass->reflection_info'.       
26245 2004-04-07  Jackson Harper  <jackson@ximian.com>
26247         * culture-info-tables.h: Fix date separator symbol.
26248         
26249 2004-04-07  Martin Baulig  <martin@ximian.com>
26251         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
26252         from System.Type to System.MonoType.
26254 2004-04-07  Martin Baulig  <martin@ximian.com>
26256         * reflection.h
26257         (MonoReflectionGenericParam): Added `has_reference_type' and
26258         `has_value_type' fields.
26260         * reflection.c (mono_image_get_generic_param_info): Encode the
26261         correct flags if we have the `class' or `struct' constraint.
26263 2004-04-07  Martin Baulig  <martin@ximian.com>
26265         * reflection.h
26266         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
26268 2004-04-07  Jackson Harper  <jackson@ximian.com>
26270         * appdomain.c: Revert extra patches, just wanted to bump the
26271         version number.
26272         
26273 2004-04-07  Jackson Harper  <jackson@ximian.com>
26275         * Makefile.am: Add culture-info private headers.
26276         * icall.c: Add new icalls for contructing locales.
26277         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
26278         * locales.h: Declare new culture info construction methods.
26279         * object.h: Add new fields used to avoid the CultureMap to
26280         MonoCultureInfo.
26281         * culture-info.h: Definition of structs used in the culture info
26282         tables.
26283         * culture-info-tables.h: Autogenerated tables that contain culture
26284         info data. This file was generated with the locale-builder tool.
26285         * appdomain.c: Incement corlib version number.
26286         
26287 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
26289         * appdomain.c: (mono_runtime_init) move mono_thread_init
26290         to before mono_object_new calls so critical sections
26291         are initialized before use.
26293 2004-04-07  Martin Baulig  <martin@ximian.com>
26295         * icall.c
26296         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
26297         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
26298         (ves_icall_MonoGenericParam_initialize): Removed.
26299         (monogenericparam_icalls): Removed.
26300         (generictypeparambuilder_icalls): Added new table for
26301         System.Reflection.Emit.GenericTypeParameterBuilder.
26303         * reflection.c
26304         (mono_reflection_define_generic_parameter): Removed.
26305         (mono_reflection_initialize_generic_parameter): This is now called
26306         from GenericTypeParameterBuilder's .ctor.
26308 2004-04-06  Martin Baulig  <martin@ximian.com>
26310         * class.c (mono_class_init): Don't inflate nested classes in a
26311         generic instance.
26312         (mono_type_get_name_recurse): Include the generic arguments for
26313         generic instances and generic type declarations.
26314         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
26315         (_mono_class_get_instantiation_name): Removed.
26316         (mono_class_create_generic): Always use `gklass->name' as our name.
26318         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
26320         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
26321         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
26322         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
26323         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
26324         closed generic methods here.
26326         * reflection.c
26327         (mono_reflection_generic_inst_get_nested_types): Removed.
26328         (inflate_mono_method): Copy the generic parameters from the
26329         MonoMethodHeader into out MonoGenericMethod.
26331 2004-04-06  Martin Baulig  <martin@ximian.com>
26333         * row-indexes.h
26334         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
26336         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
26338         * reflection.c (build_compressed_metadata): If we have any entries
26339         in the GenericParam, MethodSpec or GenericParamConstraint tables,
26340         set the header version to 1.1.
26342 2004-04-06  Martin Baulig  <martin@ximian.com>
26344         * class.c (mono_class_init): If we're a generic instance,
26345         initialize our nested classes, too.
26346         (_mono_class_get_instantiation_name): Deal with the new `!%d'
26347         suffix. 
26349 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26351         * process.c: quote the argument passed to the shell on windows.
26353 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
26355         * threads.c (mono_alloc_special_static_data): Allow this to be
26356         called during startup.
26358 2004-04-02  Martin Baulig  <martin@ximian.com>
26360         * icall.c
26361         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
26363 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
26365         * icall.c: Fix build.
26367 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
26369         * Makefile.am: Added security.c|h.
26370         * icall.c: Added icall for get_UserName;
26371         * security.c: New file for security related icalls. Added function
26372         get_UserName for System.Environment (fix #56144).
26373         * security.h: New. Header file for security.c
26375 2004-04-02  Dick Porter  <dick@ximian.com>
26377         * icall.c: Deleted the icalls that were obsoleted some time ago
26378         by the ICU string code, and which were mixed into the icall
26379         rearranging.  Fixes bug 55969.
26381         * string-icalls.h: 
26382         * string-icalls.c: Deleted the code that those icalls reference.
26384 2004-04-01  Martin Baulig  <martin@ximian.com>
26386         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
26388         * class.c (mono_class_from_generic_parameter): Don't set 
26389         TYPE_ATTRIBUTE_INTERFACE.
26390         (my_mono_class_from_generic_parameter): Likewise.
26392 2004-04-01  Martin Baulig  <martin@ximian.com>
26394         * loader.c (find_method): Added an optional `MonoClass *ic'
26395         argument to search in a specific interface.
26396         (mono_get_method_constrained): New public function.
26398 2004-04-01  Martin Baulig  <martin@ximian.com>
26400         * reflection.c (mono_image_get_generic_field_token): Use the
26401         `handleref' cache here.
26403 2004-04-01  Martin Baulig  <martin@ximian.com>
26405         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
26407         * reflection.c (create_generic_typespec): Use the `typespec' hash
26408         here, not the `typeref' one.    
26410 2004-04-01  Martin Baulig  <martin@ximian.com>
26412         * class.c (mono_class_inflate_generic_type): Moved the
26413         functionality into a new static inflate_generic_type() which
26414         returns NULL if it didn't do anything.  Only increment the
26415         `mono_stats.inflated_type_count' if we actually inflated
26416         something.
26417         (mono_class_get_full): Check the classes type to see whether we
26418         need to inflate it; also inflate MONO_TYPE_(M)VAR.
26420 2004-04-01  Jackson Harper  <jackson@ximian.com>
26422         * reflection.c: Set culture for assembly references.
26423         
26424 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
26426         * reflection.[ch], icall.[ch], Fix support for pinning variables.
26428 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26430         * assembly.c:
26431         (do_mono_assembly_open): the critical section also covers
26432         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
26434 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26436         * threads.c:
26437         (mono_manage_threads): abort the background threads when finishing.
26438         Fixes bug #47232.
26440 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26442         * gc.c: only close the done_event handle if there was no timeout.
26443         C-ified comments.
26445 2004-03-30  Martin Baulig  <martin@ximian.com>
26447         * icall.c (icall_entries): It's called "System.Activator", not
26448         "System.Activation".    
26450 2004-03-30  Martin Baulig  <martin@ximian.com>
26452         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
26453         (mono_class_create_from_typespec): Likewise.
26455 2004-03-30  Martin Baulig  <martin@ximian.com>
26457         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
26458         `has_ctor_constraint' and `initialized'.
26460 2004-03-30  Martin Baulig  <martin@ximian.com>
26462         * reflection.c (encode_new_constraint): New static function to add
26463         the constructor constraint attribute to a type parameter.
26464         (encode_constraints): Call encode_new_constraint() if necessary.
26466         * reflection.h
26467         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
26469         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
26470         
26471 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
26473         * reflection.c, icall.c: add support for pinning variables. 
26475 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
26477         * marshal.c (mono_marshal_get_managed_wrapper):
26478         init bool local with zero rather than null.
26480 2004-03-29  Martin Baulig  <martin@ximian.com>
26482         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
26483         the "official" behavior here.
26484         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
26486 2004-03-29  Martin Baulig  <martin@ximian.com>
26488         * icall.c: Reflect latest API changes.
26490 2004-03-29  Martin Baulig  <martin@ximian.com>
26492         * loader.c (mono_get_method_from_token): Also call
26493         mono_metadata_load_generic_params () for abstract and interface
26494         methods; replace the type arguments in the method signature with
26495         the ones which are loaded from the metadata.
26497 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
26499         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
26500         of the lock is not the current thread. MS.NET don't do it, in spite of
26501         what the documentation says. See bug #56157.
26503 2004-03-28  Martin Baulig  <martin@ximian.com>
26505         * class.c (mono_class_init): Don't call init_properties() and
26506         init_events() for generic instances; set `prop->parent' when
26507         inflating properties.
26509         * reflection.c (mono_generic_inst_get_object): Call
26510         `mono_class_init (ginst->klass)'.
26511         (mono_type_get_object): Only create a MonoGenericInst if your
26512         generic type is a TypeBuilder.
26513         (do_mono_reflection_bind_generic_parameters): Only set
26514         `ginst->is_dynamic' if our generic type is a TypeBuilder.
26516 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
26518         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
26519         Fixes #56091.
26521 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26523         * icall.c: added Kill_internal icall.
26524         * process.[ch]: added Kill_internal icall.
26526 2004-03-25  Martin Baulig  <martin@ximian.com>
26528         * class.h (MonoStats): Added `generic_instance_count',
26529         `inflated_method_count', `inflated_type_count' and
26530         `generics_metadata_size'.       
26532 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26534         * reflection.c: no warnings now.
26536 2004-03-25  Martin Baulig  <martin@ximian.com>
26538         * class.c (mono_class_get_full): New public function; does a
26539         mono_class_get(), but also takes a `MonoGenericContext *'.
26541         * loader.c (mono_field_from_memberref): Renamed to
26542         `field_from_memberref', made static and added `MonoGenericContext *'
26543         argument.
26544         (mono_field_from_token): Added `MonoGenericInst *' argument.
26545         (method_from_memberef): Likewise.
26546         (mono_get_method_from_token): Likewise.
26547         (mono_get_method_full): New public function; does a
26548         mono_get_method(), but also takes a `MonoGenericContext *'.
26550         * verify.c (mono_method_verify): Get the method's generic context
26551         and pass it to mono_field_from_token(), mono_get_method_full() and
26552         mono_class_get_full().
26554 2004-03-25  Martin Baulig  <martin@ximian.com>
26556         * class.c (mono_class_inflate_generic_type): Take a
26557         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
26558         `MonoGenericMethod *'.
26560 2004-03-25  Martin Baulig  <martin@ximian.com>
26562         * loader.h (MonoMethodInflated): Store the MonoGenericContext
26563         instead of the MonoGenericMethod here.
26565 2004-03-25  Martin Baulig  <martin@ximian.com>
26567         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
26568         each time we create a new MonoGenericInst, we also create a new
26569         context which points back to us.
26571         * class.c (inflate_method): Use `ginst->context' instead of
26572         creating a new context.
26574         * loader.c (method_from_memberref): Use
26575         `klass->generic_inst->context' instead of creating a new context.
26577 2004-03-25  Martin Baulig  <martin@ximian.com>
26579         * class.h (MonoGenericContext): New struct.
26580         (MonoGenericMethod): Removed `generic_inst'.
26582         * class.c (mono_class_inflate_generic_method): Take a
26583         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26585 2004-03-25  Martin Baulig  <martin@ximian.com>
26587         * loader.h (MonoMethodInflated): New typedef.
26589         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26590         `generic_param_count' consume just 30 bits, added `is_inflated'
26591         and `has_type_parameters' flags (one bit each).
26593         * class.c (mono_class_inflate_generic_method): Create a
26594         MonoMethodInflated instead of a MonoMethodNormal and set
26595         `is_inflated' in the method signature.
26597         * class.h (MonoGenericMethod): Removed `generic_method'.
26599 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26601         * image.c: Make sure the name of a MonoImage is always an absolute path.
26602           This fixes bug #54415.
26604 2004-03-24  Martin Baulig  <martin@ximian.com>
26606         * class.c (mono_class_setup_vtable): If we're a generic instance,
26607         use our generic type's vtable size.
26609 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26611         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26612         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26613         problems.
26615 2004-03-23  Martin Baulig  <martin@ximian.com>
26617         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26618         `MonoEvent *events'.
26620         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26621         (typebuilder_icalls): Added "get_event_info"; calls
26622         mono_reflection_event_builder_get_event_info(). 
26624         * reflection.c (mono_reflection_generic_inst_initialize): Added
26625         `MonoArray *events'.
26626         (mono_reflection_event_builder_get_event_info): New function.
26628 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26630         * object.h: add mono_type_initialization_init
26632         * object.c (mono_runtime_class_init): 
26633         implement class constructor synchronization rules
26634         to cope with threading issues.  
26635         add mono_type_initialization_init
26637         * appdomain.c (mono_runtime_init): call 
26638         mono_type_initialization_init
26640         * class.h: removing initializing field from MonoVTable
26642 2004-03-23  Martin Baulig  <martin@ximian.com>
26644         * class.c (my_mono_class_from_generic_parameter): Use
26645         `param->name' if it's not NULL. 
26647 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26649         * class.c: do not insert non-virtual methods in the vtable.
26650         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26651         that means the method is non-virtual. This never would have
26652         happened before.
26654 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26656         * profiler.c: Added lock for accessing coverage_hash.
26658 2004-03-22  Martin Baulig  <martin@ximian.com>
26660         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26661         `method->method->signature->generic_param_count != 0' to make it
26662         work for interface methods.
26664 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26666         * process.c: quote the string passed to the shell using g_shell_quote.
26668 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26670         * threads.c:
26671         (mono_threads_manage): don't remove the finalizer thread and self
26672         from the threads hash table so that mono_thread_manage can be called
26673         more than once.
26675 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26677         * process.c: quote the arguments when UseShellExecute is true. Fixes
26678         bug #55790.
26680 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26682         * threads.c: set mono_thread_detach as a cleanup routine for every
26683         thread. This way it's always executed upon thread termination, either
26684         aborted or finished normally. No more xsp hangs!
26686 2004-03-17  Martin Baulig  <martin@ximian.com>
26688         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26689         `int count_nested' and a `MonoType **nested'.
26691         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26692         most of the functionality into a new static
26693         do_mono_reflection_bind_generic_parameters() and don't take a
26694         `MonoType *nested_in' argument any more.  Don't compute nested
26695         types here.
26696         (mono_reflection_generic_inst_get_nested_types): New public method
26697         to get nested types.
26699         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26700         we're a nested class.
26702         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26703         mono_reflection_generic_inst_get_nested_types() to compute the
26704         nested types.
26706 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26708         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26709         descriptive error message under windows.
26710         
26711 2004-03-17  Martin Baulig  <martin@ximian.com>
26713         * class.c (dup_type): Added `const MonoType *original' argument;
26714         copy the attrs from the original type.
26716 2004-03-17  Martin Baulig  <martin@ximian.com>
26718         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26719         `m->generic_inst_cache' here.
26721 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26723         * exception.h exception.c: Add stack_overflow_exception.
26725 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26727         * threadpool.c:
26728         (overlapped_callback): call SetEvent *after* invoking the callback.
26729         No need to call CloseHandle.
26731 2004-03-16  Martin Baulig  <martin@ximian.com>
26733         * reflection.c (mono_image_get_fieldref_token): Take a
26734         `MonoReflectionField *' instead of a `MonoClassField *' and a
26735         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26737 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26739         * appdomain.c: don't add the culture to the filename we're looking for
26740         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26742 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26744         * locales.c: don't ignore symbols when doing case insensitive compares.
26745         Thanks Dick! Fixes bug #54046.
26747         * threads.c: surround 'threads' usage with enter/leave in
26748         mono_thread_manage.
26750 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26752         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26753         implicitly marshalled as [Out]. Fixes #55450.
26755         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26756         an exception.
26758 2004-03-16  Martin Baulig  <martin@ximian.com>
26760         * class.c (mono_class_from_generic_parameter): Use the actual
26761         parameter name. 
26763 2004-03-16  Martin Baulig  <martin@ximian.com>
26765         * reflection.c (type_get_signature_size): New static function.
26766         Compues the size of the type in a method signature.
26767         (method_get_signature_size): New static function; calls
26768         type_get_signature_size() to compute the actual size of the
26769         method's signature.
26770         (method_encode_signature): Use method_get_signature_size() to get
26771         the signature's size rather than using `nparams * 10'.
26773 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26775         * file-io.h: define here WapiOverlapped on windows. I don't want the
26776         regular OVERLAPPED one.
26778         * file-io.c:
26779         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26780         Disabling AIO on windows.
26782 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26784         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26785         bug #55385.
26787 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26789         * appdomain.c: upgraded corlib version.
26791         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26792         and BeginWrite. Allow opening files for asynchrnous operations.
26794         * file-io.h: new struct that maps FileStreamAsyncResult.
26795         * icall.c: added new icalls.
26796         * process.[ch]: support setting child process environment variables
26797         and use the SHELL or COMSPEC when UseShellExecute is true.
26799         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26800         callback for async. IO is here and also BindHandle.
26802         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26803         from here.
26805 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26807         * reflection.c (create_custom_attr): Allow len == 0.
26809         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26810         computation on big-endian machines.
26812 2004-03-13  Martin Baulig  <martin@ximian.com>
26814         * class.h (MonoGenericInst): Added `int count_ifaces'.
26816         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26817         `ginst->count_ifaces' instead `klass->interface_count' since we
26818         may get called before the vtable is created.
26820         * loader.c (mono_method_get_param_names): If we're a generic
26821         instance, return and don't initialize the class.
26823         * reflection.c (mono_reflection_setup_generic_class): Don't call
26824         ensure_runtime_vtable().
26825         (mono_reflection_bind_generic_parameters): Set
26826         `ginst->count_ifaces'.
26828 2004-03-11  Jackson Harper <jackson@ximian.com>
26830         * icall.c:
26831         * unicode.c:
26832         * unicode.h: Remove unused System.Char icalls.
26833         
26834 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26836         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26837         code when we P/Invoke the first library in Windows.Forms, instead
26838         of when we first open the assembly.
26840         * assembly.c: Drop the lookup from here.
26842 2004-03-10  Martin Baulig  <martin@ximian.com>
26844         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26845         class for properties, fields and events.  Finally fixes #54945.
26847 2004-03-10  Martin Baulig  <martin@ximian.com>
26849         * metadata.c (mono_metadata_class_equal): New static function;
26850         checks whether two generic instances or two generic parameters are
26851         equal.
26852         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26853         compare classes.        
26855 2004-03-10  Martin Baulig  <martin@ximian.com>
26857         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26859         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26860         argument and write it into the `reflection_info' field.
26862         * icall.c
26863         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26864         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26866 2004-03-09  Jackson Harper  <jackson@ximian.com>
26868         * char-conversions.h: use 8 bits for numeric data its all we need
26869         * icall.c: numeric data is only 8 bits now.
26871 2004-03-09  Martin Baulig  <martin@ximian.com>
26873         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26875         * class.c (init_properties, init_events): Initialize the new
26876         `parent' field.
26878         * reflection.c (typebuilder_setup_properties): Likewise.
26879         (typebuilder_setup_events): Likewise.
26881         * reflection.h (MonoEventInfo): Replaced `parent with
26882         `declaring_type' and `reflected_type'.
26884         * icall.c (ves_icall_get_property_info): Distinguish between
26885         declaring and reflected type.
26886         (ves_icall_get_event_info): Likewise.
26888 2004-03-09  Martin Baulig  <martin@ximian.com>
26890         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26891         (ves_icall_Type_GetField): Correctly set field->klass.
26893 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26895         * loader.h: Fix warning.
26897 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26899         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26900         library routine if present.  Notice that it will still continue
26901         executing even if its missing, for those working on the Gtk#
26902         edition of Windows.Forms.
26904         * assembly.c (do_mono_assembly_open): If loading the
26905         System.Windows.Forms call mono_loader_wini_init.
26907 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26909         * class.h: Added MonoRemoteClass struct.
26910         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26911         function for MonoStrings.
26912         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26913         Added internal call for getting the proxy type.
26914         * marshal.c: Get the type of transparent proxies from its remote_class.
26915         Added methods that generate the IL for type checks and casts:
26916         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26917         mono_marshal_get_proxy_cancast.
26918         * marshal.h: Declaration of the previous new methods.
26919         * object.c: Added new moethods for creating and updating MonoRemoteClass
26920         instances: mono_remote_class, mono_upgrade_remote_class, 
26921         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26922         * verify.c: FIx transparent_proxy_fields layout.
26923         * appdomain.c: Bump corlib version.
26925 2004-03-04  Jackson Harper  <jackson@ximian.com>
26927         * icall.c: Add icall to access char conversion tables.
26928         * char-conversions.h: Character conversion tables.
26929         * Makefile.am: Add char-conversions.h private header file.
26930         
26931 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26933         * appdomain.c (unload_thread_main): Increase unloading timeout to
26934         10 sec as a temporary workaround for Nant problems.
26936 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26938         * gc.c: Add checks for GC_enable and GC_disable.
26940         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26941         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26942         (bug #54988).
26943         
26944 2004-02-27  Martin Baulig  <martin@ximian.com>
26946         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26947         `MonoReflectionType *' instead of a `MonoType *'.
26949 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26951         * gc.c (run_finalize): Avoid finalizing the object representing the
26952         finalizer thread.
26953         (finalizer_thread): Fix warning.
26955 2004-02-25  Martin Baulig  <martin@ximian.com>
26957         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26958         argument for nested types.
26959         (mono_class_create_generic): Added support for nested generictypes.
26961         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26962         `GList *nested'.
26964         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26966         * reflection.c (method_encode_signature): Increase the minimum
26967         value of `size' from 10 to 11.
26968         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26969         and `MonoType **types' arguments instead of the `MonoArray
26970         *types'; added `MonoType *nested_in'.  Recursively instantiate
26971         nested classes. 
26973 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26975         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26976         stack_overflow_ex members which are used by exception handling.
26978         * appdomain.c (mono_runtime_init): Initialize the new members.
26980         * gc.c (mono_gc_enable): New helper function.
26981         * gc.c (mono_gc_disable): New helper function.
26983 2004-02-23  Martin Baulig  <martin@ximian.com>
26985         * icall.c: I must have been really stupid - make it actually work
26986         this time ;-)
26988 2004-02-23  Martin Baulig  <martin@ximian.com>
26990         * loader.c (method_from_memberref): Only inflate the method if
26991         it's in another klass.
26993 2004-02-23  Martin Baulig  <martin@ximian.com>
26995         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26996         (mono_class_init): If we're a generic instance and an interface,
26997         compute `class->interface_id'; also create `class->interfaces'
26998         here and inflate them.
27000         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
27001         `ginst->is_open'.
27002         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
27004         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
27006 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
27008         * reflection.c (method_encode_code): Improved the error message
27009         generated by the exception.
27011 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27013         * icall.c: Martin did not do what he said in the ChangeLog for
27014         2004-02-18, but put back the changes for properties and events.
27015         Commenting those changes out again and adding comment to bug #54518.
27016         
27017         * process.c: removed warning.
27019 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
27021         * marshal.c (emit_struct_conv): Print an error message instead of
27022         asserting when a type does not have the StructLayout attribute.
27024 2004-02-20  Martin Baulig  <martin@ximian.com>
27026         * reflection.c (mono_type_get_object): Also use the cache for
27027         generic instances.
27028         (mono_reflection_bind_generic_parameters): Always compute
27029         `ginst->ifaces'.        
27031 2004-02-20  Martin Baulig  <martin@ximian.com>
27033         * class.h (MonoGenericMethod): Removed `klass'.
27035         * class.c (mono_class_inflate_generic_method): Added `MonoClass
27036         *klass' argument.
27038 2004-02-20  Martin Baulig  <martin@ximian.com>
27040         * reflection.c (method_encode_methodspec): Actually use the
27041         uninflated signature for the memberref.
27043 2004-02-20  Martin Baulig  <martin@ximian.com>
27045         * class.h (MonoGenericMethod): Removed `declaring'.
27047         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
27048         is NULL, compute it here.
27050 2004-02-20  Martin Baulig  <martin@ximian.com>
27052         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
27054         * metadata.c (mono_metadata_generic_inst_hash): New method.
27055         (mono_metadata_generic_inst_equal): New method.
27057         * reflection.c (mono_reflection_bind_generic_parameters): Use the
27058         `klass->image->generic_inst_cache' cache to avoid creating
27059         duplicate MonoGenericInst's.
27061         * class.c (mono_class_inflate_generic_type): Use the cache.
27063 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
27065         * object.c: fixed gc descriptor calculation for embedded valuetypes.
27067 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27069         * icall.c: added Socket.WSAIoctl icall.
27071         * socket-io.[ch]: implemented
27072         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
27074 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
27076         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
27078 2004-02-18  Urs C Muff  <umuff@quark.com>
27080         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
27081         this work on PPC and other big-endian architectures.
27083         * debug-mono-symfile.h: Prepended the names of all the `guint32'
27084         fields with an underscore to make sure they're only accessed by
27085         the read32() macro.
27087 2004-02-18  Martin Baulig  <martin@ximian.com>
27089         * icall.c: Put the klass->refclass changes back for methods and
27090         fields, but not for properties and events.  We're currently not
27091         distinguishing between DeclaringType and ReflectedType for
27092         properties and events, that's what caused the regressions.
27094 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27096         * object.c:
27097         (mono_async_result_new): the handle can be NULL.
27099         * threadpool.c: Use an event instead of a semaphore, don't initialize
27100         it until needed. This saves quite a few semaphores from being created
27101         when using the threadpool.
27103 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
27105         * object.c (mono_string_is_interned_lookup): Fix interning of long
27106         strings. Fixes #54473.
27108         * domain.c (ldstr_equal): Optimize if the two strings are equal.
27110         * icall.c: Revert the klass->refclass changes since they introduce
27111         regressions (bug #54518).
27113 2004-02-18  Martin Baulig  <martin@ximian.com>
27115         * class.c (mono_class_init): If we're a generic instance and don't
27116         come from a TypeBuilder, inflate our members here.
27117         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
27118         (mono_class_create_generic): New public method.
27119         (mono_class_initialize_generic): Removed.
27120         (get_instantiation_name): Renamed to
27121         _mono_class_get_instantiation_name() and made it public.
27123 2004-02-18  Martin Baulig  <martin@ximian.com>
27125         * class.c (mono_class_inflate_generic_type): Clear the new
27126         instance's `nginst->klass' when inflating a generic instance.
27127         (mono_class_is_subclass_of): Added (basic) support for generic
27128         instances.
27130 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
27132         * appdomain.h, domain.c: use a MonoCodeManager instead of a
27133         MonoMempool to hold compiled native code.
27135 2004-02-17  Martin Baulig  <martin@ximian.com>
27137         * class.h (MonoDynamicGenericInst): Added `count_properties' and
27138         `properties'.
27140         * reflection.c (mono_reflection_generic_inst_initialize): Added
27141         `MonoArray *properties' argument.
27143         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
27145 2004-02-17  Martin Baulig  <martin@ximian.com>
27147         * icall.c (ves_icall_Type_GetFields): Renamed to
27148         ves_icall_Type_GetFields_internal() and added a
27149         `MonoReflectionType *rtype' argument; pass it to
27150         mono_field_get_object() to set the field's "reflected" type.
27151         (ves_icall_Type_GetConstructors): Likewise.
27152         (ves_icall_Type_GetEvents): Likewise.
27153         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
27154         argument; pass it to mono_method_get_object() to set the method's
27155         "reflected" type.       
27157 2004-02-17  Martin Baulig  <martin@ximian.com>
27159         * class.h (MonoDynamicGenericInst): New type.
27160         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
27162         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
27163         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
27164         (ves_icall_MonoGenericInst_GetFields): New interncall.
27166         * class.c (mono_class_from_generic): Don't call
27167         mono_class_initialize_generic() if this is a dynamic instance;
27168         ie. it's being created from a TypeBuilder.
27169         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
27170         `class->byval_arg.type'.
27172         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
27173         to `inflate_method' and made static.
27174         (mono_reflection_inflate_field): Removed.
27175         (mono_reflection_generic_inst_initialize): New public method.
27177         * reflection.h (MonoReflectionGenericInst): Removed `methods',
27178         `ctors' and `fields'; added `initialized'.
27180 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
27182         * debug-helpers.c (mono_method_full_name): Fix output for empty
27183         namespaces.
27185 2004-02-12  Martin Baulig  <martin@ximian.com>
27187         * class.h (MonoClassField): Added `MonoType *generic_type'.
27189         * reflection.c (mono_image_get_fieldref_token): Added support for
27190         instantiated generic types.
27191         (field_encode_inflated_field): Removed.
27192         (mono_image_get_inflated_field_token): Removed.
27193         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
27195         * reflection.h (MonoReflectionInflatedField): Removed.
27197 2004-02-12  Martin Baulig  <martin@ximian.com>
27199         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
27200         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
27202         * reflection.c (mono_image_get_methodspec_token): Take a
27203         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
27204         (mono_image_create_token): Check whether we have a
27205         `method->signature->gen_method' and call
27206         mono_image_get_methodspec_token() if appropriate.
27207         (inflated_method_get_object): Removed.
27208         (mono_reflection_bind_generic_method_parameters): Return a
27209         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
27210         (mono_reflection_inflate_method_or_ctor): Likewise.
27212         * reflection.h (MonoReflectionInflatedMethod): Removed.
27214 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
27216         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
27217         for custom valuetype marshalling.
27219         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
27221 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27223         * icall.c: fixed WSAGetLastError_internal name.
27225 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
27227         * threads.c (mono_thread_attach): Allow this to be called multiple
27228         times for a thread.
27229         
27230         * threads.c (build_wait_tids): Do not wait for ourselves.
27232         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
27233         appdomain list is empty.
27235         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
27236         memory returned by mono_string_builder_to_utf16, since it points into
27237         managed memory. Thanks to Bernie Solomon for noticing this.
27239         * icall.c: Add AppDomainSetup icalls.
27241         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
27243         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
27244         types.
27246         * reflection.c (reflection_methodbuilder_to_mono_method): Save
27247         custom attributes to the method_aux struct. Also fix array indexes etc.
27249         * loader.c (mono_method_get_param_names): Make dynamic case work again.
27250         
27251 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
27253         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
27254         (both static and runtime) and reduce startup time.
27256 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
27258         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
27259         AsAny marshalling conversion instead of crashing.
27261         * marshal.c: Fix warnings.
27263 2004-02-09  Martin Baulig  <martin@ximian.com>
27265         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
27267         * reflection.h (MonoReflectionInflatedMethod): Removed the
27268         `declaring' field, it's now in the unmanaged MonoGenericMethod.
27270         * reflection.c (method_encode_methodspec): Removed the `method'
27271         argument; we get it from `gmethod->declaring'.
27272         (inflated_method_get_object): Removed the `declaring' argument.
27274 2004-02-09  Martin Baulig  <martin@ximian.com>
27276         * class.h (MonoGenericMethod): New type.
27277         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
27278         `generic_method'.
27280         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
27281         a `MonoGenericMethod *gen_method' one.
27283         * class.c (mono_class_inflate_generic_type): Take an additional
27284         `MonoGenericMethod * argument.  This is only non-NULL if we're
27285         inflating types for a generic method.   
27286         (mono_class_inflate_generic_signature): Renamed to
27287         inflate_generic_signature() and made static; take a
27288         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27289         (inflate_generic_header): Take a `MonoGenericMethod *' argument
27290         instead of a `MonoGenericInst *' one.
27291         (mono_class_inflate_generic_method): Likewise.
27293         * reflection.c (encode_generic_method_sig): Take a
27294         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27295         (method_encode_methodspec): Likewise.
27296         (inflated_method_get_object): Likewise. 
27298         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
27299         field with a `MonoGenericMethod *gmethod' one.  
27301 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
27303         * class.h (mono_class_has_parent): add parens to expansion
27304         so you can ! this.
27306 2004-02-08  Martin Baulig  <martin@ximian.com>
27308         * image.h (MonoImage): Removed `generics_cache'.
27310         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
27311         instead of a `MonoType *' argument; removed the `inflate_methods'
27312         argument.  Don't inflate methods here.
27314         * loader.c (find_method): If it's a generic instance, call
27315         mono_class_init() on the `sclass->generic_inst->generic_type'.
27317         * metadata.c (mono_type_size): Make this work on uninitialized
27318         generic instances; call it on the `ginst->generic_type's class.
27320         * reflection.c (mono_reflection_bind_generic_parameters): Call
27321         mono_class_from_generic() to create the `ginst->klass'.
27323 2004-02-08  Martin Baulig  <martin@ximian.com>
27325         * class.h (MonoClass): Changed type of `generic_inst' from
27326         `MonoType *' to `MonoGenericInst *'.
27328 2004-02-08  Martin Baulig  <martin@ximian.com>
27330         * icall.c (ves_icall_Type_BindGenericParameters): Just call
27331         mono_type_get_object(), this is now creating a `MonoGenericInst'
27332         for MONO_TYPE_GENERICINST.
27333         (ves_icall_MonoGenericInst_GetParentType): Likewise.
27334         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
27336         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
27337         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
27338         (inflated_method_get_object): Added `MonoClass *refclass' argument.
27339         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
27340         and reflected type.
27342         * reflection.h (MonoReflectionInflatedMethod): Removed
27343         `declaring_type' and `reflected_type'.
27345 2004-02-08  Martin Baulig  <martin@ximian.com>
27347         * class.h (MonoGenericInst): Added `MonoType *parent' and
27348         `MonoType **ifaces'.
27350         * reflection.h (MonoReflectionGenericInst): Removed `klass',
27351         `parent' and `interfaces'.
27353         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27354         `MonoType *' argument and return a `MonoType *'.
27356         * icall.c
27357         (ves_icall_MonoGenericInst_GetParentType): New interncall.
27358         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
27360 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27362         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
27363         valuetype marshalling.
27365 2004-02-06  Martin Baulig  <martin@ximian.com>
27367         * class.c
27368         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
27369         (my_mono_class_from_generic_parameter): Likewise.
27371 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27373         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
27374         contents of the symbol files lazily.
27376         * object.h (MonoThread): Add 'name' and 'name_len' fields.
27378         * threads.h threads.c icall.c: New icalls for getting and setting the
27379         threads name.
27381 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
27383         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
27384         Raise an exception when the domain is not found.
27386 2004-02-03  Martin Baulig  <martin@ximian.com>
27388         * reflection.c (mono_image_get_methodspec_token): Use the
27389         uninflated signature; fixes gen-33.
27391 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
27393         * gc.c threads.c: Make the finalizer thread a normal managed thread so
27394         the finalizer code can use thread functionality.
27396         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
27397         the finalizer thread.
27399         * threads.c: Make some functions more robust.
27401         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
27403         * metadata.h: Add new marshalling conventions.
27405         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
27406         stringbuilder marshalling. Fixes #53700.
27408         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
27410         * reflection.c (mono_image_get_type_info): Save declarative security
27411         info.
27413         * reflection.c (mono_image_get_field_info): Handle uninitialized 
27414         unmanaged fields as well.
27416         * appdomain.c: Bump corlib version.
27418 2004-02-01  Martin Baulig  <martin@ximian.com>
27420         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
27421         method type arguments.  
27423 2004-01-30  Duncan Mak  <duncan@ximian.com>
27425         * marshal.h: Add prototype for
27426         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
27427         and
27428         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
27429         fix the build.
27431 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
27433         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
27434         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
27436 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27438         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27439         custom marshalling of valuetypes.
27441         * marshal.c: Fix some warnings.
27443 2004-01-29  Martin Baulig  <martin@ximian.com>
27445         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
27446         for generic method parameters.
27448         * reflection.c (method_encode_methodspec): Write the uninflated
27449         signature into the methodspec table.
27450         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
27451         is always the uninflated method.
27452         (reflection_methodbuilder_to_mono_method): Copy the generic
27453         parameters from the MethodBuilder into `header->gen_params'.
27455 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27457         * class.c (mono_class_from_generic_parameter): Fix warning.
27459 2004-01-27  Martin Baulig  <martin@ximian.com>
27461         * class.c (mono_class_from_generic_parameter): Don't create
27462         `klass->methods' here.  
27464 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
27466         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
27467         extension since it does not work with libraries named lib<FOO>.dll.so.
27469 2004-01-25  Martin Baulig  <martin@ximian.com>
27471         * class.c (mono_class_inflate_generic_type): Added support for
27472         MONO_TYPE_GENERICINST.
27474         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
27475         inflate methods on open constructed types.      
27477 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27479         * object.c: fire ProcessExit event in the root AppDomain after running
27480         Main. Fixes bug #53299.
27482 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
27484         * socket-io.c: include the new socket-wrappers.h header.
27485         Use the wrappers instead of the unix socket functions to make the code
27486         more clear.
27488 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
27490         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
27492         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27493         Fixes #22532.
27495 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
27497         * reflection.c (mono_image_create_pefile): Handle the case when the
27498         entry point is not a MethodBuilder.
27500         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27501         field to ReflectionMethod since it is not allways a builder.
27503         * reflection.c (type_get_fully_qualified_name): New helper function to
27504         return the fully qualified name of a type.
27506         * reflection.c (encode_marshal_blob): Always emit the fully qualified
27507         type name for custom marshallers.
27509         * reflection.c (mono_marshal_spec_from_builder): Ditto.
27511         * class.c (mono_class_setup_vtable): If a parent class already 
27512         implements an interface, use the implementing methods from that class.
27513         Fixes #53148.
27515 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27517         * threadpool.c: just return instead of ExitThread to allow for thread
27518         clean up earlier.
27520 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
27522         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
27523         when closing resource modules.
27525         * reflection.c (mono_image_create_pefile): Handle the case when the
27526         entry point is not a MethodBuilder.
27528         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27529         field to ReflectionMethod since it is not allways a builder.
27531 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
27533         * marshal.c (mono_marshal_get_managed_wrapper): 
27534         mono_marshal_alloc takes native int so CONV_I
27535         the arg for 64bits.
27537 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
27539         * reflection.c (fixup_cattrs): New function to fixup the methoddef
27540         tokens in the cattr table. Fixes #53108.
27542 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27544         * loader.c: don't trim ".dll" before looking up in the config file.
27545         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
27547 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
27549         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
27550         Return the module which contains the resource as well.
27551         (ves_icall_System_Reflection_Module_Close): New icall.
27553         * appdomain.c: Bump corlib version number.
27555         * image.c (mono_image_addref): New public function.
27557         * assembly.c: Call mono_image_addref.
27559         * reflection.c (mono_module_get_object): Increase reference count of 
27560         the image.
27562         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27563         Fixes #22532.
27565         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
27566         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
27567         proper exceptions on DllImport problems.
27569 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27571         * class.c, metadata.c: eliminate CSIZE macro.
27573 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27575         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27576         * object.h: Added async_callback field in MonoAsyncResult.
27577         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27578         * verify.c: Added async_callback in MonoAsyncResult layout.
27580 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27582         * reflection.c (mono_reflection_get_custom_attrs): Add support
27583         for Modules.
27585 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27587         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27588         marshalling.
27589         (mono_marshal_method_from_wrapper): Add null pointer check.
27591 2004-01-16  Martin Baulig  <martin@ximian.com>
27593         * debug-mono-symfile.h: Set version number to 36 and reflect
27594         latest symbol writer changes.
27596 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27598         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27599         multi-dimensional arrays.
27600         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27601         (mono_class_from_mono_type): Use bounded_array_class_get.
27602         
27603         * class.c (mono_bounded_array_class_get): New function which takes
27604         a 'bounded' bool argument to distinguish vectors from one dimensional
27605         arrays.
27607         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27608         bounded_array_class_get if the array has bounds.
27610         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27611         Search modules loaded using AssemblyBuilder:AddModule as well.
27613 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27615         * appdomain.c: increased corlib version.
27616         * filewatcher.c: removed g_print.
27617         * icall.c:
27618         (get_property_info): only allocate what is actually requested.
27619         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27621 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27623         * Makefile.am: added filewatcher.[ch]
27624         * filewatcher.[ch]: FileSystemWatcher runtime support.
27625         * icall.c: added new FSW icalls.
27627 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27629         * string-icalls.c: fix stringbuilder regression as suggested by
27630         Iain McCoy <iain@mccoy.id.au>.
27632 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27634         * process.c (process_read_stringtable_block): Recognize '007f' as
27635         a language neutral stringtable block.
27637 2004-01-12  Patrik Torstensson
27639         * object.h (MonoStringBuilder) : Changed layout to support our
27640         new stringbuilder class.
27641         * marshal.c: Change marshalling to support the new layout of 
27642         string builder.
27643         * appdomain.c: increased version number because new layout of
27644         string builder.
27646 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27648         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27649         assembly name as an string instead of an AssemblyName, since it is
27650         easier to extract info from it.
27652         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27653         the culture subdirectories too. Fixes #52231.
27655 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27657         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27658         It takes 2 new parameters with an optional name for the method to look
27659         for and case ignoring info.
27661         * threadpool.c: removed unused variable.
27663 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27665         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27666         It takes 2 new parameters with an optional name for the property to look
27667         for and case ignoring info.
27668         Fixes bug #52753.
27670 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27672         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27673         Fix #52451.
27675 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27677         * appdomain.c:
27678         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27679         Fixes bug #52630.
27681 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27683         * reflection.c: Add support for more than one unmanaged resource.
27685         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27686         in field->def_value, as done in all other cases.
27688         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27689         TypeBuilders.
27691         * reflection.c (mono_reflection_create_runtime_class): Remove 
27692         errorneous assignment to klass->element_class, since it is already
27693         done in mono_reflection_setup_internal_class.
27695 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27697         * gc.c: added missing LeaveCriticalSection.
27698         * icall.c: indented a couple of lines.
27699         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27700         if we call EndInvoke inside a callback. Fixes bug #52601.
27702 2004-01-07  Martin Baulig  <martin@ximian.com>
27704         * mono-debug-debugger.h
27705         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27707 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27709         * appdomain.c: Use messages in NotImplementedException.
27711         * exception.c (mono_get_exception_not_implemented): Now this takes
27712         a message argument.
27714         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27715         exception instead of g_asserting an aborting when something is not
27716         implemented.
27718         Add some inline docs.
27720 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27722         * reflection.h: Update after changes to object layout.
27724         * reflection.c: Implement saving of unmanaged aka win32 resources.
27726         * appdomain.c: Bump version number.
27728         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27729         Handle missing domains gracefully.
27731 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27733         * file-io.c : On Windows, there are much more invalid_path_chars.
27735 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27737         * class.h, object.c: prepare for GetType () speedup.
27739 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27741         * profiler.c: workaround for --profile null reference exception on
27742           cygwin. Patch by Patrik Torstensson.
27744 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27746         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27747         make work for unaligned access.
27749 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27751         * class.c: small cleanup (class->fields [i] -> field).
27752         * image.c: check address of metadata is valid.
27754 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27756         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27757         search the list of loaded assemblies.
27759         * reflection.c (mono_reflection_type_from_name): Use 
27760         mono_assembly_loaded instead of mono_image_loaded.
27762         * reflection.c: Fix warnings.
27764 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27766         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27767         is dynamic. This is needed since an assembly can contain both dynamic and
27768         non-dynamic images.
27770         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27771         assembly->dynamic.
27773         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27775         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27776         to store modules loaded using AddModule.
27778         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27779         on Modules.
27781         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27783         * reflection.c (mono_image_fill_export_table_from_module): New function to
27784         fill out the EXPORTEDTYPES table from a module.
27786         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27787         into a separate function. Also handle loaded non-dynamic modules.
27789         * reflection.c (mono_image_basic_init): Fix memory allocation.
27791         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27793         * assembly.c (mono_assembly_load_references): Make this public.
27795 2003-12-19  Martin Baulig  <martin@ximian.com>
27797         * class.c (mono_class_initialize_generic): Made this static, take
27798         a `MonoGenericInst *' instead of a `MonoClass *'.
27799         (mono_class_from_generic): Call mono_class_initialize_generic()
27800         unless we're already initialized or being called from
27801         do_mono_metadata_parse_generic_inst().
27803         * class.h (MonoGenericInst): Added `initialized' and
27804         `init_pending' flags.
27806         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27807         `mono_class_init (gklass)' or mono_class_initialize_generic()
27808         here; set `generic_inst->init_pending' while parsing the
27809         `type_argv'.
27811 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27813         * locales.c: include string.h for memxxx prototypes
27815 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27817         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27818         constructor when accessing literal fields.
27820 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27822         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27824         * reflection.c (assembly_add_resource_manifest): New function to fill
27825         the MANIFESTRESOURCE table.
27827         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27829         * reflection.h: Update to changes in class layout.
27831         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27832         Reenable call to mono_runtime_is_shutting_down ().
27834         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27835         determine if the runtime is shutting down.
27837 2003-12-16  Jackson Harper <jackson@ximian.com>
27839         * icall.c: comment out call to mono_runtime_is_shutting_down to
27840         fix build.
27841         
27842 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27844         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27845         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27847 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27849         * reflection.c: move definition of swap_with_size
27850         to before its first call
27852 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27854         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27856         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27857         icall.
27859         * object.c: Fix warnings.
27861         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27862         members if FlattenHierarchy is set.
27864         * reflection.c (mono_image_add_decl_security): New function to emit
27865         declarative security.
27867         * reflection.h reflection.c: Add support for declarative security.
27869         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27870         
27871 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27873         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27874         
27875         * appdomain.c verify.c: Moved corlib version checking into its own
27876         function in appdomain.c since it needs to create vtables etc.
27878 2003-12-13  Patrik Torstensson <p@rxc.se>
27880         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27881         instead of unwrapped server.
27883 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27885         * verify.c (check_corlib): Fix field index.
27887 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27889         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27890         GetGacPath icall.
27892 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27894         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27895         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27896         cope with sizeof(size_t) != sizeof(guint32).
27898 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27900         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27901         in case of failure.
27903 2003-12-10  Mark Crichton <crichton@gimp.org>
27905         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27906         in managed code.
27908         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27910 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27912         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27913         marked as deleted.
27915 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27917         * verify.c (check_corlib): Handle the case when the version field is 
27918         initialized by a static constructor.
27920 2003-12-08  Patrik Torstensson  <p@rxc.se>
27922     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27924 2003-12-08  Martin Baulig  <martin@ximian.com>
27926         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27927         a MonoReflectionGenericParameter, also take the parameter index
27928         and name as arguments.
27929         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27930         (ves_icall_MonoGenericParam_initialize): New interncall.
27931         (ves_icall_Type_make_byref_type): New interncall.
27933         * reflection.h (MonoReflectionGenericParam): Derive from
27934         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27935         `index' fields.
27937         * reflection.c (mono_reflection_define_generic_parameter): Create
27938         and return a new MonoReflectionGenericParam; don't initialize the
27939         constraints here.
27940         (mono_reflection_initialize_generic_parameter): New public method;
27941         initializes the constraints and creates the `param->pklass'.
27943 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27945         * reflection.h reflection.c: Use the new fields 'num_types', 
27946         'num_fields' and 'num_methods' to track the number of types etc.
27948         * verify.c (check_corlib): Check corlib version number.
27950 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27952         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27953         function works on all methods.
27955 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27957         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27958         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27959         the custom_type_info flag of the transparent proxy.
27960         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27961         objects that supports IRemotingTypeInfo.
27962         * object.h: Added custom_type_info field in transparent proxy.
27964 2003-12-06  Martin Baulig  <martin@ximian.com>
27966         * class.c (mono_class_create_from_generic): Removed.
27967         (mono_class_from_generic): Check `ginst->klass' before doing
27968         anything else.  This is important to fully support "recursive"
27969         generic types.
27971         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27972         empty `generic_inst->klass' before doing anything else.
27974 2003-12-06  Dick Porter  <dick@ximian.com>
27976         * verify.c: 
27977         * object.h:
27978         * icall.c:
27979         * locales.c: Use C structs to access class fields.  Don't do a
27980         conversion between MonoString and UChar because both are
27981         platform-endian UTF-16.  Compare now takes startindex and count
27982         parameters.  Add a char overload for IndexOf.  Speed up the
27983         invariant string IndexOf.
27985 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27987         * Makefile.am (monosn_LDADD): Fix parallel build.
27989 2003-12-04  Martin Baulig  <martin@ximian.com>
27991         * icall.c
27992         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27993         (ves_icall_Type_make_array_type): New interncall.       
27995 2003-12-04  Martin Baulig  <martin@ximian.com>
27997         * locales.c: also change it in the !HAVE_ICU case.
27999 2003-12-04  Dick Porter  <dick@ximian.com>
28001         * icall.c:
28002         * locales.c: construct_compareinfo is now in CompareInfo, not
28003         CultureInfo.
28005 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
28007         * image.c (mono_image_load_file_for_image): Cache loaded images in the
28008         image->files array.
28010         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
28011         table as well.
28013         * assembly.c (mono_assembly_load_references): Only load references
28014         once.
28016         * class.c (mono_class_from_name): Avoid linear search of the 
28017         EXPORTEDTYPE table.
28019         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
28021 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
28023         * image.h (MonoImage): Add 'field_cache' field.
28025         * loader.c (mono_field_from_token): Cache field lookups.
28026         
28027         * reflection.c (mono_module_get_object): Fix name property.
28029         * icall.c (ves_icall_get_enum_info): Update after changes to 
28030         mono_metadata_get_constant_index ().
28032         * icall.c: Get rid of get_type_info icall, use a separate icall for
28033         each type property to avoid needless memory allocations. Fixes #51514.
28035         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
28036         to avoid needless binary searches.
28038         * class.c (class_compute_field_layout): Move the initialization of
28039         field->def_value to mono_class_vtable ().
28041         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
28042         non-corlib types.
28044         * object.c (mono_object_allocate): Make it inline.
28046         * object.c (mono_object_allocate_spec): Make it inline.
28047         
28048 2003-12-02  Dick Porter  <dick@ximian.com>
28050         * locales.c (create_NumberFormat): NumberFormatInfo construction.
28051         Patch by Mohammad DAMT (mdamt@cdl2000.com).
28053 2003-12-01  Dick Porter  <dick@ximian.com>
28055         * threads.c: Fix signature and call in CreateMutex and
28056         CreateEvent.
28058 2003-12-01  Dick Porter  <dick@ximian.com>
28060         * icall.c: 
28061         * locales.c: Implement string compares and searching
28063         * object.h: Add extra Thread field
28065 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
28067         * reflection.c (fixup_method): Add support for MonoCMethod.
28069 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
28071         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
28073         * reflection.c (assembly_name_to_aname): Allow extra characters in
28074         assembly names. Fixes #51468.
28076 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
28078         * exception.c (mono_exception_from_name_domain): New helper function.
28080         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
28081         exception object in the correct domain.
28083         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
28084         formatting + make a copy a the input data.
28086         * loader.c (mono_get_method_from_token): Methods which contain
28087         native code do not have entries in the ImplMap.
28089         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
28090         Thanks to Gonzalo for spotting this.
28091         
28092         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
28093         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
28095         * assembly.h (mono_assembly_load_from): Split the second part of 
28096         assembly loading into a new public function.
28098         * exception.h (mono_get_exception_bad_image_format): New function.
28100 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
28102         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28103         Enumerate all modules inside a dynamic assembly. Fixes #51293.
28104         
28105         * icall.c: Add new icall for creating dynamic methods.
28107         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
28109         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
28111         * reflection.c (mono_reflection_create_dynamic_method): New icall to
28112         create a dynamic method.
28114         * reflection.c (resolve_object): New helper function.
28116         * reflection.c: Generalize ReflectionMethodBuilder and the functions
28117         which manipulate it so they can also work on dynamic methods.
28119         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
28120         creating the MonoReflectionMethodAux structure if it is not needed.
28121         
28122         * reflection.h verify.c: Update after changes to object layout.
28124         * reflection.c (method_builder_encode_signature): Fix compilation on
28125         gcc 2.95.x.
28127 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
28129         * appdomain.h: Added support for context static fields. Added static_data
28130           field to MonoAppContext and renamed thread_static_fields to a more
28131           generic special_static_fields in MonoAppDomain, since it can now contain
28132           context static fields.
28133         * domain.c: Updated hashtable name.
28134         * object.c: Replaced field_is_thread_static() for a more generic
28135           field_is_special_static() which also checks for context static attribute.
28136           In mono_class_vtable(), added support for static context fields.
28137         * threads.c: Changed methods that manage thread static fields to more
28138           generic methods so they can be reused both for thread and context static
28139           data.
28140         * threads.h: Declared some new methods.
28142 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
28144         * reflection.h: Update after changes to the managed types.
28146         * reflection.c (encode_custom_modifiers): New helper function.
28148         * reflection.c (method_encode_signature): Emit custom modifiers.
28150         * reflection.c (field_encode_signature): Emit custom modifiers.
28152 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
28154         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
28156         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
28157         implementation.
28159         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
28160         icall.
28162         * object.c (mono_field_get_value_object): New function.
28164         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
28165         specific.
28167 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
28169         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
28170         return a preallocated out-of-memory exception instance.
28172         * object.c (out_of_memory): Use the new function.
28174         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
28175         flag is before the custom modifiers. Fixes #49802.
28177 2003-11-16  Martin Baulig  <martin@ximian.com>
28179         * class.c (mono_class_is_open_constructed_type): Implemented the
28180         MONO_TYPE_GENERICINST case.
28182 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
28184         * assembly.c (mono_assembly_fill_assembly_name): New function to
28185         fill out the MonoAssemblyName structure.
28186         (mono_assembly_open): Use the new function.
28188         * icall.c (fill_reflection_assembly_name): New helper function.
28190         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
28191         new function.
28193         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
28195 2003-11-15  Martin Baulig  <martin@ximian.com>
28197         * class.c (mono_class_is_open_constructed_type): New public
28198         function; checks whether a type is an open constructed type,
28199         ie. whether it still contains type parameters.
28200         (mono_class_inflate_generic_type): If we're a type parameter and
28201         the inflated type is also a MONO_TYPE_(M)VAR, return the original
28202         type.
28204         * class.h (MonoGenericInst): Added `guint32 is_open'.
28206         * loader.c (method_from_methodspec): Check whether we're an open
28207         or closed constructed type and set `ginst->is_open'.
28209         * reflection.c (mono_reflection_bind_generic_parameters): Check
28210         whether we're an open or closed constructed type and set
28211         `ginst->is_open'.
28212         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
28213         from open constructed types.
28215 2003-11-15  Martin Baulig  <martin@ximian.com>
28217         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28218         a generic instance (instead of a generic type declaration) with
28219         unbound generic parameters, bind them to our actual types.
28221 2003-11-14  Martin Baulig  <martin@ximian.com>
28223         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
28225         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28226         an interface type, populate `res->interfaces' with instantiated
28227         versions of all the interfaces we inherit.
28229 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
28231         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
28232         when MONO_PATH is set but doesn't contain the install dir.
28234 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28236         * icall.c:
28237         (ves_icall_Type_GetInterfaces): don't return an interface twice when
28238         it's also implemented in base classes. Fixes bug #50927.
28240 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
28242         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
28243         if this method is called from a finalizer. Fixes #50913.
28245 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
28247         * threads.c: Implement VolatileRead/VolatileWrite
28249         * icall.c: Add new icalls for VolatileRead/VolatileWrite
28251 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28253         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
28254         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
28255         2.95.3.
28257         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
28258         from Peter Ross (pro@missioncriticalit.com).
28259         
28260 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
28262         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
28264 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28266         * assembly.c (mono_assembly_load_references): Disable check because it
28267         triggers on older corlibs which lots of people have.
28269 2003-11-12  Jackson Harper  <jackson@ximian.com>
28271         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
28272         load corlib.dll if mscorlib.dll is not found.
28273         * assembly.h: Remove corlib name define.
28274         * class.c:
28275         * domain.c:
28276         * image.c: Change corlib name to mscorlib.
28277         
28278 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28280         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
28282 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
28284         * appdomain.h: Added loader_optimization here to sync with the C#
28285         code, and add disallow_binding_redirects field.
28287 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28289         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
28291         * reflection.c (mono_image_build_metadata): Fix crash on modules
28292         with no types.
28294         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
28296         * icall.c (ves_icall_get_method_info): Return callingConvention as
28297         well.
28299         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
28300         namespaces from the EXPORTEDTYPE table as well.
28302         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
28303         from all modules inside the assembly.
28304         
28305 2003-11-11  Martin Baulig  <martin@ximian.com>
28307         * reflection.c (mono_reflection_bind_generic_parameters): Make
28308         this work for interfaces.
28310 2003-11-11  Martin Baulig  <martin@ximian.com>
28312         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
28314 2003-11-11  Martin Baulig  <martin@ximian.com>
28316         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
28317         "MonoInflatedMethod" and "MonoInflatedCtor".
28319 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28321         * reflection.c (resolution_scope_from_image): Use the assembly table
28322         from the manifest module, since other modules don't have it.
28324         * debug-helpers.c (mono_type_full_name): New helper function.
28326         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
28328         * image.c (mono_image_load_file_for_image): New public function which
28329         is a replacement for the load_file_for_image in class.c.
28331         * assembly.c (mono_assembly_load_module): A wrapper for the function
28332         above which does assembly association and reference loading too.
28334         * class.c (mono_class_from_name): Call mono_assembly_load_module.
28336 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28338         * appdomain.c: not all of the attributes for the full assembly name
28339         are required and the order doesn't matter. Fixes bug #50787.
28341 2003-11-10  Dick Porter  <dick@ximian.com>
28343         * locales.c: Use platform-endian UTF16
28345 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28347         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28348         
28349 2003-11-10  Martin Baulig  <martin@ximian.com>
28351         * metadata.c
28352         (mono_metadata_load_generic_params): Make this actually work.
28354         * reflection.c (mono_reflection_bind_generic_parameters): If our
28355         parent is a generic instance, pass all the `types' to it, no
28356         matter whether it has the same number of type parameters or not.
28358 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28360         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28362         * assembly.c (mono_assembly_load_references): Move the image<->assembly
28363         assignment code to this function so it gets called recursively for all
28364         modules.
28366         * image.c (load_modules): Remove the assembly assignment since it is
28367         now done by mono_assembly_load_references.
28368         
28369         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28370         Add 'module' argument.
28371         (mono_module_get_types): New helper function.
28372         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
28374 2003-11-08  Martin Baulig  <martin@ximian.com>
28376         * class.c (mono_class_inflate_generic_method): Interface method
28377         don't have a header.
28379         * reflection.c (mono_image_get_methodspec_token): Take an
28380         additional `MonoGenericInst *' argument instead of reading it from
28381         the header; this is necessary to support interfaces.
28382         (mono_image_create_token): Pass the `MonoGenericInst *' from the
28383         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
28384         (inflated_method_get_object): Take an additional `MonoGenericInst *'
28385         argument.
28387         * reflection.h (MonoReflectionInflatedMethod): Added
28388         `MonoGenericInst *ginst'.
28390 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
28392         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
28394 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
28396         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
28398 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
28400         * reflection.c 
28401         (reflection_methodbuilder_from_method_builder):
28402         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
28403         initialize a ReflectionMethodBuilder structure.
28404         (mono_image_get_methodbuilder_token):
28405         (mono_image_get_ctorbuilder_token): New functions to emit memberref
28406         tokens which point to types in another module inside the same assembly.
28408         * reflection.c: Use the new helper functions.
28409         
28410         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
28412         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
28413         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
28415         * reflection.c (resolution_scope_from_image): Emit a moduleref if
28416         neccesary.
28418         * reflection.c (mono_image_build_metadata): Emit metadata only for the
28419         current module. Emit the manifest only for the main module.
28421         * reflection.c (mono_image_create_token): Add assertion when a 
28422         memberref needs to be created.
28424         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
28426         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
28427         larger buffer for the custom attribute blob. Fixes #50637.
28428         
28429 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28431         * threadpool.c: notify listener on async processing handles after
28432         invoking the async callback. Thanks to Zoltan.
28434 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28436         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
28437         avoid code duplication.
28439         * reflection.h (MonoDynamicImage): New type which is currently unused,
28440         but will be used through the ref.emit code in place of 
28441         MonoDynamicAssembly.
28443         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28444         object layout.
28446         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
28447         a MonoDynamicImage instead of just a MonoImage.
28448         
28449         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
28450         icalls to ModuleBuilder but keep their semantics, so they will work
28451         with moduleb->assemblyb. This will change later.
28452         
28453 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28455         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28456         object layout.
28458         * reflection.c (mono_image_build_metadata): Avoid creation of a default
28459         main module, since it is now done by the managed code.
28461 2003-11-03  Martin Baulig  <martin@ximian.com>
28463         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
28464         `ginst->klass' here.
28465         (method_encode_methodspec): Don't use the `ginst->generic_method's
28466         klass if it's a generic instance, use `ginst->klass' in this case.
28468 2003-11-03  Martin Baulig  <martin@ximian.com>
28470         * reflection.c (mono_image_get_generic_method_param_info):
28471         Removed, use mono_image_get_generic_param_info() instead.
28472         (mono_image_get_type_info): Write the GenericParam table before
28473         the Method table.  This is neccessary because in the GenericParam
28474         table, type parameters of the class (ie. '!0' etc.) must come
28475         before the ones from its generic methods (ie. '!!0' etc).
28477 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28479         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
28481 2003-11-02  Martin Baulig  <martin@ximian.com>
28483         * reflection.c (create_generic_typespec): Take a
28484         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
28485         the generic parameters from it.
28487 2003-11-02  Martin Baulig  <martin@ximian.com>
28489         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
28490         instead of a `MonoClassField *' since we just need the type.
28491         (create_generic_typespec): New static function.  Creates a
28492         TypeSpec token for a generic type declaration.
28493         (mono_image_get_generic_field_token): New static function.
28494         (mono_image_create_token): If we're a FieldBuilder in a generic
28495         type declaration, call mono_image_get_generic_field_token() to get
28496         the token.
28498 2003-11-02  Martin Baulig  <martin@ximian.com>
28500         * reflection.h
28501         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
28502         `MonoReflectionGenericInst *declaring_type' and
28503         `MonoReflectionGenericInst *reflected_type' fields.
28505         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
28506         `MonoReflectionGenericInst *declaring_type' and a
28507         `MonoReflectionGenericInst *reflected_type' argument instead of a
28508         single `MonoReflectionGenericInst *type' one.  Set
28509         `res->declaring_type' and `res->reflected_type' from them.
28510         (mono_reflection_inflate_field): Likewise.      
28512 2003-11-02  Martin Baulig  <martin@ximian.com>
28514         * class.c (mono_class_setup_vtable): Don't store generic methods
28515         in the vtable.  
28517 2003-11-02  Martin Baulig  <martin@ximian.com>
28519         * reflection.h (MonoReflectionGenericInst): Added
28520         `MonoReflectionType *declaring_type'.
28522         * reflection.c (mono_reflection_bind_generic_parameters): Use
28523         `if (tb->parent)' instead of `klass->parent'.
28525 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
28527         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
28528         with an empty ASSEMBLY table.
28530         * reflection.c (mono_image_build_metadata): Avoid using the same loop
28531         variable in the inner and outer loops.
28533 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
28535         * metadata.h (mono_metadata_make_token): Put parentheses around macro
28536         argument.
28538         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
28539         
28540         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
28541         icalls. Instead, do everything in managed code. This is needed since
28542         it is hard to restore the original domain etc. in unmanaged code in the
28543         presence of undeniable exceptions.
28545         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
28546         New icalls to push and pop appdomain refs.
28548 2003-10-31  Martin Baulig  <martin@ximian.com>
28550         * class.c (inflate_generic_type): Renamed to
28551         mono_class_inflate_generic_type() and made it public.
28553         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
28554         New interncall.
28556         * loader.c (mono_field_from_memberref): Also set the retklass for
28557         typespecs.
28559         * fielder.c (mono_image_get_inflated_field_token): New static
28560         method; creates a metadata token for an inflated field.
28561         (mono_image_create_token, fixup_method): Added support for
28562         "MonoInflatedField".
28563         (fieldbuilder_to_mono_class_field): New static function.
28564         (mono_reflection_inflate_field): New public function.
28566         * reflection.h
28567         (MonoReflectionGenericInst): Added `MonoArray *fields'.
28568         (MonoReflectionInflatedField): New typedef.     
28570 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28572         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28573         for Solaris and other platforms without s6_addr16
28575 2003-10-30  Martin Baulig  <martin@ximian.com>
28577         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28578         argument instead of two.
28579         (mono_class_inflate_generic_signature): Likewise.
28580         (inflate_generic_header): Likewise.
28581         (mono_class_inflate_generic_method): Likewise.  In addition, if
28582         `ginst->klass' is set, it becomes the new `method->klass'.
28584         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28585         field.
28587         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28588         first byte. [FIXME]
28589         (method_encode_methodspec): If we have generic parameters, create
28590         a MethodSpec instead of a MethodRef.
28591         (fixup_method): Added support for "MonoInflatedMethod" and
28592         "MonoInflatedCtor".
28593         (mono_image_create_token): Added support for "MonoInflatedMethod"
28594         and "MonoInflatedCtor".
28595         (inflated_method_get_object): New static function; returns a
28596         managed "System.Reflection.MonoInflatedMethod" object.
28597         (mono_reflection_bind_generic_method_parameters): Return a
28598         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28599         (mono_reflection_inflate_method_or_ctor): Likewise.
28600         (mono_image_get_generic_method_param_info): Initialize unused
28601         fields to zero.
28602         (mono_image_get_generic_param_info): Likewise.
28604         * reflection.h (MonoReflectionInflatedMethod): New public
28605         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28606         "S.R.MonoInflatedCtor" classes.
28608         * loader.c (method_from_memberref): If we're a TypeSpec and it
28609         resolves to a generic instance, inflate the method.
28611 2003-10-28  Dick Porter  <dick@ximian.com>
28613         * object.c (mono_runtime_run_main): Convert command-line arguments
28614         into utf8, falling back to the user's locale encoding to do so.
28616 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28618         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28619         at this time.
28621         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28623         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28624         up icalls at method definition time. Partially fixes #33569.
28626 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28628         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28629         marshalling of arrays. Fixes #50116.
28631         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28633         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28634         points to a vtable in the dying appdomain.
28636         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28637         listeners into unmanaged code inside the lock.
28639         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28640         domains and add some comments.
28642 2003-10-25  Martin Baulig  <martin@ximian.com>
28644         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28646         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28648         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28649         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28650         currently parsing.  Create the generic class and store it in
28651         `generic_inst->klass' before parsing the type arguments.  This is
28652         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28653         for an example.
28654         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28655         to support recursive typespec entries.
28657         * class.c (mono_class_setup_parent): If our parent is a generic
28658         instance, we may get called before it has its name set.
28659         (mono_class_from_generic): Splitted into
28660         mono_class_create_from_generic() and mono_class_initialize_generic().
28662 2003-10-25  Martin Baulig  <martin@ximian.com>
28664         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28665         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28666         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28667         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28669         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28670         (create_typespec): Likewise.
28671         (mono_reflection_bind_generic_parameters): Return a
28672         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28673         (mono_reflection_inflate_method_or_ctor): New public function.
28675         * reflection.h (MonoReflectionGenericInst): New typedef.        
28677 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28679         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28680         inside the domain lock. Fixes #49993.
28681         
28682         * object.c (mono_class_vtable): When typed allocation is used, 
28683         allocate vtables in the GC heap instead of in the mempool, since the
28684         vtables contain GC descriptors which are used by the collector even
28685         after the domain owning the mempool is unloaded.
28687         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28689         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28690         reflect what it does. Also invalidate mempools instead of freeing
28691         them if a define is set.
28693         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28694         of the appdomain.
28695         
28696         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28697         hold the finalizable objects in this domain.
28699         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28700         appdomain.
28702         * appdomain.c (mono_domain_set): New function to set the current
28703         appdomain, but only if it is not being unloaded.
28705         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28706         appdomain which is being unloaded.
28707         
28708         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28709         unloading of the root appdomain.
28711         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28712         icall to execute a method in another appdomain. Intended as a 
28713         replacement for InternalSetDomain, which can confuse the code 
28714         generation in the JIT.
28716         * appdomain.c (mono_domain_is_unloading): New function to determine
28717         whenever an appdomain is unloading.
28719         * appdomain.c (mono_domain_unload): New function to correctly unload
28720         an appdomain.
28722         * assembly.c (mono_assembly_load_references): Check that an assembly
28723         does not references itself.
28725         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28726         domain manually, it asks the finalizer thread to do it, then waits for
28727         the result. Also added a timeout.
28729         * icall.c: Register the new icalls.
28731         * threads.h threads.c: Export the mono_gc_stop_world and 
28732         mono_gc_start_world functions.
28733         
28734         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28735         function to fill out the mempool with 0x2a.
28737 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28739         * reflection.h (MonoReflectionMethodAux): New structure to store
28740         information which is rarely used, thus is not in the MonoMethod
28741         structure.
28743         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28744         store the aux info.
28746         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28747         and marshalling info into the aux structure.
28749         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28750         from the aux structure.
28752         * loader.c (mono_method_get_param_names): Retrieve the param names from
28753         the aux structure.
28754         
28755 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28757         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28758         warning.
28760 2003-10-21  Dick Porter  <dick@ximian.com>
28762         * socket-io.c
28763         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28764         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28766 2003-10-21  Martin Baulig  <martin@ximian.com>
28768         * reflection.c (mono_reflection_bind_generic_parameters):
28769         `klass->parent' is NULL for interfaces.
28771 2003-10-21  Martin Baulig  <martin@ximian.com>
28773         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28775 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28777         * exception.c (mono_exception_from_name_msg): New helper function for
28778         creating exceptions and initializing their message field.
28780         * exception.c: Simplify functions using the new helper.
28782         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28783         New function.
28785         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28786         mono_raise_exception, since otherwise gcc doesn't generate the function
28787         epilog for raise_exception, confusing the stack unwinding in the JIT.
28788         Fixes #45043.
28790         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28791         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28792         Fixes #49499.
28794 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28796         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28797         utf8.
28799 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28801         * icall.c: Removed GetUninitializedObject method because
28802           AllocateUninitializedClassInstance does the same.
28804 2003-10-18  Martin Baulig  <martin@ximian.com>
28806         * class.c (inflate_generic_signature): Renamed to
28807         mono_class_inflate_generic_signature() and made it public.
28808         (my_mono_class_from_generic_parameter): New static function; if we
28809         don't already have the generic parameter's MonoClass, create a
28810         very simple one which is just used internally in the runtime and
28811         not passed back to managed code.
28813         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28815         * metadata.h (MonoMethodSignature): Moved the
28816         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28817         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28819         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28820         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28821         interncall on the MonoMethod class, not on MethodInfo.
28822         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28823         calling mono_reflection_bind_generic_method_parameters() directly.
28825         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28826         return the already computed `method->signature'.
28827         (method_from_methodspec): New static function to load a method
28828         from a MethodSpec entry.
28829         (mono_get_method_from_token): Call the new method_from_methodspec()
28830         for MethodSpec tokens.  
28831         (mono_get_method_from_token): If we're a generic method, load the
28832         type parameters.
28834         * reflection.c (mono_image_get_memberref_token): Allow
28835         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28836         table.
28837         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28838         (mono_image_create_token): First check whether it's a generic
28839         method (so we'd need to create a MethodSpec), then do the other
28840         two alternatives.
28841         (mono_reflection_bind_generic_method_parameters): Return a
28842         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28843         called directly from the interncall.
28845 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28847         * reflection.c (load_public_key): Move loading of the public key
28848         into managed code.
28850         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28852         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28853         fields.
28855         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28856         culture, hash_alg and public_key. Fixes #49555.
28858 2003-10-17  Martin Baulig  <martin@ximian.com>
28860         * class.h (MonoGenericInst): Moved this declaration here and added
28861         `MonoMethod *generic_method'.
28863         * icall.c
28864         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28865         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28867         * metadata.c (mono_metadata_type_equal): Two types of
28868         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28869         index; ie. don't compare the address of the `MonoGenericParam'
28870         structure.
28871         (mono_metadata_load_generic_params): Removed the `MonoMethod
28872         *method' argument.
28874         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28875         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28877         * reflection.c (method_encode_signature): Encode the number of
28878         generic parameters.
28879         (encode_generic_method_sig): New static function.
28880         (method_encode_methodspec): New static function; creates an entry
28881         in the MethodSpec table for a generic method.
28882         (mono_image_get_methodspec_token): New static function.
28883         (mono_image_create_token): Call mono_image_get_methodspec_token()
28884         for generic methods.
28885         (mono_reflection_bind_generic_method_parameters): New public
28886         function.  Instantiates a generic method.
28888 2003-10-16  Martin Baulig  <martin@ximian.com>
28890         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28891         *gen_params' here from MonoMethodHeader.
28893         * metadata.c (mono_metadata_parse_method_signature): If we have
28894         generic parameters, initialize `method->gen_params' and then set
28895         the correct `type->data.generic_param' in all the parameters.
28897 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28899         * threads.c (mono_threads_get_default_stacksize): New function to 
28900         return the default stacksize.
28902         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28903         termination of the finalizer thread, since the previous method had
28904         race conditions. Fixes #49628.
28906         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28907         as for the other managed threads.
28909 2003-10-16  Martin Baulig  <martin@ximian.com>
28911         * class.c (inflate_generic_signature): Copy `generic_param_count'
28912         and `gen_params'.
28914         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28915         New interncall.
28917         * metadata.c (mono_metadata_parse_method_signature): Actually set
28918         the `method->generic_param_count' here.
28919         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28921 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28923         * object.h: Add a new field to TypedRef to simplify the implementation
28924         of the REFANY opcodes in the JIT.
28926         * icall.c: Make use of the new field.
28928         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28929         dynamically.
28931 2003-10-15  Martin Baulig  <martin@ximian.com>
28933         * class.c (mono_class_from_gen_param): Renamed to
28934         mono_class_from_generic_parameter() and moved most of the
28935         functionality from mono_reflection_define_generic_parameter()
28936         here; ie. we create a "real" class here.
28937         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28938         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28939         previously been called.
28941         * class.h (MonoGenericParam): Moved the declaration of this struct
28942         here from metadata.h and added `MonoMethod *method'.
28944         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28945         interncall.
28947         * loader.c (mono_get_method_from_token): If we have any generic
28948         parameters, call mono_metadata_load_generic_params() to read them
28949         from the MONO_TABLE_GENERICPAR.
28951         * metadata.c (mono_metadata_load_generic_params): Added
28952         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28954         * metadata.h (MonoMethodSignature): Replaced
28955         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28956         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28958         * reflection.c (mono_reflection_define_generic_parameter): Moved
28959         most of the functionality into the new
28960         mono_class_from_generic_parameter(); set the `method' field if
28961         we're a method parameter.       
28963 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28965         * marshal.c (emit_struct_conv): if native size is 0
28966         emit no code.
28968 2003-10-14  Martin Baulig  <martin@ximian.com>
28970         * icall.c: The generics API has changed in the spec since it was
28971         added to System.Type; these modifications make it match the spec
28972         again.
28973         (ves_icall_Type_GetGenericParameters): Renamed to
28974         `ves_icall_Type_GetGenericArguments'.
28975         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28976         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28977         `ves_icall_MonoType_get_HasGenericArguments'.
28978         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28979         `ves_icall_MonoType_get_IsGenericParameter'.
28980         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28981         this is no interncall anymore.
28982         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28983         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28985 2003-10-14  Martin Baulig  <martin@ximian.com>
28987         * reflection.c (mono_reflection_bind_generic_parameters): Also
28988         inflate generic methods if we're reading the class from IL.
28990 2003-10-13  Martin Baulig  <martin@ximian.com>
28992         * reflection.c (mono_reflection_define_generic_parameter): This
28993         method isn't called directly from the icall anymore; take a
28994         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28995         method generic parameters.
28996         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28997         (method_builder_encode_signature): Encode generic parameters.
28998         (mono_image_get_method_info): Write generic params to the
28999         MONO_TABLE_GENERICPARAM table.
29001         * reflection.h (MonoReflectionMethodBuilder): Added
29002         `MonoArray *generic_params'.
29004         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
29006         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
29007         wrapper for mono_reflection_define_generic_parameter().
29008         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
29010 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
29012         * marshal.h: Add missing function to fix build.
29014         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
29015         the SetLastError pinvoke attribute.
29017         * marshal.c (mono_marshal_set_last_error): New helper function called
29018         by the generated code.
29019         
29020         * marshal.c (mono_mb_emit_branch): New helper function.
29022         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
29024         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
29025         classes as parameters and return values of delegates. Fixes #29256. 
29027 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
29029         * locales.c: use gint32 in non HAVE_ICU case
29031 2003-10-11  Martin Baulig  <martin@ximian.com>
29033         * mono-debug.c (mono_debug_add_method): Added a workaround for
29034         bug #48591.
29036 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
29038         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
29039         delegates passed to native code must use the STDCALL calling 
29040         convention. Fixes #35987.
29042 2003-10-10  Martin Baulig  <martin@ximian.com>
29044         * class.c (inflate_generic_type): If we're inflating for a generic
29045         type instance (and not for a generic method), return
29046         MONO_TYPE_MVAR unchanged.
29048 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29050         * string-icalls.c: Join ignores null strings in the source array.
29051         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
29052         * threads.c: GetAvailableTheads is slightly more accurate.
29054 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
29056         * threads.h threads.c : add mono_threads_set_default_stacksize
29057         and pass default to CreateThread calls.
29059 2003-10-09  Dick Porter  <dick@ximian.com>
29061         * icall.c:
29062         * locales.h:
29063         * locales.c: Internal calls for constructing CultureInfo and
29064         related objects from libicu (if its available.)
29066 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
29068         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
29070 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29072         * threadpool.c: added an argument to async_invoke_thread that is the
29073         item to process, pass the MonoAsyncResult to the thread start function
29074         when creating a new thread. This way we don't need to acquire any lock
29075         when we're creating a new thread. Readded a semaphore for faster
29076         response times (instead of that Sleep i added).
29078 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
29080         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
29081         get daylight change dates better on Windows, fix handling
29082         of platforms without tm_gmtoff.
29084 2003-10-06  Martin Baulig  <martin@ximian.com>
29086         * class.c (inflate_generic_method): Renamed to
29087         mono_class_inflate_generic_method() and made public.
29088         (mono_class_init): Don't inflate the generic methods here.
29089         (mono_class_from_generic): Added `gboolean inflate_methods'
29090         argument.  Inflate the methods here.
29092         * loader.c (mono_method_get_param_names): Ignore instances of
29093         generic types for the moment.
29095         * reflection.c (fixup_method): Added support for inflated methods.
29096         (mono_image_create_token): Use mono_image_get_methodref_token()
29097         for inflated methods.
29098         (mono_custom_attrs_from_param): Ignore instances of generic types
29099         for the moment.
29100         (mono_reflection_bind_generic_parameters): New public function.
29101         Moved all the functionality from
29102         ves_icall_Type_BindGenericParameters() here and added support for
29103         dynamic types.
29104         (mono_reflection_define_generic_parameter): Initialize
29105         `klass->methods' here.
29107         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
29108         functionality into mono_reflection_define_generic_parameter().
29109         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
29110         TypeBuilder, return that TypeBuilder.
29112 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29114         * appdomain.c: removed mono_delegate_semaphore.
29116         * threadpool.c:
29117         (mono_thread_pool_add): moved hash table creation inside and the thread 
29118         creation outside of the critical region.
29119         (mono_thread_pool_finish): removed obsolete code.
29120         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
29121         continue or exit the thread depending on the queue.
29123 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
29125         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
29126         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
29127         handle more bool marshalling options
29129 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
29131         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
29132         arrays of structs. Also add a more descriptive error message when
29133         a structure member is marshalled as LPArray.
29135 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
29137         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29138         marshalling arrays of complex types. Fixes #29098. Also remove an
29139         usused and incomplete function.
29141 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29143         * gc.c: report heap_size - free_bytes as total memory allocated
29144         (bug#49362).
29146 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
29148         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
29149         fix timezone handling problems on Windows.
29150         
29151         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
29152         asserts when the year is outside the range handled by ms the functions.
29154         * class.c (setup_interface_offsets): If the class is an interface,
29155         fill out its interface_offsets slot.
29157 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29159         * threadpool.c: mark threadpool threads as background.
29161 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
29163         * decimal.c - define DECINLINE to nothing if not using GCC
29165 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
29167         * assembly.c: More refcount fixes.
29169 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29171         * string-icalls.c: if we're not trimming, return the same string.
29172         When not splitting, don't create a new string.
29174 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29176         * image.c:
29177         (mono_image_open): increment the ref_count inside the critical section.
29179 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
29181         * image.c (mono_image_open): Fix reference counting bug.
29183 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
29185         * marshal.c (mono_marshal_type_size) struct alignment changed for 
29186         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
29187         64bits. Avoid leak in mono_marshal_get_native_wrapper when
29188         mono_lookup_pinvoke_call throws.        
29190 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
29192         * reflection.c (mono_reflection_parse_type): Fix #49114.
29194         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
29195         temporary workaround for cygwin header problem.
29197         * object.c (mono_object_isinst): Synchronize this with the code
29198         generated by the JIT for casts.
29200 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
29202         * reflection.c (encode_type): Fix #38332.
29204 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
29206         * marshal.c (mono_marshal_method_from_wrapper): New function to return
29207         the original method from the wrapper method.
29209 2003-09-25  Martin Baulig  <martin@ximian.com>
29211         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
29212         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
29213         (ves_icall_Type_get_IsGenericInstance): New interncall.
29215 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
29217         * object.c: fix cast warning in big endian code.
29219 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
29221         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
29222         
29223 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29225         * assembly.c: don't call check_env from mono_assembly_load. It's
29226         already done once in mono_assemblies_init and may cause headaches when
29227         multiple threads are loading assemblies.
29229 2003-09-19  Martin Baulig  <martin@ximian.com>
29231         * reflection.c (mono_reflection_define_generic_parameter): Don't
29232         allocate `klass->methods', set `klass->flags' to
29233         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
29235 2003-09-18  Martin Baulig  <martin@ximian.com>
29237         * class.c (mono_class_init): Don't create `class->methods' if it's
29238         already initialized.
29240         * metadata.c (mono_metadata_load_generic_params): Make this
29241         actually work.
29243         * reflection.c (mono_reflection_define_generic_parameter): Set
29244         parent class and interfaces from the constraints.
29246         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
29247         to keep this struct in sync with the declaration in TypeBuilder.cs.
29249 2003-09-17  Martin Baulig  <martin@ximian.com>
29251         * metadata.h (MonoType): Replaced the data's `int type_param'
29252         field with `MonoGenericParam *generic_param'.
29253         (MonoGenericParam): Added `MonoClass *klass'.
29255         * class.c (mono_class_from_gen_param): Removed the
29256         `MonoImage *image' and `int type_num' arguments.
29258         * metadata.c (mono_metadata_parse_generic_param): New static
29259         method; creates a MonoGenericParam which just contains the index.
29260         (do_mono_metadata_parse_type): Call
29261         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
29262         MONO_TYPE_MVAR.
29264         * reflection.c (mono_image_typedef_or_ref): Generic type
29265         parameters may be in the same assembly, but never use a typedef
29266         for them.
29267         (mono_reflection_define_generic_parameter): We're now creating a
29268         "real" class for the type parameter; it's now safe to call
29269         mono_class_from_mono_type() on the class'es type, it'll do the
29270         right thing.
29272 2003-09-16  Martin Baulig  <martin@ximian.com>
29274         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
29275         `symfile->range_entry_size' and `symfile->class_entry_size' here;
29276         the `symfile' data structure must be fully initialized before it
29277         gets added to the table.
29279 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
29281         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
29283         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
29284         class init trampolines.
29286 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
29288         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
29289         to the built-in profiler to turn off time and allocation profiling
29290         respectively.
29292 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
29294         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
29295         g_direct_equal.
29297         * debug-helpers.c (mono_method_full_name): Print the wrapper type
29298         in human readable form.
29300 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
29302         * reflection.c icall.c: Fixed warnings.
29304         * image.c (load_class_names): Use a temporary hash table to hold the
29305         namespaces in order to avoid doing many string comparisons.
29307         * image.h: Fix typo.
29309         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
29310         Pass NULL instead of g_direct_equal to the GHashTable constructor 
29311         since the NULL case is short-circuited inside g_hash_table_lookup, 
29312         leading to better performance.  
29314         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
29315         obtain the first custom attribute for a given index. Depends on the
29316         CustomAttribute table being sorted by the parent field.
29318         * reflection.c (mono_custom_attrs_from_index): Use the new function 
29319         for better performance.
29321 2003-09-07  Martin Baulig  <martin@ximian.com>
29323         * class.c (mono_class_init): If we're a generic instance, inflate
29324         all our methods instead of loading them from the image.
29325         (mono_class_from_generic): Set `class->methods = gklass->methods'.
29327 2003-09-07  Martin Baulig  <martin@ximian.com>
29329         * mono-debug-debugger.c: Added support for constructors.
29331 2003-09-06  Martin Baulig  <martin@ximian.com>
29333         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
29334         New interncall.
29336         * reflection.c (mono_reflection_setup_generic_class): Call
29337         ensure_runtime_vtable() to create the vtable.
29339 2003-09-05  Martin Baulig  <martin@ximian.com>
29341         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
29342         MONO_TYPE_MVAR.
29344 2003-09-04  Martin Baulig  <martin@ximian.com>
29346         * reflection.c (mono_reflection_define_generic_parameter): Generic
29347         parameters start with zero.
29349 2003-09-04  Martin Baulig  <martin@ximian.com>
29351         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29353         * reflection.h (MonoReflectionGenericParam): New typedef.
29354         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
29355         the generic parameters from the managed TypeBuilder.
29357         * reflection.c (mono_reflection_define_generic_parameter): New function.
29358         (mono_reflection_create_runtime_class): Encode generic parameters.
29359         (mono_reflection_setup_generic_class): New function; this is
29360         called after adding adding all generic params to the TypeBuilder.
29361         (encode_type): Added MONO_TYPE_VAR.
29363 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
29365         * class.h class.c (mono_class_needs_cctor_run): Moved this method
29366         here from the JIT.
29368         * assembly.h assembly.c: Moved the AOT loading code into an assembly
29369         load hook.
29371 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
29373         * reflection.h reflection.c class.h class.c: Delete duplicate 
29374         definition of mono_type_get_name () from reflection.c and export the
29375         one in class.c.
29377         * class.c: Class loading fixes from Bernie Solomon 
29378         (bernard@ugsolutions.com).
29380         * reflection.c: Endianness fixes from Bernie Solomon 
29381         (bernard@ugsolutions.com).
29382         
29383 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
29385         * assembly.h assembly.c: Define a file format version for AOT
29386         libraries.
29387         
29388         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
29390         * appdomain.h (MonoJitInfo): New field to determine whenever the
29391         code is domain neutral.
29392         
29393 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
29395         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
29397 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
29399         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
29400         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
29401         Avoid caching the result since strings must be domain specific. Fixes
29402         #48050.
29404 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
29406         * marshal.c (mono_marshal_init): Make this callable multiple times
29407         since it is hard to find a correct place to call it.
29409         * object.c (mono_runtime_class_init): Execute static constructors in
29410         the correct appdomain.
29412         * image.c (build_guid_table): Handle the case when multiple images have
29413         the same GUID.
29415 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29417         * icall.c: added a couple of icalls for System.Web.
29419 2003-08-28  Martin Baulig  <martin@ximian.com>
29421         * icall.c (ves_icall_Type_BindGenericParameters): Use
29422         `klass->generic_inst' instead of `&klass->byval_arg' in the
29423         mono_type_get_object() call.  The returned type must be
29424         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
29426 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
29428         * NOTES: New file.
29430         * object.c (mono_class_proxy_vtable): Make it thread safe.
29432         * pedump.c: Fix warning.
29434         * object.c appdomain.h: Get rid of metadata_section. 
29435         It is no longer needed and it was causing deadlocks with domain->lock.
29437         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
29439 2003-08-26  Martin Baulig  <martin@ximian.com>
29441         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
29443 2003-08-26  Martin Baulig  <martin@ximian.com>
29445         * pedump.c (main): Call mono_metadata_init(),
29446         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
29447         and mono_loader_init().
29449 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
29451         * loader.h: Add missing include to fix build.
29453         * image.h: mono_image_load_references is no more.
29455         * assembly.c: Reworked assembly loading to make it really thread safe.
29456         After these changes, the assembly returned by mono_assembly_open is
29457         fully initialized, i.e. all its references assemblies are loaded.
29459         * assembly.c (mono_image_load_references): Renamed to 
29460         mono_assembly_load_references, and made private, since clients no
29461         longer need to call it.
29463         * class.c: Removed calls to mono_assembly_load_references, since it was
29464         a source of deadlocks.
29466         * loader.h loader.c class.h class.c: Protect data structures using a 
29467         new lock, the loader lock.
29469         * class.c (mono_class_setup_vtable): Create temporary hash tables and
29470         GPtrArrays only when needed.
29472         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
29473         into empty structures by mcs. Fixes pinvoke7.cs.
29474         
29475         * domain.c (mono_init): Call a new initialization function.
29477         * appdomain.c (mono_runtime_init): Call the new initializer function
29478         of the marshal module.
29480         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
29481         inserted into empty structures by mcs. Fixes pinvoke7.cs.
29483         * marshal.h marshal.c: Added locks around the wrapper caches to make
29484         this module thread safe.
29486         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
29487         this argument. Fixes pinvoke1.exe.
29489 2003-08-25  Lluis Sanchez <lluis@ximian.com>
29491         * object.h: Added call_type field to MonoMethodMessage and the corresponding
29492         enumeration of values. Removed fields to store remote call output values in
29493         MonoAsyncResult. Not needed any more.
29494         * object.c: Initialize call_type and async_result fields in mono_message_init.
29495         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
29496         dispatching the message.
29497         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
29498         async call to finish. To do it use a message with EndInvoke call type.
29500 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
29502         * loader.h loader.c (mono_method_hash_marhal_info): New function which
29503         determines whenever a method has marshalling info.
29505 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29507         * assembly.c: fix the build on windows.
29509 2003-08-22 Lluis Sanchez <lluis@ximian.com>
29511         * object.cs: Fixed bug #47785.
29513 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
29515         * string-icalls.c (StringReplace): If their are no occurances of
29516         the old string found return a reference to the supplied
29517         string. This saves some memory and matches MS behavoir.
29518         
29519 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29521         * socket-io.c: fixed compilation for systems that define AF_INET6
29522         and don't define SOL_IP/SOL_IPV6.
29524 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
29526         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
29527         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
29529         * rawbuffer.c rawbuffer.h: Make this module thread safe.
29531         * domain.c: Make this module thread safe.
29533         * domain.c (mono_init): Call new initialization function.
29535         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
29536         reference types too. Fixes #38812.
29538         * image.c (mono_image_init): Fixed warnings.
29540         * class.c (mono_class_from_typeref): Handle assembly load failure
29541         correctly.
29543         * appdomain.c (add_assemblies_to_domain): Handle the case when
29544         the references of an assembly are not yet loaded.
29546         * metadata.c image.c assembly.c: Moved initialization of global
29547         variables to a separate function called at startup since lazy 
29548         initialization of these variables is not thread safe.
29549         
29550         * image.c assembly.c: Made this module thread safe by adding locks in 
29551         the appropriate places.
29553         * domain.c (mono_init): Call the new initialization functions of the
29554         three modules.
29556 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
29558         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
29559           make a direct call. It is proxy's work to make the call asynchronous.
29560           mono_delegate_end_invoke(): If the targe is a proxy, just collect
29561           the return values.
29562         * object.cs: mono_method_call_message_new(): read AsyncResult and
29563           state object from parameters list, if this info is requested.
29564         * object.h: Added fields to store remote call output values in
29565           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
29567 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29569         * object.h: add needed fields to MonoThread.
29570         * threads.c, threads.h: allow registering a function to cleanup data
29571         allocated per thread by the JIT.
29573 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29575         * loader.h: portability fix by Bernie Solomon
29576         * <bernard@ugsolutions.com>.
29578 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29580         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29581         return a MonoArray. This simplifies the code and also ensures that
29582         the cache allways contains an object reference as a value.
29584         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29585         function.
29587 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29589         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29590         fixes a problem with byte ordering when getting the address family for
29591         a socket.
29593 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29595         * .cvsignore: Added monosn.
29597         * reflection.h reflection.c loader.c: Added support for parameter
29598         marshalling to dynamically created types. Fixes #47295.
29600 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29602         * rand.c: remove useless warnings.
29604 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29606         * class.c: implemented ldtoken for methods and fieldrefs.
29608 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29610         * threadpool.c: when mono_async_invoke was called, no one took care of
29611         monitoring the queue. So if the method invoked took some time and we
29612         got new async invoke requests after 500 ms (the thread created waited
29613         that long in WaitForSingleObject), the new async invoke was not called
29614         until the previous one finished.
29616         This is fixed now. Thanks to Totte for helping with it.
29618 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29620         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29622 2003-08-11  Martin Baulig  <martin@ximian.com>
29624         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29626 2003-08-06  Martin Baulig  <martin@ximian.com>
29628         * mono-debug-debugger.c: Added support for static fields,
29629         properties and methods.
29631 2003-08-06  Martin Baulig  <martin@ximian.com>
29633         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29634         make this work for applications with multiple application domains.
29636 2003-08-04  Martin Baulig  <martin@ximian.com>
29638         * mono-debug-debugger.c: Completely reworked the type support; the
29639         most important thing is that we're now just using one single
29640         `MonoType' instance per type.
29642 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29644         * mono-endian.h, mono-endian.c, icall.c: Added icall
29645         ves_icall_System_Double_AssertEndianity to assert double word endianity
29646         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29648 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29650         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29651         support, icalls and fixes.
29653 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29655         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29656         classes that are a punctuation character in .NET is not the same a
29657         g_unichar_ispunct.
29659 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29661         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29663 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29665         * icall.c: Add new MemCopy internalcall.
29666         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29667         Simplified code; It is not necessary to handle all the cases here,
29668         as the C# code takes care of it.  Only handle the case of the name
29669         resource embedded into the assembly.
29671         Changed signature to return the data pointer and the size of the
29672         data. 
29674 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29676         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29677         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29679 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29681         * socket-io.c: ignore EINTR error in select.
29683 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29685         * class.h, class.c: removed unused subclasses field in MonoClass.
29687 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29689         * icall.c: improve fix of get_base_definition(). If the parent class
29690           doesn't have the mehod, look at the parent of the parent.
29691         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29692           to check if a parameter is an in or out parameter
29693           (PARAM_ATTRIBUTE_IN is not set by default).
29694           mono_method_return_message_restore(): Use mono_class_value_size to
29695           get the size of a value type. mono_type_stack_size (parameterType)
29696           does not return the correct value if parameterType is byRef.
29697           mono_load_remote_field(), mono_load_remote_field_new(),
29698           mono_store_remote_field(), mono_store_remote_field_new():
29699           raise exception if the remote call returns an exception.
29701 2003-07-28  Martin Baulig  <martin@ximian.com>
29703         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29704         method.  This is a wrapper around mono_runtime_invoke() which
29705         boxes the instance object if neccessary.
29707 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29709         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29710         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29712 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29714         * icall.c: disable mcs bug workaround.
29716 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29718         * object.c (mono_runtime_class_init): Take the metadata_section
29719         mutex before obtaining the domain mutex.
29721         * appdomain.h: Added definition of metadata_section mutex here. 
29723         * object.c: define metadata_mutex here.
29725 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29727         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29728         fixed.
29730 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29732         * reflection.c: Fix bug #46669
29734 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29736         * exception.c:
29737         * exception.h:
29738         * icall.c:
29739         * object.h: fill in the type name for TypeLoadException.
29741 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29743         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29744         relationship between TypeBuilders while compiling corlib) and bug
29745         45993 (Array types returned from the runtime while compiling
29746         corlib were from the loaded corlib).
29748 2003-07-22  Martin Baulig  <martin@ximian.com>
29750         * mono-debug-debugger.c: Reworked the type support a bit more;
29751         distinguish between types and classes.
29753 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29755         * icall.c: add IsArrayImpl icall.
29757 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29759         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29760         initializing real_size only once. Also fix bug #46602.
29762 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29764         * object.c: Renamed mono_metadata_section to metadata_section.
29766 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29768         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29769           empty array if the type is an array. Fixed.
29770           ves_icall_MonoMethod_get_base_definition: if the base method
29771           is abstract, get the MethodInfo from the list of methods of
29772           the class.
29773         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29774           and it was 1-based. Fixed in mono_param_get_objects.
29776 2003-07-20  Martin Baulig  <martin@ximian.com>
29778         * mono-debug.h: Set version number to 31.
29779         (mono_debug_init): Added `MonoDomain *' argument.
29781         * mono-debug-debugger.c: Reworked the type support; explicitly
29782         tell the debugger about builtin types; pass the `klass' address to
29783         the debugger.
29785 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29787         * image.c: Allow new metadata tables to be loaded without a
29788         warning. Also update the warning message to give the new constant value.
29789                 
29790 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29792         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29793         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29794         array type representation changes.
29796 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29798         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29799         on Environment.Exit () call.
29801 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29803         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29804         requires a matching corlib.
29806 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29808         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29809           Committed again without the CRs.
29810         
29811 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29813         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29814           getting it from the "this" socket instance. Did not work
29815           if the socket is a subclass of Socket.
29816           Also fixed bug #35371.
29818 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29820         * metadata.c: fixed size for TypedByRef.
29821         * loader.c: when searching for a method, consider the vararg amrker.
29822         * unicode.c, decimal.c: constify some arrays.
29824 2003-07-15  Dick Porter  <dick@ximian.com>
29826         * socket-io.c: Fixed compilation for gcc < 3.2.
29828         Fixed compilation for machines that don't have AF_INET6 (thanks to
29829         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29831         Fixed compile warnings.
29832         
29833         Fixed formatting and line endings.
29835 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29837         * socket-io.h:
29838         * socket-io.c: Added IPv6 support.
29840 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29842         * class.c (mono_class_is_assignable_from): New function to implement
29843         the is_assignable_from logic. Used by mono_object_isinst, 
29844         Type::IsAssignableFrom () and the interpreter.
29846         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29847         Object, even interfaces.
29848         
29849         * object.c (mono_object_isinst): Implement in terms of 
29850         is_assignable_from.
29852         * icall.c (ves_icall_type_is_assignable_from): New icall.
29854 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29856         * domain.c (foreach_domain): fix compiler warning.
29858 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29860         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29861         not available on all plattforms
29863 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29865         * image.h image.c: Store the metadata version string in MonoImage.
29866         * icall.c: New icall to retrieve the image version.
29867         * reflection.c (create_dynamic_image): Fill in the image version field
29868         * reflection.c (build_compressed_metadata): Use the image version
29869         from the image structure.
29871 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29873         * appdomain.c: modified comment.
29874         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29875         That will be its last iteration when mono_gc_cleanup is called from
29876         mono_runtime_cleanup and before the domain is unloaded.
29878         Fixes bug #45962.
29880 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29882         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29883         attributes.
29885 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29887         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29888         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29889         Bernie Solomon <bernard@ugsolutions.com>.
29891 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29893         * object.c, object.h: provide mono_object_new_fast() for faster
29894         allocation in some special cases.
29896 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29898         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29899         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29901 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29903         * threadpool.c: fix leaks.
29905 2003-07-01  Dick Porter  <dick@ximian.com>
29907         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29908         using MonoGHashTables.  Fixes threadpool bug posted to list.
29910 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29912         * image.h, image.c: added support to load an assembly from a byte array.
29913         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29914         assembly bundle support.
29916 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29918         * threadpool.c (mono_thread_pool_add): keep a reference to the
29919         AsyncResult to prevent GC
29921 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29923         * class.c: leak fix.
29925 2003-06-25  Dick Porter  <dick@ximian.com>
29927         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29928         for the async object, the WaitHandle object will close the handle.
29929         Fixes bug 45321.
29931 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29933         * class.c: in mono_array_class_get (), lookup from the hash with the
29934         same type we insert: this works around a bug in
29935         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29936         lluis. The real fix will have to wait for after the release.
29938 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29940         * icall.c: fix memory leak when getting type members.
29942 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29944         * reflection.c: added more pubtoken special cases.
29946 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29948         * class.c: handle field offset correctly when class size
29949         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29951 2003-06-20  Martin Baulig  <martin@ximian.com>
29953         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29954         *image' field.
29956 2003-06-20  Martin Baulig  <martin@ximian.com>
29958         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29960 2003-06-20  Martin Baulig  <martin@ximian.com>
29962         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29963         just distinguish between variables in registers and variables at
29964         an offset relative to a register.
29966 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29968         * icall.c: #ifdef out latest changes until mcs is fixed.
29970 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29972         * icall.c: return members in metadata order.
29974 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29976         * icall.c: avoid infinite loop in GetTimeZoneData.
29978 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29980         * icall.c: added Marshal.Prelink/All icalls.
29982 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29984         * object.c, object.h: fix warnings and do some overflow checking
29985         when creating arrays.
29987 2003-06-17  Dick Porter  <dick@ximian.com>
29989         * file-io.h:
29990         * file-io.c: File attributes need to be tweaked slightly when
29991         passed from the managed to the w32 world.
29993 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29994         * profiler.h profiler-private.h profiler.c: Rework last patch
29995         based on suggestion by Paolo.
29996         
29997 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29999         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
30000         instruction level coverage data collection.
30001         * profiler.h profiler.c (: Added new callback function which can be
30002         used by the profiler to limit which functions should have coverage
30003         instrumentation.
30004         * profiler.c (mono_profiler_load): Call g_module_build_path to
30005         generate the file name of the profiler library.
30007 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30009         * profiler.c, profiler.h, profiler-private.h: added basic block 
30010         coverage profiling API.
30012 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
30014         * reflection.c (mono_reflection_create_runtime_class): Add support
30015         for events in dynamically generated code.
30017         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
30018         not allocated.
30020 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30022         * icall.c: when getting timezone info, return reasonable values if we
30023         can't get the actual data.
30025 2003-06-14  Dick Porter  <dick@ximian.com>
30027         * threads.c (start_wrapper): Remove the reference to the thread
30028         object in the TLS data, so the thread object can be finalized.
30029         This won't be reached if the thread threw an uncaught exception,
30030         so those thread handles will stay referenced :-( (This is due to
30031         missing support for scanning thread-specific data in the Boehm GC
30032         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
30034 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
30036         * reflection.c: ensure streams and tables are first allocated with
30037         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
30039 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30041         * icall.c: fixed GetElementType for byrefs (bug# 44792).
30043 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
30045         * reflection.c (mono_reflection_create_runtime_class): Add support for
30046         properties to dynamically created classes.
30047         * reflection.c: Fix a few places where non-MonoObjects were inserted
30048         into the tokens hashtable.
30050 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30052         * object.c: some support to handle out of memory exceptions.
30054 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
30056         * marshal.c (mono_marshal_get_native_wrapper): support reference
30057         return types
30059 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30061         * object.h, object.c: more portability stuff from Bernie Solomon.
30062         Unexport mono_object_allocate(). Added mono_object_unbox ().
30063         Set exitcode when an unhandled exception is thrown.
30065 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
30067         * marshal.c (mono_marshal_get_native_wrapper): use custom
30068         marshaler for return types.
30070 2003-06-10  Dick Porter  <dick@ximian.com>
30072         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
30073         ip_mreq is available
30075 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
30077         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
30078         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
30079         by Bernie Solomon <bernard@ugsolutions.com>.
30081 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
30083         * gc.c (mono_gc_init): Avoid error message on shutdown when
30084         GC_DONT_GC=1 is used.
30086         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
30087         New icall to return the GUID of a module.
30089 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30091         * class.c: ensure instance size always includes the parent's size
30092         even whem class size is set explicitly (fixes bug#44294).
30094 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30096         * profiler.h, profiler.c: made the simple profiler thread-safe,
30097         get more accurate timing info. Allow the loading of an
30098         externally-developed profiler module.
30100 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
30102         * marshal.c (mono_marshal_get_native_wrapper): improved
30103         class/byref arguments.
30104         (mono_marshal_get_native_wrapper): better string marshaling support.
30106 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
30108         * class.c: ensure .pack and .size are handled correctly and
30109         simplified layout of static fields.
30111 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
30113         * appdomain.c
30114         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
30116         * loader.c (mono_lookup_pinvoke_call): look for modules in the
30117         current directory (fix bug 44008)
30119 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
30121         * marshal.c (mono_marshal_get_native_wrapper): started support for
30122         custom marshalers.
30123         (mono_delegate_to_ftnptr): consider marshalling specifications
30125 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
30127         * reflection.c, reflection.h: emit custom marshal info.
30129 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30131         * object.c: free the GError.
30132         * icall.c: added CloseEvent_internal.
30133         * threads.[ch]:
30134         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
30135         call.
30137 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
30139         * loader.c (mono_method_get_signature): Add support for dynamic
30140         assemblies.
30142 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
30144         * reflection.c: fixed bug #43905.
30146 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30148         * class.c, domain.c, icall.c, metadata.h, object.h: support for
30149         handling TypedReference and ArgIterator.
30150         * loader.c, loader.h: added function to get signature at call site.
30152 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30154         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
30155         data readonly. Buglets and warning fixes. Some MethodSpec support.
30157 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30159         * class.h, class.c, object.c: remove relative numbering support.
30161 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
30163         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
30164         free the string, until we get a chance to fix Gtk#
30166 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30168         * marshal.c: revert last patch.
30170 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
30172         * icall.c: updates for new mono_class_vtable() not calling
30173         the type constructor anymore.
30175 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30177         * object.h, object.c: separate vtable creation from type
30178         initialization. Make running the .cctor thread safe.
30180 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
30182         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
30184 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
30186         * loader.c (mono_get_method): consider calling convention
30188 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
30190         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
30191         to return the invisible global type for a module.
30193         * reflection.c (mono_image_build_metadata): Emit global fields too.
30195 2003-05-20  Peter Williams  <peterw@ximian.com>
30197         * loader.c (mono_lookup_internal_call): Add a few newlines.
30199 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
30201         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
30202         literal strings.
30204         * appdomain.c (set_domain_search_path): Recalculate search path when
30205         AppDomainSetup.PrivateBinPath changes.
30207         * object.c (mono_class_compute_gc_descriptor): It turns out some
30208         parts of the class libs (like System.Thread) holds pointers to
30209         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
30210         to treat native int a pointer type here.
30211         
30212 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
30214         * appdomain.h, domain.c: add hashtable for jump target resolution.
30216 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
30218         * reflection.h reflection.c icall.c: Added new icalls 
30219         GetManifestResourceInfoInternal, GetModulesInternal and support
30220         infrastructure.
30222 2003-05-16  Dick Porter  <dick@ximian.com>
30224         * icall.c:
30225         * file-io.h:
30226         * file-io.c: Implement System.IO.MonoIO::GetTempPath
30228 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
30230         * object.c: mono_store_remote_field: little fix to previous patch.
30232 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30234         * class.c: add constructors to array classes.
30235         * icall.c: special case array construction for InternalInvoke (),
30237 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
30239         * class.h class.c reflection.c object.c: Added support for field
30240         defaults in dynamically generated classes.
30242 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
30244         * reflection.c: properly encode charset for ddlimport.
30246 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
30248         * threads.c: allow compiling without GC.
30250 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30252         * appdomain.h, object.c, object.h, threads.c, threads.h: added
30253         handling of thread static data.
30255 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30257         * reflection.h, reflection.c: added mono_custom_attrs_free ().
30259 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
30261         * class.c (mono_array_class_get): always set the serializable flags
30262         (mono_array_class_get): always set the SEALED attribute for array types
30264 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
30266         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
30267         attributes (fix for bug 42021).
30269 2003-05-12  Dick Porter  <dick@ximian.com>
30271         * gc.c: Don't run finalizers when the finalizer thread is
30272         finishing up, because the default domain has already been
30273         destroyed.
30275 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
30277         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
30278         value is null, we should throw an exception.   This is slightly
30279         different than the other conventions used for the constructor.
30281 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30283         * socket-io.c: fixed windows build.
30285 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30287         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
30289 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
30291         * object.c (mono_string_new_wrapper): Compatibility fix for MS
30292         compilers.
30294 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
30296         * class.c (mono_class_layout_fields): Add experimental GC aware
30297         auto layout facility. Requires class library changes to work correctly.
30299         (mono_class_setup_vtable): Avoid overriding explicit interface
30300         method implementations. Fixes iface3.exe test.
30302         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
30303         object reference.
30304         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
30305         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
30307         * metadata.h: Add new type classification macro which determines
30308         whenever the type holds an object reference.
30310 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
30312         * marshal.c (mono_marshal_get_native_wrapper): cleanups
30314 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
30316         * gc.c (finalizer_thread): Work around a GC bug.
30318 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
30320         * marshal.c (emit_struct_conv): allow unions
30322         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
30324 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
30326         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
30328 2003-05-06  Martin Baulig  <martin@ximian.com>
30330         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
30332 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30334         * socket-io.c:
30335         (Select_internal): allow NULLs, don't create arrays if not needed.
30336         Coupled with Socket.cs changes.
30338         * threadpool.c:
30339         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
30340         register a finalizer for it that will close the semaphore handle. This
30341         fixes the leak and make Lupus' test run with > 4080 loops.
30343 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
30345         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
30346         Jerome Laban (bug #42287)
30348 2003-05-02  Martin Baulig  <martin@ximian.com>
30350         * debug-mono-symfile.h
30351         (MonoSymbolFile): Moved declaration into mono-debug.h.
30352         (MonoDebugMethodJitInfo): Likewise.
30353         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
30354         argument.
30355         (_mono_debug_address_from_il_offset): Take a
30356         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
30358         * mono-debug.h
30359         (MonoDebugDomainData): New struct.
30360         (mono_debug_get_domain_data): New function.
30361         (mono_debug_add_method): Take an additional `MonoDomain *'
30362         argument.
30363         (mono_debug_source_location_from_address): Likewise.
30364         (mono_debug_il_offset_from_address): Likewise.
30365         (mono_debug_address_from_il_offset): Likewise.
30367 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
30369         * reflection.c: one more check for null type in custom attrs.
30371 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30373         * reflection.c: avoid warning (comparison is always false due to limited
30374         range of data type).
30376 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30378         * icall.c: throw an exception in Type.GetField if the argument 'name'
30379         is NULL.
30381 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
30383         * reflection.c: fixed handling of enums in named arguments to custom
30384         attributes (bug #42123).
30386 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
30388         * reflection.c: use the right array element type and handle
30389         a null for a Type argument, too.
30391 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
30393         * reflection.c: handle arrays as arguments to custom attributes.
30395 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30397         * reflection.c: handle a string value in a custom attr
30398         ctor that takes an object.
30400 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
30402         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
30403         (fix bug #42063)
30405 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
30407         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
30409 2003-04-27  Martin Baulig  <martin@ximian.com>
30411         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
30412         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
30413         MONO_DEBUGGER_EVENT_BREAKPOINT.
30414         (mono_breakpoint_trampoline_code): Removed.
30415         (mono_debugger_event_handler): The last argument is now a
30416         `guint32'.
30417         (mono_debugger_insert_breakpoint_full): Removed the
30418         `use_trampoline' argument.
30419         (mono_debugger_method_has_breakpoint): Likewise.
30420         (mono_debugger_trampoline_breakpoint_callback): Renamed to
30421         mono_debugger_breakpoint_callback(); take the method and
30422         breakpoint number as arguments.
30424 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
30426         * metadata.c: fix off by one when loading parameters attributes.
30428 2003-04-24  Martin Baulig  <martin@ximian.com>
30430         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
30432 2003-04-24  Martin Baulig  <martin@ximian.com>
30434         * mono-debug-debugger.c: Moved all code which interacts with the
30435         Mono Debugger here.
30437         * debug-mono-symfile.c: This code now just deals with the symbol
30438         file itself, the debugger code is now in mono-debug-debugger.c.
30440 2003-04-23  Martin Baulig  <martin@ximian.com>
30442         * mono-debug.c (mono_debug_source_location_from_il_offset):
30443         New method; like mono_debug_source_location_from_address(), but
30444         takes an IL offset instead of a machine address.
30446 2003-04-23  Martin Baulig  <martin@ximian.com>
30448         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
30449         `line' field; this is now computed by the debugger.
30451 2003-04-23  Martin Baulig  <martin@ximian.com>
30453         * mono-debug.[ch]: New files.  This is the new debugging interface.
30455         * mono-debug-debugger.[ch]: New files.  Moved all code which
30456         interacts with the Mono Debugger here.
30458 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
30460         * domain.c (mono_init): initialize mono_defaults.monitor_class
30462 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
30464         * reflection.c (method_encode_code): Add a spicy exception to help
30465         future compiler authors.
30467 2003-04-21  Martin Baulig  <martin@ximian.com>
30469         * icall.c
30470         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30471         Make this work with relative pathnames; g_filename_to_uri() needs
30472         an absolute filename.
30474 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
30476         * icall.c: Track name changes in Object and ValueType.
30478 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
30480         * metadata.c (mono_type_stack_size): size should be a multiple of
30481         sizeof (gpointer)
30483 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30485         * gc.c:
30486         (internal_domain_finalize): moved into mono_domain_finalize. No need
30487         to create another thread because the finalizers will be run in the
30488         finalizer thread.
30489         
30490         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
30491         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
30492         to be run (MS does this too).
30494 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
30496         * object.c (mono_class_compute_gc_descriptor): Update comment.
30498         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
30500         * image.h: Add synchronized wrapper cache.
30502         * image.c (do_mono_image_open): Initialize cache.
30504         * reflection.c (create_dynamic_mono_image): Initialize cache.
30506 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30508         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
30509         ves_icall_System_Buffer_ByteLengthInternal.
30511 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30513         * reflection.c: setup klass->nested_in earlier. Allow
30514         a dash in the assembly name.
30516 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
30518         * metadata.c (mono_type_to_unmanaged): dont access
30519         type->data.klass for MONO_TYPE_OBJECT
30520         (mono_type_to_unmanaged): consider System.Delegate class
30522 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
30524         * class.c: just setup supertypes in the proper place instead of
30525         initializing the full element class for arrays.
30527 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30529         * class.c: ensure the element class of arrays is initialized.
30530         Setup the supertype info for array classes, too.
30532 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
30534         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
30536 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30538         * Makefile.am: re-added -m option when running cygpath. This way,
30539         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
30540         separator.
30541         * mono-config.c: same codepath for locating mono config file for WIN32
30542         and the rest.
30543         * assembly.c: if mono_assembly_setrootdir is called, don't override
30544         the value set.
30546 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30548         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
30549         MONO_ASSEMBLIES variable.
30551 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
30553         * icall.c: added Assembly::GetNamespaces() icall.
30555 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30557         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
30559 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
30561         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
30562         * object.c: fixed bug in the construction of vtable for proxies
30564 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
30566         * object.c (mono_array_new): Mark mono_array_new as an icall.
30568 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30570         * class.c: fixed test for public method when overriding interfaces.
30571         Closes bug #40970.
30573 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30575         * appdomain.h, domain.c: added mono_domain_foreach() to
30576         be able to access the currently loaded appdomains.
30577         * object.c: make string interning work across sppdomains.
30578         Mark some functions for use as icalls.
30580 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30582         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30584         * reflection.h reflection.c: Allocate long living data using 
30585         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30587         * reflection.c: Double the allocation size in streams instead of
30588         increasing it, to prevent unneccesary copying on large assemblies.
30589         
30590         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30591         creation if the assembly does not have the Run flag set.
30593 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30595         * class.h: avoid the C++ keywords in header files (Jerome Laban
30596         spotted and fixed this).
30598 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30600         * object.c:
30601         (mono_unhandled_exception): fill in the arguments for the
30602         UnhandledException event. Only trigger that event for the default
30603         domain (as MS does).
30605 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30607         * object.c: Improve typed allocation stuff based on suggestions from
30608         Paolo. Also turn it on if the GC library supports it.
30610 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30612         * object.c object.h class.h: Added experimental typed allocation
30613         facility using the interfaces in gc_gcj.h.
30615         * os/gc_wrapper.h: Added new include files.
30616         
30617 2003-04-03  Martin Baulig  <martin@ximian.com>
30619         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30620         which is not yet enabled by default.
30622         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30623         functions.
30624         (mono_gc_lock, mono_gc_unlock): New static functions.
30626         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30627         functions; stop/start the world for the garbage collector.  This
30628         is using the windows API; we need to complete the SuspendThread()/
30629         ResumeThread() implementation in the io-layer to make this work on Unix.
30630         (mono_gc_push_all_stacks): New public function; tells the garbage
30631         collector about the stack pointers from all managed threads.
30633 2003-04-03  Martin Baulig  <martin@ximian.com>
30635         * object.h (MonoThread): Added `gpointer stack_ptr'.
30637         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30639 2003-04-03  Martin Baulig  <martin@ximian.com>
30641         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30643 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30645         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30646         field.last.
30648 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30650         * loader.c (mono_lookup_internal_call): Report the corlib that is
30651         out of sync.
30653 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30655         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30656         System.DBNull (it's class not valuetype).
30658 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30660         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30661         if the array method was already assigned a token (fixes bug#40646).
30663 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30665         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30666         if no assembly is given.
30668 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30670         * metadata.h: Added the new tables.
30672         * row-indexes.h: Added definitions for new tables.
30674         * metadata.c: Add schemas for new tables, and add support for
30675         computing the sizes of them.
30677         * class.c: Update for handling the new type cases.
30679 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30681         * metadata.h (MONO_TYPE_IS_VOID): new macro
30683 2003-03-31  Martin Baulig  <martin@ximian.com>
30685         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30687         * threads.c (mono_thread_new_init): Call `thread_created' in the
30688         mono_thread_callbacks.
30690 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30692         * loader.h: added marshalbyrefobject_class to mono_defaults
30693         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30694         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30695           generation of output parameters.
30696           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30697         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30698           contextbound and the target object belongs to the context of the caller.
30699         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30700         * object.c: Implemented support for interfaces and abstract classes
30701           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30702           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30704 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30706         * class.h class.c (mono_class_is_subclass_of): New function.
30707         
30708         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30709         routines for most common case (calls from ArrayList::ToArray).
30711         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30712         routine so programs which call Environment::Exit() can be profiled.
30714         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30715         Added MONO_ARCH_SAVE_REGS.
30717         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30719 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30721         * blob.h: Add a couple of new MonoType types definitions.
30723         * tabledefs.h: Add a couple of new call convs.
30725 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30727         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30728         the layout of the class.
30730         * reflection.c (alloc_table): double the size on overflow to avoid
30731         unnecessary copying.
30733         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30734         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30735         null so it can be garbage collected.
30736         
30737 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30739         * reflection.c (mono_reflection_get_type): Return the resolved type
30740         only if it is in the assembly we searched.
30742         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30744         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30745         method.
30747 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30749         * appdomain.c:
30750         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30751         the right one is 'file:///blah', but MS allows it.
30752         * assembly.c:
30753         (mono_assembly_open): allow 'file://blah'
30755         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30757 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30759         * socket-io.c: fixes bug #40310.
30761 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30763         * reflection.c (mono_reflection_parse_type): handle deeply nested
30764         types correctly.
30766         * reflection.c (mono_image_create_token): Use unique token values
30767         since they will be put into a hash table.
30769         * class.c (mono_class_setup_vtable): If a method occurs in more than
30770         one place in the vtable, and it gets overriden, then change the
30771         other occurances too.
30773         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30774         object as return type.
30776 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30778         * icall.c: Deleted "ToString" implementation for double and float
30779         because they are full implemented in managed code.
30781 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30783         * reflection.c, reflection.h: implemented and exported functions
30784         to retrieve info about custom attributes.
30786 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30788         * appdomain.c: moved Uri handling to assembly.c
30789         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30790         work when using a file Uri in *nix and windows.
30792         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30793         GetReferencedAssemblies.
30795 2003-03-18  Dick Porter  <dick@ximian.com>
30797         * icall.c: Rename a couple of internal calls
30799         * threads.c: Set the thread state to Stopped when a thread exits.
30800         Fixes bug 39377.
30802 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30804         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30805         New icall.
30807         * object.c (mono_class_vtable): fix warning.
30809 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30811         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30813         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30814         memory.
30815         (method_encode_clauses): Create exception info structures in the right
30816         order.
30817         (mono_reflection_setup_internal_class): Initialize supertypes field.
30819         * class.c object.c: Handle interfaces which implement other interfaces 
30820         correctly.
30822         * class.h class.c: Move the supertypes array initialization code into 
30823         a separate function so it can be used for dynamic types too. Also call
30824         it earlier, in mono_class_init(), since it can be used before the
30825         type is initialized.
30827 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30829         * Makefile.am:
30830         * assembly.c:
30831         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30833         * appdomain.c:
30834         * appdomain.h:
30835         * marshal.c:
30836         * object.c: remove warnings.
30838 2003-03-13  Martin Baulig  <martin@ximian.com>
30840         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30841         (MonoDebugLexicalBlockEntry): New types.
30843         * debug-mono-symfile.c
30844         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30846 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30848         * process.c: ret can be any non-zero value accroding to MS doc.
30850 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30852         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30853         fixing a warning for a miss-used prototype, would have cause
30854         random memory corruption.
30856 2003-03-07  Martin Baulig  <martin@ximian.com>
30858         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30859         getting really annoying ....
30861 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30863         * reflection.c (fixup_method): added support for array methods.
30865 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30867         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30868         (pointed out by Michael Adams).
30870 2003-03-04  Dick Porter  <dick@ximian.com>
30872         * icall.c: Temporarily reverted the Double and Single ToString()
30873         change, because it broke nunit.
30875 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30877         * object.h, threads.h: make include files compatible with C++
30878         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30880 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30882         * icall.c: Erased ToString helper functions for Double and Single.
30883         Now, that implementations ar all in managed code (Double and Single
30884         Formatters).
30886 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30888         * appdomain.c: Added method for initializing the default context of
30889         a domain. Added internal call for getting the default context.
30890         * appdomain.h: Added context variable in MonoDomain struct.
30891         * domain.c: mono_domain_set also sets the default context of the domain
30892         * icall.c: Mapped internal method InternalGetDefaultContext.
30893         * object.c: mono_object_get_virtual_method returns always a remoting
30894         wrapper if the object is a transparent proxy.
30895         mono_runtime_invoke_array: when creating an object by calling the
30896         constructor, if the created object is a proxy, then the constructor should
30897         be called using the a remoting wrapper.
30899 2003-03-03  Dick Porter  <dick@ximian.com>
30901         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30902         variable so it compiles on solaris.  Problem spotted by
30903         Christopher Taylor <ct@cs.clemson.edu>
30905 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30907         * appdomain.c:
30908         (get_info_from_assembly_name): don't leak value.
30910         * icall.c:
30911         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30912         result.
30914 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30916         * assembly.c: export mono_image_load_references ().
30917         * class.c: handle function pointers. mono_class_from_name() now
30918         supports nested type names directly.
30920 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30922         * reflection.h reflection.c: Encode already created dynamic methods 
30923         and fields correctly as a DEF instead of a REF.
30925         * reflection.c: Get rid of the force_ref argument to 
30926         mono_image_typedef_or_ref since it was wrong in the first place.
30928         * string-icalls.c: add error checking to string constructors according
30929         to the MSDN docs.
30931         * reflection.c: Emit types in the order their TypeBuilders were 
30932         created. Previously, a new table index was assigned to each type before
30933         the tables were emitted. This was wrong because the signature blob
30934         might already refer to a type by its original table index.
30936 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30938         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30939         change.
30940         
30941 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30943         * Makefile.am: make assemblies dir have \ instead of / on windows.
30945 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30947         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30948         iterate over the NESTEDCLASS table using a linear search since the
30949         table is not guaranteed to be sorted by the secondary key.
30951         * class.c (mono_class_create_from_typedef): fixed up call to
30952         mono_metadata_nesting_typedef.
30953         
30954 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30956         * marshal.c (mono_string_to_byvalstr): clear the memory as
30957         suggested by Jerome Laban <jlaban@wanadoo.fr>
30959 2003-02-26  Dick Porter  <dick@ximian.com>
30961         * process.c: Cope with padding in .rsrc blocks
30963 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30965         * metadata.h: reverted the filter_len change, it breaks reflection
30966         
30967 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30969         * metadata.h: added a new field to store the filter_len
30970         
30972 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30974         * reflection.c: handle custom attributes for types and members
30975         created with Reflection.Emit (bug#38422).
30977 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30979         * reflection.c: define RTSpecialName automatically for constructors for
30980         compatibility with MS.NET.
30982         * reflection.c (mono_reflection_create_runtime_class): initialize
30983         nested_in field of dynamically created classes.
30985 2003-02-22  Martin Baulig  <martin@ximian.com>
30987         * debug-mono-symfile.h: Incremented version number.
30989 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30991         * object.h icall.c process.c: fix warnings.
30993 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30995         * appdomain.h appdomain.c:
30996         (mono_domain_try_type_resolve): split the 
30997         name_or_tb argument into a name and a tb argument.
30998         (mono_domain_has_type_resolve): new function to check whenever the
30999         application has registered a TypeResolve event handler.
31000         
31001         * icall.c reflection.h reflection.c: move the type resolve logic into
31002         mono_reflection_get_type () so it will be invoked when 
31003         Assembly::GetType () is called.
31005         * reflection.c:
31006         (mono_reflection_get_type): renamed to get_type_internal.
31007         (mono_reflection_get_type): fixed type name generation so it works 
31008         for nested types too.
31009         (mono_reflection_get_type): call has_type_resolve () to avoid the 
31010         costly type name generation if there is no resolve event handler.
31012 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31014         * class.c, image.c: load exported types from file references.
31016 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
31018         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
31019           used to cache the managed methods used to create proxies and make 
31020           remote invocation of methods.
31021         * class.h: Added in MonoVTable a flag to indicate that a class needs 
31022           to be remotely created.
31023         * object.c: Modified the method mono_class_vtable(). It now initializes 
31024           the remote flag of the vtable. Modified mono_object_new_specific(), 
31025           so now it checks the remote flag.
31026         * icall.c: Added a couple of internal methods, one for enabling instance 
31027           creation interception for a type, and one for creating objects bypassing
31028           the remote check.
31030 2003-02-18  Martin Baulig  <martin@ximian.com>
31032         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
31033         New interncall to get a method's metadata token.
31035         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
31036         New interncall for the debugger.
31038 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
31040         * class.c (mono_class_setup_vtable): allocate supertype array
31042 2003-02-18  Martin Baulig  <martin@ximian.com>
31044         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
31046 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31048         * reflection.c:
31049         (assembly_name_to_aname): jump over unknown properties (i've found
31050         something like: 'type, assembly, version=xxx, custom=null, public...',
31051         so now will ignore custom=null and still get the rest of the values).
31053 2003-02-17  Dick Porter  <dick@ximian.com>
31055         * threads.c: Have Thread.Start() wait for a semaphore to signal
31056         that the thread has set up all its local data.  This fixes bug
31057         34323, where Abort() raced the new thread's TLS data.
31059         Also removes the handle_store() call from start_wrapper, because
31060         threads are now always created suspended and there is no longer a
31061         race between the parent and child threads to store the info.
31063 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
31065         * image.c: explain the #- heap issue in a message, hopefully
31066         avoiding FAQs on mono-list.
31068 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31070         * icall.c:
31071         (GetEntryAssembly): if the domain has not invoked
31072         AppDomain.ExecuteAssembly yet, return the assembly of the default
31073         AppDomain.
31075 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
31077         * class.c (mono_ldtoken): make it work in dynamic assemblies.
31079 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
31081         * metadata.c, reflection.c: simple speedup to type hash
31082         and equals code.
31084 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
31086         * image.c, image.h, class.c, assembly.c: move module loading
31087         to MonoImage. When loading metadata, consider alignemnet from
31088         the start of metadata, not from the metadata address in memory.
31090 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
31092         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
31093         AssemblyBuilder objects. Factored out custom attribute creation into
31094         a separate function.
31095         (create_custom_attr): new function to create custom attributes.
31097 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
31099         * Makefile.am: Got tired of typing the full pathname to pedump.
31100         Until there is another option, am installing this.
31102 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
31104         * class.c (class_compute_field_layout): always set field->parent 
31105         (mono_ldtoken): use mono_defaults.fieldhandle_class;
31107 2003-02-11  Dick Porter  <dick@ximian.com>
31109         * threads-types.h:
31110         * monitor.c: Rewrote Monitor, making lock much faster and
31111         Pulse/Wait work as specified.  Also uses much fewer handles, and only
31112         creates them as needed.
31114         * exception.c: Added SynchronizationLockException
31116         * threads.c: Deleted old Monitor implementation.  The new one is
31117         in a new file.
31119 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
31121         * class.c: handled TypedReference type code. Set the correct size for
31122         class data. Setup interface_offsets for interface classes, too.
31124 2003-02-09  Martin Baulig  <martin@ximian.com>
31126         * debug-mono-symfile.h: Reflect latest symbol writer changes.
31128 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
31130         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
31131         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
31132         * object.c: fixed mono_object_get_virtual_method () for interfaces.
31133         * verify.c: check for code that runs after the end of the method.
31135 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31137         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
31138         "System.Math::Round2".
31139         * sysmath.h: Added Floor, Round and Round2 definitions.
31140         * sysmath.c: Modified certain functions that were not 100% compliant
31141         with MS.NET (math precision) and added the implementation of Floor,
31142         Round and Round2.
31144 2003-02-07  Martin Baulig  <martin@ximian.com>
31146         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
31148 2003-02-07  Martin Baulig  <martin@ximian.com>
31150         * debug-mono-symfile.c: Reflected latest symwriter changes.
31151         (mono_debug_create_mono_symbol_file): Removed.
31152         (mono_debug_open_mono_symbol_file): Take an argument which
31153         specifies whether to create a dynamic symbol file.
31155 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
31157         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
31159 2003-02-05  Martin Baulig  <martin@ximian.com>
31161         * reflection.c (mono_image_build_metadata): Make this public,
31162         protect it against being called multiple times, don't create
31163         resources and don't build the compressed metadata here.
31164         (mono_image_create_pefile): Do this here.
31166         * icall.c
31167         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
31169 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31171         * socket-io.c: fixed bug #36322.
31173 2003-02-06  Piers Haken <piersh@friskit.com>
31175         * appdomain.[ch]:
31176         * class.h:
31177         * debug-mono-symfile.c:
31178         * icall.c:
31179         * loader.c:
31180         * mono-config.c:
31181         * monosn.c:
31182         * reflection.c:
31183         * socket-io.c: warning cleanups
31185 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
31187         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
31188         function. works like remoting invoke, but does a check for the Proxy first.
31190 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
31192         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
31194 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
31196         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
31197         array of pointers.
31198         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
31199         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
31201         * object.c (mono_store_remote_field_new): used by the new jit
31202         instead of mono_store_remote_field
31203         (mono_load_remote_field_new): used by the new jit
31204         instead of mono_load_remote_field
31206 2003-02-05  Patrik Torstensson
31208         * appdomain.c: changed unload to take the domain id instead
31209         of domain
31210         
31211         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
31214 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31216         * appdomain.c: don't look for assemblies in ApplicationBase if
31217         PrivateBinPathProbe is set.
31219 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31221         * object.c: make the first argument in main_args contain the absolute
31222         path to the assembly. Fixes bug #37511.
31224 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31226         * icall.c: get correct UTC offset for countries not using daylight
31227         time saving. Fixes bug #30030.
31229 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31231         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
31232         and 1 are the family).
31234 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
31236         * icall.c (ves_icall_InternalExecute): removed wrong assertion
31238         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
31240 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
31242         * reflection.c: added support for SignatureHelper tokens, which is
31243         needed by the Calli opcode.
31245         * reflection.h: track changes to SignatureHelper class.
31247         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
31249 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31251         * appdomain.c: fixed loading assemblies from PrivateBinPath.
31253 2003-02-03  Patrik Torstensson
31254         * appdomain.[c|h], domain.c : 
31255          - Added support for getting a domain via domain id
31256          - Support for setting and getting domain from System.AppDomain 
31257            (used in cross appdomain channel)
31258          - Added support for get/set for a MonoAppContext on a thread 
31259            (Context class in System.Runtime.Remoting.Contexts),
31260          - Removed hack in Get/SetData and ExecuteAssembly.
31261         
31262         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
31263         the managed world to get control when a proxy is created.
31265         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
31266         
31267 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
31269         * icall.c
31270         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31271         Populate the codebase field as well.
31273 2003-02-02  Martin Baulig  <martin@ximian.com>
31275         * debug-mono-symfile.c
31276         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
31277         (mono_debug_symfile_add_method): Allow interncalls.
31279 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31281         * icall.c: throw parse exception if strtod fails or the string is empty.
31283 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
31285         * marshal.c: handle object type separately from defined
31286         class types.
31288 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
31290         * marshal.c: handle NATIVE_LPSTR for strings when it's
31291         explicitly specified.
31293 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
31295         * reflection.c, reflection.h, icall.c: setup the reflection
31296         handle cache for ModuleBuilders and AssemblyBuilders.
31298 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
31300         * reflection.c (reflection_methodbuilder_to_mono_method): set
31301         pinvoke flag
31303 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31305         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
31307 2003-01-29  Dick Porter  <dick@ximian.com>
31309         * threads.c: No need for the fake_thread kludge now that Thread
31310         doesn't run a class constructor
31311         
31312 2003-01-29  Dick Porter  <dick@ximian.com>
31314         * threads.c: Use g_direct_hash instead of the rather bogus
31315         g_int_hash
31317 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
31319         * marshal.c (mono_marshal_get_native_wrapper): add check for null
31320         (fix pinvoke12.exe)
31321         (mono_marshal_get_struct_to_ptr): generate valid IL code
31322         (mono_marshal_get_ptr_to_struct): generate valid IL code
31323         (*): correctly set sig->pinvoke, we need to memdup the signature
31324         to do that
31326 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31328         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
31329         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
31331 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31333         * profiler.c: provide more callers information.
31335 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
31337         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
31339         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
31341         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
31343 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31345         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
31346         exception instead of going into an infinite loop on dates which it 
31347         can't yet handle.
31349         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
31350         out-of-range exception if needed.
31352         * class.c (mono_class_setup_vtable): allow a virtual method to provide
31353         an implementation for an interface method and to override an inherited
31354         method at the same time. 
31355         Imagine a scenario when a virtual method is used to override a
31356         virtual abstract method in a parent class, and this same method 
31357         provides an implementation for an method inherited from an interface. 
31358         In this case, the interface resolution code will set im->slot, which 
31359         means that the virtual method override pass will skip this method 
31360         which means a pointer to the abstract method inherited from the parent
31361         will remain in the vtable of this non-abstract class.
31363         * class.c: (mono_class_setup_vtable): continue search for a real 
31364         method if only an abstract method is found.     
31366 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31368         * reflection.c: add size to encoding for ByValStr and ByValArray
31369         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
31371 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31373         * class.c (mono_class_setup_vtable): pass the override info as an
31374         argument.
31376         * class.c (mono_class_setup_vtable): set the slot of overriding methods
31377         correctly.
31378         
31379         * reflection.c (ensure_runtime_vtable); add support for method 
31380         overrides.
31381         
31382 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31384         * reflection.c (resolution_scope_from_image): Hack to work to work with
31385         dynamic assemblies.
31387         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
31388         added a 'force_ref' argument to force this function to allways return 
31389         a TypeRef. This is needed by mono_image_get_memberref_token ().
31390         
31391 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31393         * reflection.c (mono_image_get_type_info): interfaces really don't have
31394         a parent.
31396         * reflection.c (mono_image_basic_init): fill out missing fields of
31397         image structure.
31399         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
31400         dynamic assemblies. This is required so dynamic assemblies show up in
31401         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
31402         Type::GetType() etc. This is consistent with MS behaviour.
31404         * image.c image.h reflection.c: add newly created classes to the name 
31405         cache so mono_class_get () will find them.      
31407 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31409         First part of changes to get IKVM.NET running under mono.
31410         
31411         * appdomain.h, appdomain.c: added new function 
31412         mono_domain_try_type_resolve() which will emit TypeResolve events. 
31413         This function will call AppDomain::DoTypeResolve to do the actual work.
31415         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
31416         moved existing code dealing with dynamic tokens to a new function 
31417         called mono_reflection_lookup_dynamic_token (). This function will 
31418         raise TypeResolve events when appropriate. Since reflection.c is not 
31419         part of libmetadata, a new hook function called 
31420         mono_lookup_dynamic_token() is added to class.c which will call this.
31422         * assembly.h assembly.c: make the invoke_load_hook function public,
31423         so it can be called for dynamic assemblies.
31425         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
31427         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
31428         type isn't found.
31430         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
31431         MonoGHashTable, since it contains pointers to objects which the GC 
31432         needs to track.
31434         * assembly.c (search_loaded): remove unused variable.
31435         
31436 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
31438         * object.c: fixed issue exposed by gcc-generated IL programs
31439         that use RVA data for pointers.
31441 2003-01-25  Martin Baulig  <martin@ximian.com>
31443         * threads.c (start_wrapper): Moved the initialization of
31444         `start_func' above the mono_new_thread_init() call to which we
31445         pass it as argument.
31447 2003-01-24  Martin Baulig  <martin@ximian.com>
31449         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
31450         the MonoThread pointer.
31452 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
31454         * icall.c: Rename `PowImpl' to Pow.
31456 2003-01-23  Dick Porter  <dick@ximian.com>
31458         * threads.c (start_wrapper): Create a Thread object if needed, so
31459         the Main() thread can do the class initialisation in a subthread
31460         that has been set up to allow managed code execution.
31462         Pass the thread ID instead of the MonoThread pointer to the thread
31463         start and attach callbacks.  This change is required, because the
31464         jit thread start callback must be called _before_ the Thread
31465         object can be created.
31466         
31467         (mono_thread_init): Removed much object creation code that is no
31468         longer needed.  No managed code is called from here now.
31470         * object.c (mono_runtime_exec_managed_code): Create a subthread
31471         for Main, and call back to the runtime to use it.
31472         Set the exit code when Main exits.
31474         * gc.c: Make sure domain finalisation happens in a subthread.
31475         Re-enable threaded GC, fixing bug 31333 (again).
31477         * environment.c: System.Environment internall calls (so far just
31478         ExitCode is here, the others are still in icall.c)
31480         * appdomain.c (mono_runtime_cleanup): All threads running managed
31481         code should have finished before mono_runtime_cleanup() is
31482         reached, so no need to clean up threads.
31484 2003-01-22  Martin Baulig  <martin@ximian.com>
31486         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
31487         `gpointer func' arguments.      
31488         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
31489         but added `MonoThread *thread' argument.
31490         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
31492         * threads.c (mono_new_thread_init): Added `gpointer func' argument
31493         and pass it to the mono_thread_start_cb callback.
31494         (mono_install_thread_callbacks): New public function to install a
31495         set of callbacks which are set by the debugger.
31496         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
31498 2003-01-22  Martin Baulig  <martin@ximian.com>
31500         * Makefile.am: Install debug-mono-symfile.h.
31502 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
31504         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
31506 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
31508         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
31509         * class.c (mono_ptr_class_get): correctly set access levels of pointers
31510         (mono_array_class_get): correctly set access levels of arrays
31512 2003-01-20      Patrik Torstensson
31513         * image.h (MonoAssemblyName): changed major, minor, build, revision
31514         from signed to unsigned.
31516 2003-01-20  sean kasun <skasun@azstarnet.com>
31518         * reflection.c (load_cattr_value): Now this handles
31519         MONO_TYPE_SZARRAY.  Fixes bug #35629
31521 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
31523         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
31524         integer value
31526 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31528         * decimal.c: fixed bug #26056.
31530 2003-01-17  Martin Baulig  <martin@ximian.com>
31532         * gc.c: Raise an ExecutionEngineException instead of using g_error().
31534 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31536         * exception.[ch]:
31537         (mono_get_exception_type_initialization): new function.
31539         * object.c: throw a TypeInitializationException when an exception is
31540         thrown invoking the class constructor.
31542 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31544         * reflection.c: fixed attribute reading.
31546 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31548         * icall.c:
31549         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
31550         provided, look for the type in the calling assembly and then in
31551         mscorlib; if the assembly name is provided, only try that one.
31553 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
31555         * object.c: register the vtable before there is a chance it's
31556         queried again recursively.
31558 2003-01-13  Duncan Mak  <duncan@ximian.com>
31560         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
31561         gc-internal.h. 
31562         
31563 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
31565         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
31567 2003-01-11  Martin Baulig  <martin@ximian.com>
31569         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31570         this to 20 for the release.
31572 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31574         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31576         * loader.c (mono_method_get_marshal_info): bug fix
31578         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31579         structures with explicit layout
31581 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31583         * profiler.c: made the output more readable (and sorted). 
31584         Added caller information for the allocation profiler.
31586 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31588         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31590 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31592         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31593         to get value types.
31594         
31595 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31597         * object.c, profiler.h, profiler.c, profiler-private.h:
31598         Added object allocation profiler.
31600 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31602         * reflection.h, reflection.c: handle global methods.
31603         Compress blob entries.
31605 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31607         * marshal.c: fix compilation.
31609 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31611         * loader.c (mono_method_get_marshal_info): impl.
31613         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31615 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31617         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31618         for reference types.
31620 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31622         * loader.c: fixed off by one error in loaded parameter names.
31624 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31626         * marshal.c (mono_marshal_get_icall_wrapper): like
31627         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31628         instead of a MonoMethod.
31630 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31632         * decimal.c: fixed bug #36537.
31634 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31636         * marshal.c: throw a missing method exception if a
31637         P/Invoke method is not found.
31639 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31641         * icall.c: allow a null this for constructors.
31643 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31645         * icall.c: raise the proper exceptions if the arguments to the
31646         internal Invoke are incorrect.
31648 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31650         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31652 2003-01-03  Martin Baulig  <martin@ximian.com>
31654         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31656 2002-12-31  Martin Baulig  <martin@ximian.com>
31658         * debug-mono-symfile.c: Completely rewrote the type section.
31659         Instead of using individual malloc()ed fields, we use one big
31660         continuous memory area and offsets into this area.
31661         See the comments in the source code for details.
31663 2002-12-30  Martin Baulig  <martin@ximian.com>
31665         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31667 2002-12-30  Martin Baulig  <martin@ximian.com>
31669         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31670         line number table in this data blob instead of using an external
31671         pointer.
31673 2002-12-28  Martin Baulig  <martin@ximian.com>
31675         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31677 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31679         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31680         as a boxed return type.
31682 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31684         * appdomain.c
31685         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31686         g_build_filename to properly get separators on the filename created.
31688         * object.h: Small change, introduce MonoMarshalByRefObject to
31689         track the layout of that structure in the C# universe as we make
31690         changes there.
31692 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31694         * object.c: removed assert to allow static fields on interfaces.
31695         * loader.c: a TypeSpec may be used for any type, not just arrays.
31697 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31699         * class.c, class.h: added mono_class_array_element_size ().
31700         Ignore static methods in interfaces.
31702 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31704         * threads.c: fixed the build under cygwin.
31706 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31708         * reflection.c: handle nullref constants. Allocate keys for
31709         reflection handles with the GC.
31711 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31713         * threads.c, threads.h: added mono_thread_get_abort_signal()
31714         to get a suitable signal for thread abort.
31716 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31718         * metadata.c: fix handling of ExportedType table.
31720 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31722         * icall.c: added WriteWindowsDebugString internal call.
31724 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31726         * reflection.h: added fields to match C# implementation.
31728 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31730         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31732 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31734         * gc.h, gc-internal.h: Rename header for GC internal calls to
31735         gc-internal.h from gc.h as to not clash with Boehm GC having its
31736         header installed as <gc.h> in outside include paths.
31737         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31738         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31740 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31742         * icall.c: assign minor, build and revision in FillName.
31744 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31746         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31747         Added support for running code generated by Reflection.Emit.
31749 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31751         * appdomain.c: check for NULL argument in LoadFrom.
31753 2002-12-10  Dick Porter  <dick@ximian.com>
31755         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31757 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31759         * appdomain.c: fix buglet when building exe file name.  Handle full
31760         assembly name (needed after latest changes to AssemblyName).
31761         * image.c:
31762         (mono_image_close): free some hashtables.
31764 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31766         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31767         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31768         on some systems (redhat 7.3) 
31770 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31772         * threads.c: delete the critical section of a sync block,
31773         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31775 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31777         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31779 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31781         * appdomain.[ch]: handle the assembly preload event to try loading the
31782         assemblies using the paths we have in the current domain.
31784         * assembly.[ch]: created an assembly preload hook that is called to try
31785         loading the assembly by other means that the ones provided here.
31787         * domain.c: initialize the domain search path.
31789         From now on, assemblies (TODO: except corlib and System) are loaded
31790         according to these rules when using mono_assembly_load ():
31792                 1. It tries to load the assembly from the ApplicationBase
31793                 of the current domain appending .dll and .exe (TODO: have to
31794                 try loading from name/name.dll and name/name.exe).
31796                 2. It tries the search path specified in PrivateBinPath for the
31797                 current domain (if any).
31799                 3. Previous behavior.
31801 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31803         * icall.c: implemented GetInterfaceMap() related icall.
31804         * domain.c, loader.h: load MethodInfo in mono_defaults.
31806 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31808         * gc.c: disable the finalizer thread for now, untill all the issues
31809         with it are resolved.
31811 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31813         * string-icalls.c: handle embedded nulls in string ctor when the
31814         length is specified.
31816 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31818         * class.c: look for explicit interface implementation in parent
31819         classes, too.
31821 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31823         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31825 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31827         * gc.c: protect handles with a critical section.
31829 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31831         * icall.c:
31832         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31833         parameters. If no assembly specified, try getting the type from all
31834         the assemblies in the current domain, else, load the assembly and get
31835         the type from it.
31837 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31839         * marshal.c: applied patch from Aleksey Demakov that fixes
31840         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31842 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31844         * icall.c: fixed get_location.
31846 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31848         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31849         declarations to make it work with older gcc. 
31851         * loader.c (mono_get_method): set signature->pinvoke for native calls
31853 2002-11-20  Dick Porter  <dick@ximian.com>
31855         * threads.c (mono_thread_init): Set the main thread's handle
31857 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31859         * gc.c: allow compilation without GC support. Changed to match the
31860         mono coding style.
31862 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31864         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31866 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31868         * reflection.c: set a public key token on the core assemblies.
31870 2002-11-18  Dick Porter  <dick@ximian.com>
31872         * threads.c: Split out some thread initialisation so that other
31873         files can set the start callback function.
31875         * gc.c: Run finalisers in a separate thread, to avoid stack
31876         overflow.  Fixes bug 31333.
31878         * appdomain.c: Set up GC finalisation thread.
31880         * reflection.c: 
31881         * object.c: 
31882         * domain.c: Use gc.h macros for GC_malloc
31883         
31884 2002-11-15  Dick Porter  <dick@ximian.com>
31886         * threadpool.c: 
31887         * threads.c:
31888         * appdomain.c: Removed mono_runtime_init_with_attach(),
31889         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31890         merging the extra parameter with the existing function.  Removed
31891         unneeded code in mono_thread_attach().
31893 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31895         * image.c (mono_image_loaded_by_guid): a method to get loaded
31896         images by guid. 
31897         (load_metadata_ptrs): we store the guid as string.
31899 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31901         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31903         * metadata.c (mono_guid_to_string): imported method form Zoltan
31904         Varga (slightly modified)
31906         * assembly.c (mono_assembly_open): load precompiled code
31908         * loader.h (MonoMethod): we store the method token for use in the
31909         aot compiler. 
31911 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31913         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31914         the hook function called when an assembly is loaded.
31915         
31916         * domain.c: Modified file.
31917         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31919         Fixes bug #33196.
31921 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31923         * reflection.c: Map PEFileKind to the value expected by the WinNT
31924         image loader. 
31926 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31928         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31929         Read until the buffer is filled completely.
31931 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31933         * icall.c: implemented MonoType.InternalGetEvent ().
31935 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31937         * appdomain.c: implemented InitAppDomainSetup. Delayed
31938         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31939         the entry_assembly.
31941         * assembly.c: base_dir is now an absolute path ending with
31942         G_DIR_SEPARATOR.
31944         * icall.c: modified get_location according to the above changes.
31946         * object.c: init AppDomain.SetupInformation for the default domain after
31947         we have the entry assembly.
31949         * domain.c: when unloading a domain, setup = NULL.
31951 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31953         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31955 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31957         * object.h, object.c: introduced mono_object_get_virtual_method ()
31958         to lookup the method invoked on an object when a callvirt is done on
31959         a method.
31960         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31962 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31964         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31965         current domain when loaded an assembly and failed to load it.
31967         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31969 2002-10-31  Dick Porter  <dick@ximian.com>
31971         * icall.c: 
31972         * file-io.h: 
31973         * file-io.c: Return the error status in a parameter, as the
31974         GetLastError() value has long since been blown away if we try and
31975         look it up in a subsequent internal call invocation.  Delete the
31976         GetLastError() internal call, because it's useless.
31978 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31980         * class.[ch]: added cast_class to fix bug 29517
31982 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31984         * marshal.c: create valid IL code in the filter clause:
31985         the new JIT is less forgiving:-)
31987 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31989         * icall.c: removed get_property internal call.
31991 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31993         * appdomain.h domain.c: Added an ID to appdomains.
31994         
31995         * threads.c threads.h icall.c: Implement icall
31996         Thread:GetDomainID(), and remove unused icall 
31997         CurrentThreadDomain_internal.
31999 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32001         * icall.c: Don't recurse through the base types in GetConstructor.
32002         Fixes bug #32063. 
32004 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32006         * mempool.h, mempool.c: added mono_mempool_empty() and
32007         mono_mempool_stats().
32009 2002-10-23  Dick Porter  <dick@ximian.com>
32011         * file-io.c: 
32012         * file-io.h: 
32013         * icall.c: Added MonoIO.GetFileType internal call
32015 2002-10-17  Dick Porter  <dick@ximian.com>
32017         * appdomain.c (mono_runtime_cleanup): Don't signal the async
32018         delegate semaphore before waiting for all threads to finish,
32019         because new threads can also call async delegates.  Fixes bug
32020         32004.
32022         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
32023         of 3 seconds, in case another async job is queued.  (This part is
32024         needed because the bug fix reintroduced the 3s exit lag.)  This
32025         makes the mono_runtime_shutdown flag superfluous.
32027 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
32029         * reflection.c: include ehader size in method section headers.
32030         Really check for suplicated modules entries.
32032 2002-10-17  Martin Baulig  <martin@gnome.org>
32034         * debug-mono-symfile.c: Added back support for locals.
32036 2002-10-14  Martin Baulig  <martin@gnome.org>
32038         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
32039         MONO_TYPE_VOID.
32041 2002-10-14  Martin Baulig  <martin@gnome.org>
32043         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
32044         mono_class_get() instead of looking in the class cache. 
32046 2002-10-13  Martin Baulig  <martin@gnome.org>
32048         * debug-mono-symfile.c: Set version number to 28, include the
32049         signature in method names.
32051 2002-10-13  Martin Baulig  <martin@gnome.org>
32053         * debug-mono-symfile.h: Set version number to 27.
32055 2002-10-11  Martin Baulig  <martin@gnome.org>
32057         * gc.c: Don't register/unregister NULL pointers as disappearing links.
32059 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32061         * metadata.c, metadata.h: added helper function to allocate signatures.
32063 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32065         * icall.c: added internal call to get the location of machine.config.
32067 2002-10-08  Martin Baulig  <martin@gnome.org>
32069         * debug-mono-symfile.c: Ignore classes with a pending init for the
32070         moment.
32072 2002-10-03  Dick Porter  <dick@ximian.com>
32074         * threads.c: Freebsd pthread_t is a pointer
32076 2002-10-03  Dick Porter  <dick@ximian.com>
32078         * socket-io.c: Implemented GetHostName_internal
32080 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32082         * mono-config.c:
32083         (mono_config_parse_file): don't leak the text.
32085 2002-10-02  Martin Baulig  <martin@gnome.org>
32087         * debug-mono-symfile.c: Added support for methods.
32089 2002-10-01  Martin Baulig  <martin@gnome.org>
32091         * debug-mono-symfile.c: Don't emit methods and line numbers for
32092         the dynamic symbol file, just write the type table.  We can easily
32093         have an external helper program which creates a symbol file for an
32094         IL file.        
32096 2002-10-01  Dick Porter  <dick@ximian.com>
32098         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
32099         Only add the handle to the cleanup array when we're about to
32100         launch the thread.  Bug 31425 deadlocked when the test was run on
32101         mono under w32.
32103 2002-10-01  Martin Baulig  <martin@gnome.org>
32105         * debug-mono-symfile.c: Added support for properties.
32107 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32109         * reflection.c: unaligned store fix from Mark Crichton
32110         <crichton@gimp.org>.
32112 2002-09-27  Martin Baulig  <martin@gnome.org>
32114         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
32115         New interncall.
32117 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32119         * assembly.h, assembly.c: use a sane API to hook into the assembly
32120         loading process instead of a useless special-purpouse hack
32121         (ngen needs a hook, too, for example).
32123 2002-09-27  Dick Porter  <dick@ximian.com>
32125         * threads.c (mono_thread_init): Call GetCurrentProcess() so
32126         io-layer can set up some process handle info.  Not needed on w32,
32127         but doesn't hurt either.
32129         * process.c: Pass the program name in the second parameter to
32130         CreateProcess, so the path is searched.  Include the working
32131         directory. Implemented process name, process enumeration, and some
32132         process detail internal calls.
32133         
32134         * icall.c: Added internal calls for process lookup, and some
32135         process details
32137 2002-09-26  Martin Baulig  <martin@gnome.org>
32139         * assembly.c (mono_install_open_assembly_hook): New global
32140         function to install a function to be invoked each time a new
32141         assembly is loaded.
32142         (mono_assembly_open): Run this callback function if set.
32144         * debug-mono-symfile.c: Put back line numbers for the dynamic
32145         symbol file and also record the .il file as source file.  This
32146         allows us to install the temporary symbol file as `file.dbg' just
32147         like a compiler-generated one.
32149 2002-09-26  Nick Zigarovich <nick@chemlab.org>
32151         * Corrected typo in gc.c (BOHEM vs BOEHM).
32153 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32155         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
32156         GetProperties. Also avoid calling g_slist_length in GetProperties and
32157         GetMethods.
32159 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32161         * reflection.c: avoid unaligned stores (bug spotted by
32162         Mark Crichton  <crichton@gimp.org>).
32164 2002-09-25  Martin Baulig  <martin@gnome.org>
32166         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
32167         instead of guint64 for addresses and added prologue/epilogue info.
32169 2002-09-25  Martin Baulig  <martin@gnome.org>
32171         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
32172         store line number info.  For the dynamic symbol file, we only need
32173         to provide the JIT generated dynamic line number info for the dynamic
32174         symbol file.
32176 2002-09-25  Martin Baulig  <martin@gnome.org>
32178         * debug-mono-symfile.h: Incremented version number.
32180 2002-09-24  Martin Baulig  <martin@gnome.org>
32182         * class.c (mono_debugger_class_init_func): New global function
32183         pointer variable.
32184         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
32185         call it.
32187         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
32188         function.  This is called via the mono_debugger_class_init_func
32189         hook to add all types to the dynamic type table.
32190         (ves_icall_MonoDebugger_GetType): New interncall to get a class
32191         from its metadata token.
32193         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
32194         New interncall for the debugger.
32196 2002-09-24  Nick Drochak <ndrochak@gol.com>
32198         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
32199         before using it in case it is null.
32200         
32201 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32203         * metadata.c: allow custom modifiers in local var signatures
32204         (bug spotted by Zoltan Varga).
32206 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32208         * class.c: deal with the <Module> class that may have a NULL vtable.
32209         Eliminate warnings.
32211 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32213         * image.c, image.h: more strong name helpers.
32214         * monosn.c: more work: convert pem keys to cryptoapi format.
32216 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32218         * string-icalls.c: speedup IndexOf.
32220 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32222         * icall.c: updates from Zoltan.2.Varga@nokia.com.
32224 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32226         * icall.c: cleanup: use mono_object_domain ().
32228 2002-09-23  Martin Baulig  <martin@gnome.org>
32230         * debug-mono-symfile.c: Improved type support.
32232 2002-09-22  Martin Baulig  <martin@gnome.org>
32234         * debug-mono-symfile.c: Added support for reference types and strings.
32236 2002-09-22  Martin Baulig  <martin@gnome.org>
32238         * debug-mono-symfile.c: Started to work on the type table.
32240 2002-09-21  Martin Baulig  <martin@gnome.org>
32242         * debug-mono-symfile.c: Largely reworked the symbol table format.
32243         The symbol table is now incrementally updated each time a new
32244         method is added.  We're now also using our own magic and version
32245         so that you don't need to recompile all your classes if the
32246         dynamic table changes.
32247         (mono_debug_update_mono_symbol_file): Removed.
32248         (mono_debug_symfile_add_method): New function to add a method.
32250 2002-09-21  Martin Baulig  <martin@gnome.org>
32252         * icall.c
32253         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
32254         New interncall.
32256         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
32257         New interncall to get a method from its metadata token.
32259 2002-09-21  Martin Baulig  <martin@gnome.org>
32261         * debug-mono-symfile.c: Create type table.
32263 2002-09-20  Martin Baulig  <martin@gnome.org>
32265         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
32267 2002-09-20  Martin Baulig  <martin@gnome.org>
32269         * debug-mono-symfile.c: Provide information about params and locals.
32271 2002-09-20  Martin Baulig  <martin@gnome.org>
32273         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
32274         New interncall.
32276         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
32277         interncall to get a method from its metadata token.
32279 2002-09-20  Martin Baulig  <martin@gnome.org>
32281         * debug-mono-symfile.c: Added a few checks for method->header
32282         being non-NULL.  This should never happen, but for the moment
32283         let's use a g_warning() rather than a g_assert().
32285 2002-09-19  Mark Crichton  <crichton@gimp.org>
32287         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
32288         even if support for it isn't present.  Added an #ifdef to fix this.
32290         * socket-io.c: Added checks back for Solaris support.
32292 2002-09-19  Martin Baulig  <martin@gnome.org>
32294         * debug-mono-symfile.c (read_string, write_string): Reflect latest
32295         changes in the symbol file format.
32297 2002-09-18  Martin Baulig  <martin@gnome.org>
32299         * debug-mono-symfile.c: Set version number to 21.
32301 2002-09-18  Dick Porter  <dick@ximian.com>
32303         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
32304         on netbsd.  Fixes bug 30051.
32306 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32308         * reflection.c:
32309         (set_version_from_string): little fix.
32311 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32313         * monosn.c, Makefile.am: added strong name utility.
32314         * reflection.h, reflection.c: implemented delayed signing,
32315         locale, version and hash id assembly attributes.
32317 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32319         * loader.c, metadata.c: load param attributes in signatures.
32321 2002-09-16  Martin Baulig  <martin@gnome.org>
32323         * debug-mono-symfile.c: Added string table with all method names.
32325 2002-09-14  Martin Baulig  <martin@gnome.org>
32327         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
32328         fast method lookup.
32330 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32332         * reflection.c: record the public key token of referenced assemblies.
32334 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32336         * image.c, image.h: added functions to get the strong name and the
32337         public key of an assembly.
32338         * pedump.c: use them.
32340 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
32342         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
32344 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
32346         * marshal.c (mono_marshal_get_managed_wrapper): Added
32347         MONO_TYPE_BOOLEAN 
32349 2002-09-11  Martin Baulig  <martin@gnome.org>
32351         * gc.c: Call GC_unregister_disappearing_link() on all links when
32352         finalizing them, this is necessary to aviod a crash in boehm's
32353         finalize handler.
32355 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32357         * gc.c: handle GetTarget for finalized objects spotted and fixed by
32358         nick@chemlab.org.
32360 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32362         * icall.c: implemented MonoType::Module.
32363         * reflection.c, reflection.h: mono_module_get_object () from
32364         Tomi Pakarinen <tomi.pakarinen@welho.com>.
32366 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32368         * icall.c: ignore overridden methods in GetMethods ().
32369         Fix for FieldInfo::SetValue().
32370         * object.c: handle float/double in runtime invoke.
32372 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32374         * object.c: allow a constructor to be called again on an object.
32376 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32378         * class.h, class.c: move field layout code to it's own function and
32379         export it. Get an interface id earlier. Move fields in MonoClass
32380         so they are more cache friendly and align the bitfields.
32381         * loader.c: temporary handle get_param_names() for a runtime method.
32382         * reflection.c, reflection.h: more code to handle runtime creation of
32383         types.
32385 2002-09-09  Martin Baulig  <martin@gnome.org>
32387         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
32388         signature with the pinvoke field being set for the actual call.
32390 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32392         * icall.c: removed some unused icalls. Start of map of glib charsets
32393         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
32395 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32397         * debug-helpers.c: break infinite loop (found and fixed by
32398         Holger Arnold <harnold@gmx.de>).
32400 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32402         * icall.c: target may be null in create_delegate.
32404 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32406         * marshal.c: handle a boolean return type.
32408 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32410         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
32412 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32414         * gc.c: fix weakreferences.
32416 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32418         * icall.c: added icall to get default codepage.
32420 2002-09-03  Dick Porter  <dick@ximian.com>
32422         * threads.h: 
32423         * threads.c: Use MonoThread instead of MonoObject where
32424         apropriate.
32426         Store running thread objects in a hash table, so that we have all
32427         the info to hand when waiting for them to finish
32428         (means we don't need OpenThread() any more, so mingw builds should
32429         be fully functional again.)
32431         * verify.c:
32432         * object.h: Added thread ID to MonoThread
32434 2002-09-03  Martin Baulig  <martin@gnome.org>
32436         * icall.c (System.Reflection.Assembly::get_location): New interncall.
32438 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32440         * icall.c: fixed leak in get_temp_path. Thanks lupus.
32442 2002-09-03  Martin Baulig  <martin@gnome.org>
32444         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
32445         argument to store the end address of the disassembled instruction.
32447         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
32448         here from debug-symfile.h.
32449         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
32450         JIT into this struct.
32451         (MonoSymbolFile): Added `char *image_file' field.
32452         (MonoDebugGetMethodFunc): Removed.
32453         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
32454         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
32455         (mono_debug_find_method): New method.
32457         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
32458         create a full symbol file.
32459         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
32460         and static symbol files.
32461         (mono_debug_find_method): The symbol file keeps an internal method hash,
32462         call this to get a MonoDebugMethodInfo from a MonoMethod.
32464         * debug-symfile.[ch]: Removed.
32466 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
32468         * image.c (do_mono_image_open): Remove linker version check.
32470 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
32472         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
32473         wrappers for instance methods.
32474         
32475 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32477         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
32479 2002-08-28  Dick Porter  <dick@ximian.com>
32481         * Makefile.am: Export HOST_CC for w32 builds
32483 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32485         * file-io.c process.c: MonoString are null terminated, no
32486         need for mono_string_to_utf16() anymore.
32488 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32490         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
32492 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
32494         * icall.c, reflection.h: speedup System.MonoType.
32496 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32498         * reflection.c: allow null as the value of a string argument in
32499         custom attributes constructors.
32501 2002-08-27  Martin Baulig  <martin@gnome.org>
32503         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
32504         `trampoline_address' field.
32506 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
32508         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
32509         check (fixes bug #29486) 
32511 2002-08-27  Martin Baulig  <martin@gnome.org>
32513         * debug-mono-symfile.c: Changed the file format in a way that allows us
32514         open it read-only and to use a specially malloced area for all the
32515         dynamic data.  We can now also generate a symbol file on-the-fly if we're
32516         debugging IL code and there is no MCS generated symbol file for it.
32518 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32520         * object.c: added a define for a good string and array
32521         creation speedup (not enabled by default because we need to deal with
32522         the synch stuff).
32524 2002-08-26  Martin Baulig  <martin@gnome.org>
32526         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
32527         function to create a dynamic symbol file.  This is used by the
32528         debugger to create a symbol file for IL code on-the-fly.
32530 2002-08-26  Martin Baulig  <martin@gnome.org>
32532         * loader.c (mono_lookup_pinvoke_call): Include the error message
32533         from g_module_error() in the error message.
32535 2002-08-24  Martin Baulig  <martin@gnome.org>
32537         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
32538         function to update the symbol file.  The symbol file is mmap()ed
32539         writable, but private.  This allows us to install the symbol file
32540         together with the assembly.
32542 2002-08-24  Martin Baulig  <martin@gnome.org>
32544         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
32545         but they can read the new symbol file format which mcs is now creating.
32547         * debug-symfile.c (mono_debug_find_source_location): Moved to
32548         debug-mono-symfile.c; this is now operating on the new symbol file.
32550 2002-08-23  Martin Baulig  <martin@gnome.org>
32552         * debug-helpers.c (mono_method_desc_from_method): New function to get
32553         a MonoMethodDesc from a MonoMethod.
32555 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32557         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
32558         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
32560 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32562         * string-icalls.[ch]: make helper methods static.
32564 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32566         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
32567         types to it and to SetValueInternal.
32569         * object.c: Moved handle_enum label to its proper place. This was the
32570         f... bug! ;-)
32572         This time i compiled mcs and gtk-sharp and they both work.
32574 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32576         * icall.c: reverted partially my previous patch until 
32577         object.c:set_value handles enums correcly.
32579 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32581         * icall.c:
32582         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32583         (ves_icall_System_Environment_get_MachineName): removed warning when
32584         compiling under cygwin.
32586 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32588         * object.c: fixed field_get_value() for reference types.
32590 2002-08-22  Dick Porter  <dick@ximian.com>
32592         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32593         Don't free a buffer while it's still needed.  Patch from Jonathan
32594         Liger <Jonathan.liger@wanadoo.fr>
32596 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32598         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32599         internal call.
32601 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32603         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32604         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32606         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32607         we call unmanaged code which throws exceptions.
32609 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32611         * appdomain.h: added per-domain entry_assembly.
32612         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32613         arguments.
32614         * icall.c: Assembly::GetEntryAssembly icall.
32615         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32616         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32618 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32620         * appdomain.h, gc.c: added mono_domain_finalize ().
32622 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32624         * object.c:
32625         (mono_print_unhandled_exception): changed g_warning by g_printerr
32626         because g_log has a 1024 characters limit (yeah, i got a big stack
32627         trace). Don't print exception name, that should be in ToString 
32628         returned string.
32630 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32632         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32633         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32635 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32637         * object.c:
32638         (mono_print_unhandled_exception): after previous commit, i realized
32639         that MS calls ToString on the exception. I changed this function to
32640         do that. This way we get stack_trace for free.
32642 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32644         * object.c:
32645         (mono_print_unhandled_exception): invoke Message property instead of
32646         getting 'message' field from Exception. Don't allocate memory for
32647         'trace' and 'message' if not needed.
32649 2002-08-18  Dick Porter  <dick@ximian.com>
32651         * unicode.c: Fix asserts to match Encoder.cs checks
32653 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32655         * marshal.c: fix unaligned store issue and a few wrong
32656         opcode argument types.
32658 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32660         * icall.c: added GetUninitializedObjectInternal internal call.
32662 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32664         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32665         to the right domain.
32667 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32669         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32671         * class.c (class_compute_field_layout): set blittable to false for Strings
32673         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32675 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32677         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32678         first chunk of code to create types at runtime. Code to
32679         handle ReflectedType/DeclaringType. Make reflection handles
32680         domain specific.
32682 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32684         * class.c: set correct name in arrays.
32686 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32688         * appdomain.c (mono_domain_transfer_object): make it work with
32689         valuetypes. bug fixes.
32691 2002-08-12  Dick Porter  <dick@ximian.com>
32693         * object.h: Rename some parameters to avoid c++ keywords (Patch
32694         from Joseph Wenninger <kde@jowenn.at>)
32696 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32698         * icall.c: added icall to implement Assembly.GetFile*.
32700 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32702         * reflection.h, reflection.c: code to embed managed resources.
32704 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32706         * class.c: move all the type size stuff into
32707         class_compute_field_layout().
32709 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32711         * class.c: ensure enums have always the correct instance size.
32712         * unicode.c: remove wrong assert.
32714 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32716         * assembly.c: fix mem corruption issue.
32717         * image.h, image.c: added mono_image_get_resource () to access
32718         managed resources.
32719         * icall.c: implemented Assembly.EntryPoint property and some
32720         Managed Resources related internalcalls.
32723 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32725         * image.c, image.h: impemented mono_image_get_entry_point ().
32726         * appdomain.c: use mono_image_get_entry_point.
32728 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32730         * reflection.c: support the object type argument when loading
32731         custom attributes.
32733 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32735         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32736         String as return type.
32738 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32740         * reflection.c: fix encoding of named args for custom attrs to match
32741         the ms implementation. Read them back when instantiating custom
32742         attributes.
32744 2002-08-02  Radek Doulik  <rodo@ximian.com>
32746         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32747         by Dietmar as quick fix
32748         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32749         16 as stack size, used on more places as quick fix before Dietmar
32750         will fix it properly
32752 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32754         * object.h, object.c: added accessors for fields and properties.
32756 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32758         * class.c, class.h: made mono_class_get_field_from_name ()
32759         loop on parent types.
32760         Added mono_class_get_property_from_name ().
32762 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32764         * class.c, class.h: move the code to setup the type vtable in its own
32765         function so that it can be reused also for types created at runtime.
32766         Eliminate the "class" identifier from the header file.
32767         * reflection.c: setup the vtable for enums so that we can create
32768         objects for use in SetConstant ().
32770 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32772         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32773         instead of the delegate itself as this pointer (bug #28383)
32775 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32777         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32778         conversions.
32780 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32782         * loader.c: don't set the pinvoke bit on icalls.
32784 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32786         * debug-helpers.c (mono_method_full_name): only print a number to
32787         indicate wrapper type (so that the output is more readable in traces).
32789 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32791         * class.c (mono_class_init): include method override patch from Paolo
32793 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32795         * icall.c: fixed GetTypeCode().
32797 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32799         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32800         use real delegate invoke function to make it work with multicast
32801         delegates (fix bug# 28291).
32803 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32805         * object.c: load constant strings.
32807 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32809         * reflection.c: no magic numbers.
32810         * tabledefs.h: security action enum.
32812 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32814         * assembly.c: fix possible memory corruption.
32816 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32818         * reflection.h, reflection.c: added support for linking resources.
32819         * verify.c: check we have an updated corlib.
32821 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32823         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32824         string arrays.
32825         (mono_marshal_string_array): null terminate unmanaged string arrays.
32826         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32828 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32830         * icall.c: Type.GetType () can now return also types from the
32831         calling assembly.
32833 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32835         * loader.h, loader.c: stack walking support.
32836         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32837         GetCallingAssembly.
32839 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32841         * marshal.c: added optimisations for blittable types 
32843         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32844         (mono_class_setup_mono_type): set blittable attribute for single
32845         and double.
32847         * marshal.c (mono_string_utf8_to_builder): impl.
32848         (mono_string_builder_to_utf8): impl.
32849         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32851 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32853         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32854         (mono_marshal_get_managed_wrapper): impl. byref types
32856 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32858         * icall.c:
32859         (search_method): don't display debug message. 
32861 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32863         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32865 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32867         * appdomain.c: set the missing filename when throwing exception.
32869 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32871         * metadata.c (mono_type_size): code cleanup
32872         (mono_type_stack_size): removed some test code
32874 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32876         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32877         mono_get_exception_file_not_found now.
32879         * exception.c (mono_exception_from_name_two_strings): New version
32880         that will call a constructor with two string arguments. 
32881         (mono_get_exception_file_not_found): New helper routine, used to
32882         report file-not-found errors.
32884 2002-07-20  Dick Porter  <dick@ximian.com>
32886         * process.h:
32887         * process.c: Pass file handles to CreateProcess
32888         
32889         * icall.c:
32890         * file-io.h:
32891         * file-io.c: Implemented CreatePipe
32893 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32895         * metadata.c (mono_get_param_info): set alignment for value types
32897 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32899         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32900         Constify mono_domain_assembly_open().
32901         * loader.c: handle null namespace in icalls.
32903 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32905         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32906         (emit_str_to_ptr_conv): marshal object as structs
32908         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32910         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32912 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32914         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32915         (mono_marshal_get_native_wrapper): we an now return value types
32917 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32919         * verify.c: more checks implemented.
32921 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32923         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32924         (fix bug #27695)
32925         (mono_marshal_get_native_wrapper): allow byref arguments
32926         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32927         impl. PtrToStringXXX methods
32928         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32929         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32930         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32931         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32932         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32934 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32936         * reflection.c: fix buglet in parsing an assembly name.
32938 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32940         * marshal.c (emit_ptr_to_str_conv): first impl.
32942 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32944         * object.c, class.h: cache the vtable in the class as suggested by
32945         vargaz@freemail.hu (Zoltan Varga).
32947 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32949         * class.h, loader.c: added mono_field_from_token().
32950         * verify.c: first cut of type checking code.
32952 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32954         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32956 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32958         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32959         (fix bug #27782)
32960         (mono_marshal_get_remoting_invoke): impl.
32961         (mono_delegate_begin_invoke): impl.
32962         (mono_mb_emit_save_args): impl.
32963         (mono_delegate_end_invoke): impl.
32964         (mono_marshal_get_delegate_begin_invoke):
32965         (mono_marshal_get_delegate_end_invoke):
32966         (mono_marshal_get_delegate_invoke): generate a special name for
32967         those methods (including the signature) and associate them whith
32968         the delegate class. 
32970 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32972         * reflection.[ch]: 
32973         (mono_reflection_type_from_name): now it has a MonoImage parameter
32974         which is used as the default image to search the type in. If the image
32975         is NULL or getting the type from it fails, it defaults to corlib.
32977         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32978         new parameter.
32980 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32982         * reflection.c: update the parameter table index.
32984 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32986         * domain.c: don't include the mark byte in the string hash.
32988 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32990         * icall.cs: icall for Type.GetTypeCode ().
32991         * verify: a couple of fixes and disabled local initialization checks.
32993 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32995         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32997         * debug-helpers.c (mono_method_full_name): print the type of the
32998         runtime wrapper
33000         * metadata.c (mono_signature_hash): a hash function for signatures
33001         (mono_signature_hash): better hash algorithm
33003         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
33005         * debug-helpers.c (mono_method_full_name): this can now generate
33006         method names with signatures
33008         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
33009         method dont have this pointers.
33011 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33013         * reflection.c: fixup typebuilder tokens.
33014         * image.c: fix buglet.
33015         * marshal.h: remove whitespace.
33016         * metadata.h, metadata.c: reinstate code that was removed.
33017         * verify.c: handle catch directives and fix another couple of bugs.
33019 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
33021         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
33022         (mono_marshal_get_native_wrapper): make it comp. with the old code
33023         (mono_marshal_get_native_wrapper): support boolean
33024         (mono_marshal_get_managed_wrapper): support more types
33026 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
33028         * class.c (class_compute_field_layout): compute class->blittable attribute.
33030 2002-07-09  Dick Porter  <dick@ximian.com>
33032         * threads.c: Make the thread cleaning up cope with threads that
33033         call ExitThread()
33035 2002-07-08  Radek Doulik  <rodo@ximian.com>
33037         * reflection.c (method_encode_code): use non-translated values to
33038         compute finally_start, this fixes exception handling on ppc, yay!
33040         * decimal.h (struct signscale): fix endianess
33042 2002-07-07  Radek Doulik  <rodo@ximian.com>
33044         * reflection.c: swap box_val and not val
33046 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33048         * reflection.c, reflection.h: handle full assembly info in type name.
33049         Handle Type arguments when loading custom attributes.
33050         * icall.c: updated to use new mono_reflection_type_from_name () method.
33052 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33054         * loader.c:
33055         (method_from_memberref): also print assembly name when method not found.
33057 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33059         * icall.c:
33060         (ves_icall_TypeGetProperties): fixed bug #27473. 
33062 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33064         * reflection.c: display image name and token when cannot find the
33065         .ctor for an attribute.
33067 2002-07-05  Martin Baulig  <martin@gnome.org>
33069         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33071 2002-07-04  Dick Porter  <dick@ximian.com>
33073         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
33074         compile on mingw.  This will cause mingw builds to not wait for
33075         subthreads to terminate after the main thread does.  I've lodged a
33076         bug with the mingw developers for them to wrap OpenThread().
33078 2002-07-03  Dick Porter  <dick@ximian.com>
33080         * threads.c: Store thread IDs instead of handles, because
33081         GetCurrentThread() returns a pseudohandle and therefore stores
33082         useless values.  mono_thread_cleanup() continues checking the
33083         array of threads until it is empty, to cope with subthreads
33084         spawning new threads after the main thread has finished.
33086         * profiler.h:
33087         * profiler.c:
33088         * profiler-private.h: Pass the thread ID to thread profiler
33089         functions, instead of a handle
33091 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33093         * verify.c: fixes to make it more usable.
33094         * pedump.c: added --verify code to verify IL code in an assembly.
33096 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33098         * reflection.c: turn errors into warnings to allow compiling corlib.
33100 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33102         * reflection.c: add special cases to compile corlib.
33104 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33106         * reflection.c: handle properties with only a set method.
33108 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33110         * opcodes.h: add enum with opcodes in opval order.
33112 2002-07-01  Dick Porter  <dick@ximian.com>
33113         
33114         * object.h:
33115         * object.c (mono_runtime_run_main): Removed unneeded argument
33117 2002-06-28  Martin Baulig  <martin@gnome.org>
33119         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33121 2002-06-27  Dick Porter  <dick@ximian.com>
33123         * threads.c: Store the handle in both the parent thread and in the
33124         subthread, to minimise the time between starting a new thread and
33125         storing its ID.
33127 2002-06-26  Dick Porter  <dick@ximian.com>
33129         * appdomain.c (mono_runtime_cleanup): Close the socket library
33130         after all the threads have finished, not before
33132 2002-06-26  Martin Baulig  <martin@gnome.org>
33134         * debug-symfile.c (mono_debug_find_source_location): Added
33135         `guint32 *line_number' argument.  If it's not NULL, store the line number
33136         there and return the file name without the line number.
33138 2002-06-25  Dick Porter  <dick@ximian.com>
33140         * icall.c:
33141         * process.h:
33142         * process.c: Process forking and other support functions
33144 2002-06-25  Dick Porter  <dick@ximian.com>
33146         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
33147         things dont happen when the image is closed.
33148         (mono_image_lookup_resource): Walk the resource section looking
33149         for a particular entry
33151         * cil-coff.h: PE resource section decoding
33153 2002-06-25  Dick Porter  <dick@ximian.com>
33154         
33155         * assembly.h:
33156         * assembly.c: 
33157         (mono_assembly_foreach): Accessor functions to walk the list of
33158         loaded assemblies
33159         (mono_assembly_set_main):
33160         (mono_assembly_get_main): Process methods need to know which
33161         assembly is the "main" one
33163         * object.c (mono_runtime_run_main): Record the main assembly
33165         * debug-helpers.c: Fix typo
33167 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
33169         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
33170         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
33172 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33174         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
33176 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
33178         * image.c (do_mono_image_open): Initialize reference count,
33179         otherwise we leak the MonoImage.
33181 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33183         * reflection.c: small tweak to handle self-hosting.
33185 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33187         * reflection.c: fix type name parse code.
33189 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33191         * reflection.c: break out of the loop.
33192         * image.c: special case corlib.
33194 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33196         * reflection.c: add all the custom attrs at the end to ensure the
33197         ctors have been properly initialized when the attributes are defined
33198         in the current assembly.
33200 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33202         * reflection.c: handle correctly multiple-nested types.
33204 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33206         * row-indexes.h: fix typos.
33207         * reflection.c: adjust for typos and fix method_def_or_ref
33208         encoding in MethodImpl table.
33210 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33212         * reflection.c: fix entry point patching (thanks Serge!).
33214 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
33216         * verify.c: add check for System.Exception
33218 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33220         * image.c, class.c: minifix for code just c&p'ed.
33221         * reflection.c: warning fix.
33222         * object.h, loader.h, domain.c: load also StringBuilder.
33224 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33226         * marshal.h, marshal.c: some support code to handle complex marshaling.
33228 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33230         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
33231         Better signatures with vtable error dump.
33233 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
33235         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
33237 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
33239         * icall.c (ves_icall_Type_GetField): impl.
33241 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33243         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
33244         to retrieve a marshal description blob for a field or param.
33246 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33248         * reflection.h, reflection.c: change order of nested type emission
33249         to avoid table corruption. The NestedTypes table is sorted.
33250         * icall.c: change order of GetConstructor results to workaround mcs bug.
33252 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33254         * reflection.h, reflection.c: handle field and param marshal
33255         information.
33257 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33259         * icall.c, marshal.c marshal.h: more Marshal class implementation.
33261 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33263         * reflection.c: fix call convention.
33265 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33267         * reflection.h, reflection.c: mono_image_get_memberref_token()
33268         takes a type instead of a class, now. Added
33269         mono_image_get_array_token() to create tokens for the special
33270         multi-dim array methods.
33272 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33274         * assembly.c: handle modules (no assembly table). Split
33275         loading references in its own function.
33276         * class.c: handle moduleref resolution scope.
33277         * image.c, image.h: cache module name in image.
33279 2002-06-07  Martin Baulig  <martin@gnome.org>
33281         * reflection.c (mono_image_get_type_info): Only add a class layout entry
33282         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
33284 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33286         * icall.c: more signature fixes that used uint instead of int.
33288 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33290         * reflection.c: fixed signature of field refs.
33292 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33294         * class.c, reflection.c: handle typerefs of nested types
33295         (both on read and when writing files).
33297 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33299         * icall.c: fix method signatures that tried to workaround the previous
33300         typo, d'oh!
33302 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33304         * debug-helpers.c: fix typo.
33306 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33308         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
33309         rewrote the PE/COFF writing code (our programs are understood by the
33310         ms runtime, now).
33312 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33314         * gc.c, gc.h, icall.c: weakreference support.
33316 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33318         * Makefile.am, mono-config.c: use $(sysconfdir).
33320 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33322         * icall.c: changed default precision of Double.ToString() to 15.
33323         Fixed memory leak. Unified with Single.ToString.
33325 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33327         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
33329 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33331         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
33332         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
33333         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
33334         and myself.
33336 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33338         * debug-symfile.c, sysmath.c: yet more compilation fixes.
33340 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33342         * reflection.c, socket-io.c: more compilation fixes.
33344 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33346         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
33347         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
33348         unicode.c: warning and compiler compatibility fixes.
33350 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33352         * class.h, metadata.c: fixed warnings/compilation errors.
33354 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33356         * Makefile.am, mono-config.c, mono-config.h: configuration file
33357         support routines.
33358         * loader.c, loader.h: make Dll mapping configurable at runtime in the
33359         config file. Export methods to insert and lookup mappings.
33361 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33363         * reflection.c: handle types and boxed objects in custom attr
33364         constructors.
33366 2002-05-30  Martin Baulig  <martin@gnome.org>
33368         * debug-symfile.c
33369         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
33371 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
33373         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
33374         to lookup the implmap row for a P/Invoke method.
33375         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
33376         P/Invoke method from the runtime on an as needed basis.
33378 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
33380         * metadata.c (mono_metadata_parse_signature): impl.
33382 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33384         * class.c: handle .pack directive.
33386 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33388         * object.c: initialize static fields with RVA data.
33390 2002-05-25  Martin Baulig  <martin@gnome.org>
33392         * debug-symfile.c
33393         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
33395 2002-05-24  Martin Baulig  <martin@gnome.org>
33397         * debug-symfile.c
33398         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
33399         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
33400         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
33402 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33404         * object.c: special case string ctros in invoke.
33405         * gc.c: silly whitespace changes.
33407 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
33409         * threadpool.[ch]: impl. a threadpool that can
33410         be used by mint and mono.
33412 2002-05-22  Martin Baulig  <martin@gnome.org>
33414         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
33415         The first argument is now a `MonoReflectionModuleBuilder *', the return
33416         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
33417         `methods' field to get the method builder.  The `token' argument is the
33418         unfixed token.
33420         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
33421         invalid characters instead of g_assert_not_reached()ing.  This seems
33422         to be the behaviour of mscorlib.
33424 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
33426         * object.c (mono_runtime_invoke_array): applied patch from Rachel
33427         Hestilow to fix bug #25104
33429 2002-05-21  Martin Baulig  <martin@gnome.org>
33431         * debug-symfile.c (mono_debug_find_source_location): New function.
33432         Looks up an IL offset in the line number table and returns the source
33433         location as a string.
33435 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33437         * icall.c:
33438         (mono_double_ToStringImpl): changed %f by %g until we have something
33439         better.
33441 2002-05-21  Nick Drochak  <ndrochak@gol.com>
33443         * icall.c : Use different name for Math.Pow's icall.  Needed to check
33444         parameters first in C#.
33446 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33448         * icall.c, reflection.h: added icall to get info about an event.
33450 2002-05-20  Radek Doulik  <rodo@ximian.com>
33452         * object.c (mono_value_box): don't use memcpy for boxing on BIG
33453         endian
33454         (mono_value_box): don't use memcpy for small sizes on
33455         architectures with unaligned access
33457 2002-05-20  Martin Baulig  <martin@gnome.org>
33459         * reflection.c (mono_reflection_setup_internal_class): Don't crash
33460         if `tb->parent == NULL'.
33461         (mono_reflection_create_internal_class): New function.  This is
33462         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
33463         for enum types.
33465         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
33466         New interncall.
33468 2002-05-19  Martin Baulig  <martin@gnome.org>
33470         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
33471         argument to get the length, don't default to the array length.
33473 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
33475         * assembly.c (mono_assembly_setrootdir): New function used to
33476         override the MONO_ASSEMBLIES directory.
33478 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33480         * icall.c: ValueType_GetHashCode() initialize local var.
33482 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33484         * reflection.c: sort custom attributes table.
33486 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33488         * reflection.c: support named args in custom attributes (write support).
33490 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33492         * reflection.c: fix finally position calculation.
33494 2002-05-15  Radek Doulik  <rodo@ximian.com>
33496         * reflection.c: fixed endianess at many places
33498         * icall.c (ves_icall_InitializeArray): comment out debug msg
33500 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
33502         * object.c (mono_unhandled_exception): new function to handle
33503         unhandled exceptions.
33504         (mono_unhandled_exception): call the UnhandledException event.
33505         (mono_runtime_delegate_invoke): impl.
33507 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
33509         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
33510         returns the RVA, not the direct pointer to the data. Handle the case
33511         when the class size is fixed.
33513 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33515         * reflection.c: fix some endianess issues.
33517 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
33519         * object.c (mono_runtime_invoke): is now able to catch exceptions.
33521         * threads.c (mono_thread_init): added a callback which is invoked
33522         at thread start.
33524 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33525         
33526         * icall.c: make GetHashCode return non-negative values.
33528 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33530         * object.c, icall.c, gc.c: revert to address-based hashcode.
33532 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
33534         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
33536 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33538         * icall.c, class.c: special case <Module>.
33540 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
33542         * icall.c: fix bug in GetNow().
33544 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
33546         * object.c (mono_runtime_class_init): make sure that we call all
33547         static class constructors.
33549 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33551         * reflection.c: sort methodsemantics table.
33553 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33555         * reflection.h, reflection.c: honour init locals setting.
33557 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
33559         * icall.c: copied Double ToStringImpl for Single ToStringImpl
33561 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33563         * reflection.c: support ContructorBuilders in attribute blob creation.
33565 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33567         * reflection.c: some changes to build a binary that can be run
33568         directly in windows.
33570 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33572         * loader.c: print a big message when an icall can't be found.
33574 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33576         * string-icalls.c: fix bug 24248.
33578 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33580         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33581         icall.c, reflection.h: separate assembly loading by pathname and by
33582         assembly name. Use the MONO_PATH env var to search for assemblies.
33584 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33586         * assembly.c, image.h: add some support for assemblies
33587         with multiple modules.
33588         * class.c, class.h: export mono_class_from_typeref().
33589         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33590         instead.
33592 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33594         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33595         documentation says (the ECMA one is correct).
33597 2002-05-02  Dick Porter  <dick@ximian.com>
33599         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33600         Don't name the synchronisation mutex.
33602 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33604         * rand.c
33605         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33606         Make the prototypes match.
33607         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33608         Same.
33610         * icall.c
33611         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33612         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33613         all systems have tm.tm_zone, so use strftime() with %Z to print
33614         the timezone abreviation into a temp string.
33616         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33617         rather than mono_array_addr() on a MonoString on Big Endian
33618         machines.
33620 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33622         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33623         fix bug 24041
33625 2002-04-30  Dick Porter  <dick@ximian.com>
33627         * socket-io.c: Cope with SOCKET being an integer rather than a
33628         pointer now.
33630         * threads.c: Added Thread_free_internal, to deal with thread
33631         handle cleanup.  Moved calls to handle_store() and handle_remove()
33632         to start_wrapper(), so each can only be called once.  Allocate
33633         synchronisation blocks with GC_malloc(), and use GC finalisation
33634         to close the handles.
33636         * icall.c: added System.Threading.Thread::Thread_free_internal
33638 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33640         * icall.c: support Environment.Exit, CommandLineArgs().
33642 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33644         * object.c, object.h: added mono_runtime_run_main () and
33645         mono_runtime_get_main_args () for use in System.Environment.
33647 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33649         * gc.c: fix thinko, enable actual finalization since the jit is now
33650         fixed.
33652 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33654         * gc.c, object.c: take into account that an object may be offset wrt the address
33655         returned by GC_malloc().
33657 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33659         * image.c: handle files without entries in the assembly table (modules).
33661 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33663         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33664         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33665         allowed to be null when it's System.Object class setup.
33667 2002-04-27  Martin Baulig  <martin@gnome.org>
33669         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33670         if `tb->parent == NULL' rather than crashing.
33672 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33674         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33675         calling acos() where asin() should have been called.
33677 2002-04-26  Martin Baulig  <martin@gnome.org>
33679         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33680         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33681         there's a subdirectory called `System', but we don't want to read that
33682         subdirectory as an assembly.
33684 2002-04-25  Martin Baulig  <martin@gnome.org>
33686         * debug-symfile.c: Reflect latest MonoString changes.
33688 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33690         * rand.c, rand.h: instance method icalls need to have an explicit
33691         this pointer as first argument in the C implementation.
33693 2002-04-25  Nick Drochak <ndrochak@gol.com>
33695         * icall.c: Fix typo in map for GetNonZeroBytes
33697 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33699         * string-icalls.c : String does now passes unit tests without any 
33700         errors, the following changes has been made:
33701         
33702         Implemented replace methods.
33703         Renaming of methods to (try) follow the standard.
33704         Fixed compare ordinal
33705         Made all memory allocated directly to function instead of via icall function.
33706         Small performance fix in is_in_array function
33707                         
33708  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33710         c (mono_string_Internal_ctor_charp_int_int):
33711         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33712         sindex < 0, throw ArgumentOutOfRangeException instead of
33713         ArgumentNullException.
33715         Added new check for length == 0, however
33716         I need to make it return String.Empty from the C code.
33717         
33718         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33719         that calculate the length for us here.
33720         
33721         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33722         mono_string_new_utf16 with mono_string_new, since value is utf8.
33724 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33726         * object.c: register the object for finalization if needed.
33727         Allocate one more char in the string for the terminating 0 char.
33729 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33731         * class.c, class.h, image.c: check if a type implemenst a destructor.
33732         Use the proper key for array class lookups.
33733         * icall.c: register the icalls in the System.GC class.
33734         * gc.c, gc.h: GC-related functions and icalls.
33736 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33738         * icall.c:
33739         * socket-io.c:
33740         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33741         changed a couple of free () by g_free ().
33743         * decimal.c: one-liner in the comments for decimal2string ().
33745 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33747         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33749 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33751         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33752         * object.c (mono_runtime_invoke_array) : handle null in params
33754 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33756         * string-icalls.c: fixed bug in split (one off bug)
33758 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33760         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33761         * icalls.c: added String::Equals as internal method
33763 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33765         * threads.c: fixed bug in the double interlocked functions
33767 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33769         * threads.c: implemented all of the new interlocked icalls.
33770         * string-icalls.c: fix a bug in insert.
33771         * icalls.c: added the icalls for interlocked, removed old string functions.
33772         
33773 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33775         * loader.c: fix off-by-one error when reading argument names.
33777 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33779         * profiler.c: win32 counter implementation (untested).
33780         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33781         (the latter needs testing and more complete impl. from win32 folks).
33783 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33785         * object.c: mono_array_new_full workaround mono_array_class_get
33786         problem.
33788 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33790         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33791         * object.h (mono_string_chars): Changed casting type.
33793 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33795         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33796                            method signatures to use gunichar2 instead of gint16.
33798 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33800         * object.h, object.c: domain-specific versions of mono_object_new and
33801         mono_array_new.
33803 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33805         * object.c: changed String layout
33807         * string-icalls.c (mono_string_Internal_ctor_chara): added
33808         internal string constructors.
33810 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33812         * threads.c: pass 'this' to the thread start routine.
33814 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33816         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33817         InternalCompareStr don't call twice mono_string_cmp_char for the last
33818         character. Improved performance in mono_string_cmp_char.
33820 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33822         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33823         code into its own library: libmonoruntime.
33825 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33827         * object.h, object.c: changed array format so that szarrays do not
33828         require a bounds structure.
33829         * icall.c, appdomain.c: support for new szarray format.
33831 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33833         * metadata.c: compare also the retuns type when comparing signatures:
33834         we didn't do this as an optimization since really overloaded methods
33835         must differ also in the arguments, but this doesn't work with
33836         low-level IL code (or when using explicit conversion operators: see
33837         bug#23498 for an example).
33839 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33841         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33843 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33845         * icall.c: make MonoType::GetElementType its own icall.
33847 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33849         * icall.c: remove MonoMethod_get_Name().
33850         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33851         object.
33853 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33855         * string-icalls.c: optimized a few methods.
33857 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33859         * icall.c: added all new string internal calls
33860         * string-icalls.c: added, new string internal call implementation.
33861         * object.c: added mono_string_new_size for allocating a string a size
33863 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33865         * object.c (mono_object_isinst): use the same code as in the
33866         optimized x86 version.
33868 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33870         * profiler.c: TSC-based timer code (faster and more accurate).
33871         Not hooked up in configure, yet (set USE_X86TSC to 1).
33873 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33875         * profiler.c, profiler.h: track time spent compiling methods.
33876         * threads.c: track thread creation/destruction.
33878 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33880         * profiler.c, profiler.h, profiler-private.h: profiling interface
33881         and sample implementation. Moved here so that it can be used also by
33882         the jit.
33884 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33886         * reflection.c, reflection.h: keep types and other handles separate in
33887         the hash tables for referred tokens. Add guid for modules.
33889 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33891         * assembly.c: fix bugs found with valgrind.
33892         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33894 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33896         * threads: added icall support for getting current domain for
33897                    the thread.
33899 2002-04-13  Martin Baulig  <martin@gnome.org>
33901         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33902         (MonoDebugVarInfo): Added `index' field for register based addresses.
33903         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33904         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33905         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33906         `MonoDebugVarInfo *this_var'.
33908         * debug-symfile.c (relocate_variable): New static function to write
33909         a location description for a local variable or method parameter.
33911 2002-04-12  Martin Baulig  <martin@gnome.org>
33913         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33914         stack offset and begin/end scope address of a local variable.
33915         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33916         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33917         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33919         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33920         Added new relocation types for start/end scope of a local variable.
33922 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33924         * object.h: add mono_object_domain() macro.
33925         * reflection.c: handle typespecs.
33926         * icall.c: MonoMethod::get_Name() implementation.
33928 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33930         * icall.c: String::GetHashCode() icall implementation.
33932 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33934         * icall.c: String::IndexOfAny icall.
33935         * object.c, object.h: make array->max_length more useful.
33936         Intrduced mono_object_class() and mono_string_length() macros.
33938 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33940         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33941         instead of g_unichar_isdigit.
33943 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33945         * icall.c: Implement a simple Double.ToString().
33947 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33949         * appdomain.h: only io-layer.h is supposed to be included.
33950         * icall.c: explicitly import environ. Fix warning.
33952 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33954         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33955                 return true even if it's not Daylight Savings time.
33956                 Only return false for the case where the function isn't
33957                 implemented for a plaform (read Windows).
33959 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33961         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33962         data with a mutex.
33964 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33966         * mempool.c (mono_mempool_alloc): only use g_malloc when
33967         absolutely necessary.
33969 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33971         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33973         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33974         (mono_class_proxy_vtable): use domain mempool
33976 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33978         * appdomain.h, appdomain.c: split initialization that requires the
33979         execution engine support into mono_runtime_init().
33981 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33983         * class.c (mono_class_init): don't include vtable inside MonoClass
33984         to save some memory, gather some statistics.
33985         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33987 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33989         * icall.c: internalcall implementation for ValueType.Equals().
33991 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33993         * object.c (mono_message_init): moved 
33994         (mono_runtime_exec_main): new arch. independent impl.
33995         (mono_runtime_invoke_array): new method - like
33996         mono_runtime_invoke, but you can pass an array of objects.
33997         (mono_remoting_invoke): new arch. independent impl.
33998         (mono_message_invoke): new arch. independent impl.
33999         (mono_runtime_class_init): new arch. independent impl.
34000         (mono_runtime_object_init): new arch. independent impl.
34002 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34004         * metadata.c, object.c, reflection.c: documented the exported
34005         functions.
34007 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34009         * icall.c: simpler code to pass the assembly builder data to corlib.
34010         Implement GetNestedTypes() internalcall.
34012 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34014         * class.c: warn if a type can't be loaded.
34016 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
34018         * image.h: typedef MonoImageOpenStatus
34019         * types.h: removed unused file
34020         
34021 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
34023         * icall.c: Enum_ToObject accepts enum value arguments.
34025 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34027         * class.c: move initialization of properties, events and nested
34028         classes, so that they happen for interfaces, too.
34030 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34032         * icall.c: cleanup some ugly casts in Array_SetValue*.
34034 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34036         * icall.c: the values array fro enums is of the correct type, now.
34037         Implement (correctly) getFullName instead of assQualifiedName for
34038         MonoType.
34039         * reflection.h, reflection.c: added mono_type_get_name ().
34041 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34043         * assembly.c, image.h: for each MonoImage, record from wich assembly
34044         it was loaded.
34045         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
34046         Make Type.Assembly work.
34048 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
34050         * debug-symfile.h: use char* instead of gpointer to avoid
34051         unnecessary casts.
34053         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
34055         * icall.c (ves_icall_InternalExecute): impl. FielSetter
34056         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
34058 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
34060         * icall.c (mono_message_init): impl. (code cleanup)
34061         (ves_icall_InternalExecute): impl. FieldGetter
34063         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
34064         defined we call all (non-static)methods through the vtable. 
34066 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
34068         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
34069         finalizer even though the memory is still referenced (and the chunk of
34070         memory is not freed).
34072 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34074         * assembly.c: fix brokeness.
34076 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
34078         * class.c: kill some warnings. Check explicit interface method
34079         implementation also without considering the namespace.
34080         Load also literal strings in static class data.
34082 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
34084         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
34085         (default_assembly_name_resolver): Make the resolver take the
34086         "base" directory where the assembly was originally defined, so we
34087         can load DLLs that are in the same directory as the assembly that
34088         is being referenced.
34090 2002-03-28  Dick Porter  <dick@ximian.com>
34092         * file-io.h: 
34093         * file-io.c:
34094         * socket-io.c: 
34095         * unicode.h: 
34096         * unicode.c: Warning cleanups
34098 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
34100         * object.h, reflection.h: use the correct type instead of MonoObject.
34102 2002-03-28  Martin Baulig  <martin@gnome.org>
34104         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
34105         (mono_debug_update_symbol_file): Initialize classes if necessary.
34107 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34109         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
34110         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
34112 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
34114         * assembly.h: fix function prototype.
34115         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
34116         * mono-endian.h: use const cast.
34118 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34120         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
34122 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34124         * loader.c: don't assert when a typeref can't be loaded, give
34125         a chance to the runtime to trow an exception instead.
34126         * loader.h: fix warning.
34128 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34130         * class.c (mono_class_proxy_vtable): added proxy support
34132 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
34134         * icall.c: removed last of PAL calls, added System.Environment
34135         * file-io.h, file-io.c: MonoIO implementation
34136         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
34138 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34140         * appdomain.c: do not use the byte marker in ldstr table lookup.
34141         * debug-helpers.c: allow two ':' to separate class and method name.
34142         * object.c: allocate arrays bounds with the GC, too.
34143         * verify: add a few more checks.
34145 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
34147         * reflection.c: output also literal strings. Allocate parameter data
34148         with GC_malloc() (thanks, Martin, for catching this!).
34150 2002-03-26  Martin Baulig  <martin@gnome.org>
34152         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
34153         include the `this' offset in the `param_offsets'.
34155 2002-03-25  Martin Baulig  <martin@gnome.org>
34157         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
34158         mono_debug_get_class() function to get the classes. Added new
34159         relocation types for arrays and strings.
34160         (mono_debug_get_class): New static function to search in all
34161         referenced assemblies for a metadata token.
34163         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
34165 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34167         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
34168         hold gc-allocated objects. Make the string heap a stream like the
34169         others. Removed duplicated code when writing stream info.
34170         Added asserts to catch possible buffer overflows. Set the sorted map
34171         for tables that need sorting. Added some documentation.
34173 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
34175         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
34176         for interned strings and vtables.
34178 2002-03-24  Martin Baulig  <martin@gnome.org>
34180         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
34181         it in the array since it was created with g_slist_prepend().
34183 2002-03-24  Martin Baulig  <martin@gnome.org>
34185         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
34186         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
34187         (mono_debug_method_from_token): Renamed to
34188         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
34189         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
34191         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
34192         relocation types.
34194         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
34196 2002-03-24  Martin Baulig  <martin@gnome.org>
34198         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
34199         (mono_debug_method_from_token): New func.
34201         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
34202         New interncall, calls mono_debug_local_type_from_signature().
34203         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
34204         calls mono_debug_method_from_token().
34206 2002-03-23  Martin Baulig  <martin@gnome.org>
34208         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
34209         specifies the number of bytes to be converted, not the array size.
34210         Return the number of chars, not the number of bytes.
34211         (ves_icall_iconv_get_chars): The `byteCount' argument
34212         specifies the number of bytes to be converted, not the array size.
34214 2002-03-23  Martin Baulig  <martin@gnome.org>
34216         * reflection.h (MonoReflectionSigHelper): New type.
34218         * reflection.c (mono_reflection_sighelper_get_signature_local),
34219         (mono_reflection_sighelper_get_signature_local): New functions.
34221         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
34222         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
34223         interncalls.
34225 2002-03-23  Martin Baulig  <martin@gnome.org>
34227         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
34228         is_writeable is set.
34229         (mono_raw_buffer_update): New function to write the modified map
34230         back to disk.
34232         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
34234         * debug-symfile.c (mono_debug_update_symbol_file): Call
34235         mono_raw_buffer_update() when done writing.
34237 2002-03-23  Martin Baulig  <martin@gnome.org>
34239         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
34241         * debug-symfile.c: Added support for arguments and local variables.
34243 2002-03-23  Dick Porter  <dick@ximian.com>
34245         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
34246         protected by ifdefs, hence breaking the w32 build.
34248 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34250         * object.c: implement is_interned() the right way.
34252 2002-03-21  Martin Baulig  <martin@gnome.org>
34254         * debug-symfile.[ch]: New files to handle debugging information
34255         files. There's also support to dynamically update these symbol
34256         files to include machine dependent information.
34258 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
34260         * threads.c (mono_thread_create): new function to create thread
34261         from C
34263 2002-03-20  Martin Baulig  <martin@gnome.org>
34265         * icall.c (ves_icall_InternalInvoke): Create a new object if the
34266         method is a constructor.
34267         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
34268         points to ves_icall_InternalInvoke().
34270 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
34272         * file-io.c: Flush shouldn't throw exceptions.
34274 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
34276         * file-io.c: FileStream flush support; FileSetLength now
34277         restores file pointer.
34279 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34281         * class.c: set image for pointer classes.
34283 2002/03/19  Nick Drochak <ndrochak@gol.com>
34285         * sysmath.c: Forgot one.
34287 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
34289         * sysmath.c: Avoid redefining existing names.
34291 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
34293         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
34294         handled by runtime as icall rather than dllimport from libm.so
34295         * file-io.c, file-io.h: fixed handle argument type.
34297 2002-03-18  Dick Porter  <dick@ximian.com>
34299         * reflection.c (mono_image_get_type_info): rename interface to
34300         iface, because of "#define interface struct" on windows.
34302 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
34304         * class.c, class.h: rename and export mono_ptr_class_get().
34305         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
34306         * reflection.c, reflection.h, icall.c: better/saner type name
34307         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
34308         method signatures.
34310 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
34312         * class.c (mono_class_init): removed hardcoded GHC_SLOT
34314         * icall.c (ves_icall_InternalInvoke): impl.
34316 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34318         * reflection.c: output the interface map table, too.
34320 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34322         * class.c (class_compute_field_layout): separate computation of 
34323         static field layout
34325 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
34327         * icall.c: added System.Buffer support.
34328         * file-io.c: moved file icalls from PAL to FileStream.
34330 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34332         * icall.c (ves_icall_System_Object_GetHashCode): impl.
34334 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
34336         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
34338 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34340         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
34342 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34344         * debug-helpers.{c,h}: moved here from monograph some useful functions
34345         to locate a method by name/signature in a class or image. Included
34346         also a small and flexible IL disassembler.
34348 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34350         * reflection.c: fixup tokens in methods with small header size, too.
34352 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
34354         * object.c (mono_string_to_utf8): remove assert(!error), instead
34355         print a warning. 
34357 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
34359         * icall.c: update to the new mono_Array_class_get interface.
34361 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34363         * appdomain.c, object.c: Boehm-GC enable.
34364         * icall.c: make get_data_chunk() support split data requests.
34365         Ensure a class is initialized in more cases. Return only the first
34366         property found in GetProperties() or the compiler gets confused. 
34367         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
34368         * reflection.h, reflection.c: add fixup mechanism for field and method
34369         tokens. Initialize assembly->typeref in a single place. Output
34370         properties after events. Support custom attributes for events, too.
34371         Typo fix for paramter custom attrs.
34373 2002-03-07  Martin Baulig  <martin@gnome.org>
34375         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
34377 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
34379         * class.c (mono_array_class_get): fix. for multi. dim. arrays
34381 2002-03-06  Martin Baulig  <martin@gnome.org>
34383         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
34384         non-zero lower bounds. See testcases #F10-#F13.
34386 2002-03-05  Martin Baulig  <martin@gnome.org>
34388         * exception.c (mono_get_exception_argument_out_of_range): New exception.
34390         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
34391         ves_icall_System_Array_GetValue(), only calculate the absolute array position
34392         here.
34393         (ves_icall_System_Array_SetValue): Likewise.
34394         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
34395         as argument and does the actual work. This function is used when copying a
34396         multi-dimensional array.
34397         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
34398         now do all the widening conversions of value types.
34399         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
34401 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34403         * class.c: remove some magic numbers and use the smbolic names,
34404         instead. Added init_events() to load event info at class init time.
34405         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
34406         and mono_metadata_methods_from_event().
34407         * reflection.h, reflection.c: added support for writing out the evnets
34408         related information.
34410 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34412         * reflection.h, icall.c: use a different method (GetInterfaces)
34413         to gather interface info and add isbyref, isprimitive and
34414         ispointer to the ves_icall_get_type_info() return value.
34416 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34418         * class.h: stared adding support for events.
34419         * icall.c: split find_members implementation. Added debug icall to get
34420         the address of an object.
34421         * reflection.c: handle TypeBuilders in mono_type_get_object().
34423 2002-03-01  Martin Baulig  <martin@gnome.org>
34425         * icall.c (ves_icall_System_Array_GetLength): This must throw an
34426         ArgumentOutOfRangeException(), not an ArgumentException().
34427         (ves_icall_System_Array_GetLowerBound): Likewise.
34428         (ves_icall_System_Array_GetValue): Improved argument checking.
34429         (ves_icall_System_Array_SetValue): Improved argument checking.
34431 2002-03-01  Martin Baulig  <martin@gnome.org>
34433         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
34434         called with invalid arguments rather than just dying with g_assert().
34435         (ves_icall_System_Array_SetValue): Likewise.
34436         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
34437         raise a NotImplementedException instead.
34438         (ves_icall_System_Array_GetLength): Added argument checking.
34439         (ves_icall_System_Array_GetLowerBound): Added argument checking.
34441 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
34443         * object.h (mono_assert): new macros mono_assert and
34444         mono_assert_not_reached
34446 2002-02-28  Martin Baulig  <martin@gnome.org>
34448         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
34449         and "System::String::IsInterned" to "System::String::_IsInterned".
34451 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
34453         * icall.c: remove hacks for typebuilder. Added icall to create a
34454         modified type from a tybebuilder.
34455         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
34456         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
34457         to create a backing MonoClass for a TypeBuilder.
34459 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34461         * class.c, class.h: more refactoring of class init.
34462         Export mono_class_setup_mono_type() and mono_class_setup_parent().
34464 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
34466         * marshal.c, marshal.h: start of marshaling interface.
34468 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34470         * icall.c: fix order in assembly qualified name icall.
34472 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34474         * class.c: do not free str, since we store it in the hash table.
34475         * reflection.h: add label field to MonoILExceptionInfo.
34476         * reflection.c: handle references to more than one assembly. Handle
34477         case when there isn't a module created in the assembly.
34479 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34481         * class.c: Fix typo. Start refactoring of class init code.
34483 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34485         * appdomain.c: exit with 1 on error.
34486         * class.c: we already have the name in MonoClassField.
34487         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
34488         MonoStreamHeader instead of an offset of image->raw_metadata.
34490 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
34492         * appdomain.c (mono_init): Be even more descriptive about the error.
34494 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
34496         * appdomain.c: give the user an informative message when corlib can't
34497         be loaded.
34499 2002-02-26  Martin Baulig  <martin@gnome.org>
34501         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
34502         New icall to get the time zone data.
34504 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34506         * reflection.c: set virtual and raw size of section correctly.
34507         * threads.c: transfer domain information to newly created threads.
34509 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34511         * class.c: when instancing a class in a domain, load the default
34512         vaules for static fields from the constant table. Fix System.Enum to
34513         not be an enum.
34514         * icall.c: implement Object::GetType() internalcall. Implemented
34515         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
34516         Fixed checking of binding flags in find_members().
34517         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
34518         * reflection.c: handle enumerations when writing to the constant
34519         table. Use a different object cache for types.
34522 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
34524         * object.c (mono_object_isinst): fix for arrays
34526         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
34528 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34530         * object.c: don't use mprotect ()  and fix intern pool hash table
34531         lookup for big endian systems.
34533 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34535         * icall.c: change type_is_subtype_of () signature.
34537 2002-02-21  Mark Crichton  <crichton@gimp.org>
34539         * rand.c, rand.h: Added random number generator for
34540         System.Security.Cryptography classes.
34542         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
34544         * icall.c: Added System.Security.Cryptography calls.
34546 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34548         * class.c, icall.c, metadata.c: better support for pointer types.
34549         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
34550         * reflection.c: Add support for getting custom attrs for properties
34551         and simplify some code.
34553 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34555         * icall.c: change getToken () and add custom attribute GetBlob()helper
34556         method.
34557         * reflection.h: add custom attrs array to the reflection builder structures.
34558         * reflection.c: encode and emit custom attributes for all the relevant
34559         reflection objects. Cache fieldref and methodref tokens. Change
34560         mono_image_create_token() interface to take a MonoDynamicAssembly.
34561         More complete custom attributes decoder. Load custom attributes for
34562         Assembly, Field, Method and Constructor objects, too. Make the
34563         returned array an Attribute[] one, not object[]. Added
34564         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
34565         custom attribute constructor.
34567 2002-02-20  Dick Porter  <dick@ximian.com>
34569         * icall.c:
34570         * rawbuffer.c:
34571         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34572         problem code out for now).
34574 2002-02-19  Radek Doulik  <rodo@ximian.com>
34576         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34578 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34580         * icall.c: register the GetCustomAttributes method.
34581         * object.c, object.h: add mono_string_new_len ().
34582         * reflection.h, reflection.c: added mono_runtime_invoke(),
34583         mono_install_runtime_invoke(). Added
34584         mono_reflection_get_custom_attrs () to load custom attributes and
34585         create the attribute objects.
34587 2002-02-19  Dick Porter  <dick@ximian.com>
34588         * threads-dummy-types.c:
34589         * threads-dummy-types.h:
34590         * threads-dummy.c:
34591         * threads-dummy.h:
34592         * threads-pthread-types.c:
34593         * threads-pthread-types.h:
34594         * threads-pthread.c:
34595         * threads-pthread.h:  Deleted obsolete files
34597 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34599         * class.c (mono_class_vtable): runtime init the class when we
34600         allocate static class data.
34602         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34604         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34605         and String - but we will need generic marshalling support in the
34606         future. 
34607         (mono_init): set the domain name in a ms compatible way
34609         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34610         String[].
34612 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34614         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34615         for sizes
34617         * appdomain.c (mono_domain_unload): impl.
34619 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34621         * appdomain.c, object.c: fix intern pool implementation.
34622         * class.c: fix alignment code.
34624 2002-02-16  Radek Doulik  <rodo@ximian.com>
34626         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34627         and s2 > s1, just copy lower bytes to be compatible with little
34628         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34629         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34631         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34632         force big_endian to be 1 for big endian machines 
34633         (ves_icall_iconv_new_decoder): ditto
34635 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34637         * socket-io.c (convert_sockopt_level_and_name): If the system
34638         doesn't define SOL_IP or SOL_TCP, get them by hand using
34639         getprotobyname() and caching the values (because this could be a
34640         slow operation).
34641         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34642         Use the appropriate struct when the system does support it. Ie,
34643         not all systems have struct ip_mreqn so use struct ip_mreq when
34644         appropriate.
34646 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34648         * reflection.c: handle finally clauses.
34650 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34652         * socket-io.c: use g_snprintf() instead of snprintf.
34654 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34656         * reflection.c (mono_param_get_objects): Cast second argument to
34657         mono_method_get_param_names to a const char** to silence the
34658         compiler warning.
34660         * appdomain.c (mono_domain_assembly_open): Put parens around the
34661         truth statement in the for-loop.
34663         * unicode.c (iconv_convert): Got rid of a compiler warning about
34664         int i being unused when the system has a new iconv.
34665         (iconv_get_length): Same.
34667         * image.c (load_class_names): Cast the second argument to
34668         g_hash_table_insert() to char* to hush compiler warnings about the
34669         arg being a const.
34670         (mono_image_open): Same here.
34672         * socket-io.c: Don't conditionally include sys/filio.h or
34673         sys/sockio.h here anymore since we now get them from
34674         io-layer/io-layer.h
34675         (inet_pton): If the system doesn't support inet_aton, implement
34676         using inet_addr and also #define INADDR_NONE if it isn't defined
34677         by the system.
34679 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34681         * metadata.c, metadata.h: added function to get packing and size info
34682         of a typedef.
34683         * reflection.h, reflection.c: handle field RVA data. Save info about
34684         the table layout if needed. Assign typedef indexes to all the types
34685         before dumping the info about them to avoid forward reference problems.
34687 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34689         * socket-io.c (convert_sockopt_level_and_name): ifdef
34690         SO_ACCEPTCONN because it is not defined on my system (old debian)
34692 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34694         * opcode.c: use stddef.h to get NULL.
34696 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34698         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34699         for FIONBIO, FIONREAD and SIOCATMARK.
34700         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34701         define INADDR_NONE and besides, inet_addr() is deprecated and
34702         should not be used. Use inet_pton() instead - it also has the
34703         added bonus that it can easily handle IPv6 addresses as well.
34704         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34706 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34708         * decimal.c: remove _MSC_VER conditional.
34710 2002-02-13  Dick Porter  <dick@ximian.com>
34712         * socket-io.c: 
34713         * icall.c: Internal calls for Blocking, Select, Shutdown,
34714         GetSocketOption and SetSocketOption
34716 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34718         * assembly.cs: better resolver: use it instead of some kludgy
34719         code.
34721 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34723         * reflection.c: the best way to speed-up the compiler is to avoid
34724         infinite loops.
34726 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34728         * class.c (mono_class_vtable): changed the object layout
34729         (obj->vtable->class). 
34730         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34732 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34734         * assembly.c: look for assemblies in the assembly dir, too.
34736 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34738         * class.c: fix thinko in mono_class_from_type().
34740 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34742         * exception.h, exception.c: added TypeLoadException.
34743         * object.h, object.c: added mono_array_clone ().
34744         * icall.c: handle throwOnError in AssemblyGetType().
34745         Added Array.Clone().
34746         * opcode.h, opcode.c: use a single value for the opcode val.
34747         Compile fix for non-gcc compilers.
34749 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34751         * opcodes.c, opcodes.h: export interesting info about opcodes.
34753 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34755         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34756         icalls. 
34758         * class.c (class_compute_field_layout): set element_class for enums
34759         (mono_class_create_from_typedef): set element_class for normal classes
34761         * icall.c (ves_icall_System_Enum_get_value): impl.
34763         * class.c (mono_class_create_from_typedef): do not set valuetype
34764         flag for System.ValueType and System.Enum
34766 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34768         * unicode.c (iconv_convert): fix big endian problem.
34770 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34772         * class.c: add asserts if we are ever going to scribble over memory.
34773         * socket-io.c: not all systems have AF_IRDA defined.
34775 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34777         * class.c (class_compute_field_layout): do not consider static
34778         fields to compute alignment
34780 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34782         * appdomain.c (mono_appdomain_get): impl.
34783         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34785 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34787         * icall.c: ignore "file://" prefix when loading an assembly.
34789 2002-01-23  Dick Porter  <dick@ximian.com>
34791         * socket-io.c:
34792         * icall.c:
34793         * Makefile.am: Added socket support
34795 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34797         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34798         code back.  This should return the assemblies that are loaded by
34799         the runtime on behalf of an application domain. 
34801         The current implementation is still broken, it just returns every
34802         assembly loaded, but until we get real applications domain this
34803         will do.
34805 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34807         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34808         AppDomain object.
34810 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34812         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34813         the mono_class_from_name lookup.
34814         (ves_icall_get_parameter_info): ditto.
34815         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34816         method.
34817         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34819 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34821         * class.c: load also nested classes on class init.
34822         System.ValueType instance methods gets passed boxed
34823         values, unless methods in derived classed that get a pointer to the
34824         data.
34825         * icall.c: use better name parsing code in GetType().
34826         * image.c, image.h: add mono_image_loaded ().
34827         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34828         * reflection.c, reflection.h: added mono_reflection_parse_type().
34830 2002-01-22  Veronica De Santis <veron78@interfree.it>
34832         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34833         * threads.c : Added the implementation of internal calls for events
34834         * threads.h : Added prototypes of internal calls for events
34835         
34836 2002-01-21  Radek Doulik  <rodo@ximian.com>
34838         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34840 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34842         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34843         (mono_class_value_size): use min_align
34845 2002-01-20  Dick Porter  <dick@ximian.com>
34847         * threads.h:
34848         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34849         so it compiles on w32.
34851 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34853         * metadata.c (mono_type_stack_size): impl.
34855         * class.c (mono_class_get_field): impl. memberref token
34857 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34859         * icall.h : Added the internal calls mapping for CreateMutex_internal
34860                     and ReleaseMutex_internal.
34861         * threads.h : Added the prototype of mutexes internal calls.
34862         * threads.c : Added the implementations of mutexes internal calls.
34864 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34866         * metaparse.h: removed unused file.
34867         * reflection.c, reflection.h: added stream_data_align () function 
34868         to align data in streams and keep stream aligned. Add support for
34869         exception support in method headers.
34871 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34873         * unicode.c: make iconv_convert () return the number of bytess written
34874         in the output buffer.
34876 2002-01-15  Dick Porter  <dick@ximian.com>
34877         * threads.c: Make the runtime's idea of infinite timeouts coincide
34878         with the class library's
34880         Fix a particularly egregious bug in mono_thread_cleanup(). That
34881         code was so utterly bogus it must have been written on a Monday.
34883 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34885         * reflection.h: add subtypes field to TypeBuilder.
34886         * reflection.c: encode constants for literal fields.
34887         Handle subtypes. Fix user string token (and add a zero byte)
34888         at the end.
34889         
34890 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34892         * class.c (mono_class_init): bug fix: assign slot numbers for
34893         abstract methods.
34895 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34897         * reflection.c: don't try to output a code RVA for abstract methods.
34898         Small fixes for method header format. Output parameter info to the
34899         ParamDef table. Save method overriding info to MethodImpl table.
34900         Fix property support. Allow typedef.extends to be a type in the
34901         building assembly.
34902         * verify.c: fix off-by-one error.
34904 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34906         * class.c: fix mono_class_from_mono_type () for szarray types.
34907         Remove unused cache check in mono_class_from_type_spec().
34908         * icall.c: *type_from_name () functions handle simple arrays and byref.
34909         * reflection.c: handle byref and szarray types. Handle methods without
34910         body (gets P/Invoke compilation working). Handle types and fields in
34911         get_token ().
34912         * reflection.h: add rank to MonoTypeInfo.
34914 2002-01-10  Dick Porter  <dick@ximian.com>
34916         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34917         internal calls
34919 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34921         * icall.c: initialize class in type_from_handle ().
34922         Loop also in parent classes for get_method ().
34923         * reflection.c: properly encode class and valuetype types.
34924         Start on encoding TypeBuilder types. Handle fieldrefs.
34925         Use correct length when registering a user string.
34926         Handle ConstructorBuilder and MonoMethod in get_token ().
34927         Make mono_type_get_object () aware of cached types.
34928         * object.c: back out change to mono_string_new ().
34930 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34931         * object.c: mono_string_new should return a NULL when the string 
34932         passed in is NULL -- not try to deference it.
34933         
34934 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34936         * icall.c: hack to make IsSubType work for TypeBuilders.
34937         * reflection.c: emit constructors before methods.
34938         Retrieve param names in mono_param_get_objects().
34940 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34942         * Makefile.am: fix list of headers and sources so automake 1.5
34943         doesn't complain. Removed \# at end of list.
34945 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34947         * reflection.c: get token for a method ref. Set return type of
34948         constructor to void.
34949         * loader.c: debug message.
34950         * class.c: typo fix.
34952 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34954         * icall.c: fix array init with rank > 1. FindMembers
34955         loops in parent class as well.
34956         * image.c: do not insert nested types in name cache.
34957         * reflection.c: warning fix.
34958         * reflection.h: add override method (for interface impl).
34960 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34962         * metadata.c: fix customattr decoding.
34964 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34966         * rawbuffer.cs: Added native Win32 implementation, avoids using
34967         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34969 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34971         * class.c: make the low-level routines handle the cache.
34973 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34975         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34977 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34979         * class.c: fix mono_array_element_size() for objects.
34980         * class.h, class.c: add properties to MonoClass and load them
34981         at init time.
34982         * icall.c: check with isinst() when assigning a value to an array
34983         instead of requiring the classes to match exactly.
34984         Implemented icall for System.Type::GetType().
34985         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34986         enums. Handle bindingflags when looking for methods and fields.
34987         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34988         and mono_metadata_methods_from_property().
34989         * reflection.h, reflection.c: added structures for propreties,
34990         parameters and enums. Implemented mono_property_get_object() and
34991         mono_param_get_objects().
34993 2001-12-18  Dick Porter  <dick@ximian.com>
34995         * file-io.c: Use mono_string_to_utf16() instead of
34996         mono_string_chars()
34998         * object.c: Added mono_string_to_utf16(), which copies the non
34999         NULL-terminated MonoString into a new double-null-terminated
35000         buffer.
35002 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
35004         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
35006 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
35008         * file-io.c: raise exceptions if handle is invalid.
35010 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
35012         * assembly.c: yet another check for mscorlib.
35013         * class.c, class.h: load nesting info for classes.
35014         * icall.c: many new functions to support the Reflection classes.
35015         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
35016         * reflection.h, reflection.c: mono_image_create_token(),
35017         mono_assembly_get_object(), mono_type_get_object(),
35018         mono_method_get_object(), mono_field_get_object(): methods to return
35019         objects that parallel the C representation of assemblies, types,
35020         methods, fields.
35022 2001-12-11  Dick Porter  <dick@ximian.com>
35024         * icall.c:
35025         * file-io.c: Internal calls for file IO.
35027 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
35029         * tabledefs.h: missing FileAttributes.
35030         * verify.h, verify.c: use is_valid_string () to simplify and check for
35031         valid strings more correctly. Fix warnings and speeling.
35032         Check more tables: Filed, File, ModuleRef, StandAloneSig.
35033         Check code: branches, maxstack, method calls.
35035 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
35037         * object.c (mono_object_allocate): removed static, so that the jit
35038         can allocate value types.
35040         * icall.c (ves_icall_System_DateTime_GetNow): impl.
35042 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35044         * class.c: init enum types right away and register the
35045         token->MonoClass map in mono_class_create_from_typedef ().
35046         * verify.h, verify.c: first cut of the verifier.
35047         * pedump.c: add --verify switch to verify metadata tables.
35048         * tabledefs.h: add some missing enums.
35050 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
35052         * class.c (mono_install_runtime_class_init): impl.
35053         (mono_class_init): renamed mono_class_metadata_init to
35054         mono_class_init, also removed the metadata_inited flag
35056         * object.c (mono_object_isinst): use faster algorithm
35058 2001-11-30  Radek Doulik  <rodo@ximian.com>
35060         * mono-endian.h: reverted last change
35061         added function prototypes
35063         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
35064         add mono-endian.c back
35066         * mono-endian.c: returned back, as Paolo pointed out, it's needed
35067         for unaligned access, I've mistaked it with endianess. I am
35068         sorry.
35069         (mono_read16): fix reverted endianess
35070         (mono_read64): ditto
35071         (mono_read32): ditto
35073 2001-11-30  Dick Porter  <dick@ximian.com>
35075         * exception.c: Implement mono_exception_from_name()
35077 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35079         * metadata.h, metadata.c: remove params_size and locals_size and their
35080         calculation from the metadata code: they are only usefult to the
35081         interp.
35083 2001-11-29  Radek Doulik  <rodo@ximian.com>
35085         * object.c (mono_ldstr): swap bytes here, it's probably not the
35086         best place, but works for me now, I'll redo it once I know mono
35087         better, also note that I add PROT_WRITE and don't reset back, also
35088         note that it's only affects big endians, so x86 should be OK
35090         * mono-endian.h (read16): use just glib macros for both endians
35092         * mono-endian.c: removed as glib macros are used in in
35093         mono-endian.h so we don't need to care about endianess for read
35094         macros as glib does that for us already
35096 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
35098         * class.h, class.h: take minimum alignment into consideration so
35099         that the fields of a class remain aligned also when in an array.
35101 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35103         * loader.h, loader.c: add mono_method_get_param_names().
35104         * class.c: 0-init class fields.
35106 2001-11-26  Dick Porter  <dick@ximian.com>
35108         * icall.c:
35109         * threads-types.h:
35110         * threads.c: New file that handles System.Threading on all platforms
35112         * object.c: 
35113         * object.h: Remove the synchronisation struct from MonoObject,
35114         replace it with a pointer that gets initialised on demand
35116         * Makefile.am: Replace all the system-specific threading code with
35117         a single file that uses the new wrapper library
35119 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
35121         * class.c, class.h: add mono_install_trampoline() so that the runtime
35122         can register a function to create a trampoline: removes the ugly
35123         requirement that a runtime needed to export arch_create_jit_trampoline.
35124         * object.h, object.c: added mono_install_handler() so that the runtime
35125         can install an handler for exceptions generated in C code (with
35126         mono_raise_exception()). Added C struct for System.Delegate.
35127         * pedump.c: removed arch_create_jit_trampoline.
35128         * reflection.c: some cleanups to allow registering user strings and
35129         later getting a token for methodrefs and fieldrefs before the assembly
35130         is built.
35131         * row-indexes.h: updates and fixes from the new ECMA specs.
35133 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
35135         * class.h, class.c: add enum_basetype field to MonoClass.
35136         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
35137         to get index in the constant table reated to a field, param or
35138         property.
35139         * reflection.h, reflection.c: handle constructors. Set public-key and
35140         version number of the built assembly to 0.
35141         * row-indexes.h: update from new ECMA spec.
35143 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35145         * class.h, class.c: add a max_interface_id to MonoClass.
35146         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
35147         since it's used to do that. Added mono_type_type_from_obj().
35148         Make GetType() return NULL instead of segfaulting if the type was not
35149         found. Handle simple arrays in assQualifiedName.
35150         * object.h: add a struct to represent an Exception.
35151         * reflection.c: output call convention in method signature.
35152         Add code to support P/Invoke methods and fixed offsets for fields.
35154 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
35156         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
35157         the value.
35158         * icall.c: use mono_array_addr instead of array->vector: fixes the
35159         reflection image writing.
35160         * reflection.c: init call convention byte to 0 in method signature.
35161         Encode the property signature. Don't output property-related methods
35162         twice. Really process the properties for a type (don't cast a field to
35163         a property, my mom always told me that).
35164         Fix 64 bit issues in pointer alignment in a different and more
35165         readable way.
35167 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
35169         * loader.h: Removed type class from MonoDefaults, added monotype
35171         * loader.c: Loaded MonoType, removed loading of Type
35173         * icall.c (my_mono_new_object): Now returns a System.MonoType,
35174         and fills in System.Type._impl with a RuntimeTypeHandle rather
35175         than the actual MonoClass *
35177         (ves_icall_type_from_handle): change from type_class to
35178         monotype_class
35180         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
35181         implemented
35183         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
35184         implemented
35186         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
35188         (ves_icall_System_Reflection_Assembly_GetType): implemented
35190         (ves_icall_System_MonoType_assQualifiedName): implemented
35192         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
35194 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
35196         * assembly.c (mono_assembly_open): Implement a cache for the
35197         assemblies. 
35199         (mono_assembly_close): only destroy the assembly when the last
35200         reference is gone.
35201         
35202 2001-11-09  Dick Porter  <dick@ximian.com>
35204         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
35206 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
35208         * class.c (mono_class_metadata_init): bug fix: compute the right slot
35210 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35212         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
35213         from Martin Weindel.
35214         * object.h: add mono_string_chars ().
35216 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
35218         * reflection.c (build_compressed_metadata): Eliminates warnings
35219         and uses 64-bit clean code.
35221         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
35222         (mono_type_equal): Change signature to eliminate warnings.
35224 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35226         * icall.c, loader.c: remove the internalcall array constructors.
35227         Changes to match the new MonoArray structure.
35228         * object.h, object.c: an array object doesn't allocate an extra
35229         vector. Add mono_array_new_full () to create jagged arrays easily.
35231 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35233         * metadata.h, metadata.c: add mono_metadata_field_info () to
35234         retreive all the info about a field from vairous tables.
35235         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
35236         * class.h, class.c: augment MonoClassField with more info.
35237         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
35238         policy and load a field's RVA if needed.
35240 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
35242         * class.c (mono_class_metadata_init): create a trampoline for all
35243         virtual functions instead of actually compiling them.
35245 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
35247         * class.h, class.c: include name in MonoClassField.
35248         * class.c: fix fundamental type of System.Object and System.String.
35249         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
35250         tokens in ldtoken.
35251         * icall.c: remove internalcalls for the Reflection stuff that is now
35252         done in C# code.
35253         * loader.c: mono_field_from_memberref () implementation.
35254         * mono-endian.c: thinko (s/struct/union/g).
35255         * object.c, object.h: make the mono_string_* prototypes actually use
35256         MonoString instead of MonoObject.
35257         * reflection.c, reflection.h: updates for changes in the reflection
35258         code in corlib: we use C structures that map to the actual C# classes.
35259         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
35260         fat method header if needed and use the info from the ILGenerator for
35261         methods. Handle fields in types. Misc fixes.
35263 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
35265         * class.c (mono_class_metadata_init): bug fix: always allocate
35266         space for static class data
35268 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
35270         * class.c (mono_compute_relative_numbering): use relative
35271         numbering to support fast runtime type checks.
35273 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
35275         * class.c (mono_class_create_from_typeref): added debugging output
35276         to print class name when MonoDummy is returned instead of real class
35278 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
35280         * class.c (mono_class_metadata_init): interface offset table now
35281         contains pointers into the vtable - this is more efficient for the jit
35283 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
35285         * class.c (mono_class_metadata_init): use a temporary vtable (the
35286         old algorithm only worked for the interpreter, but not for the jit)
35288 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
35290         * loader.c (method_from_memberref): use mono_class_get to get the
35291         class of an array instead of using System.Array directly.
35292         (mono_get_method): also add MEMBERREF methods to the method cache
35293         which usefull for arrays.
35295 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
35297         * pedump.c (arch_compile_method): added to compute vtable entry
35299         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
35300         number of interfaces.
35301         
35302         * class.h: merged MonoArrayClass into MonoClass
35304         * class.c (mono_class_create_from_typedef): compute the vtable size and
35305         allocate space to include the vtable inside MonoClass
35306         (mono_class_metadata_init): initialize the vtable
35308 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
35310         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
35311         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
35312         * image.c: endian fixes by Laurent Rioux.
35313         * object.h, object.c: rename MonoStringObject to MonoString and
35314         MonoArrayObject to MonoArray. Change some function names to conform to
35315         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
35316         guint16* as first argument, so don't use char*.
35317         Provide macros to do the interesting things on arrays in a portable way.
35318         * threads-pthread.c: updates for the API changes and #include <sched.h>
35319         (required for sched_yield()).
35320         * icall.c: updates for the API changes above.
35321         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
35322         platforms that need them.
35324 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35326         * class.c: set the correct type for all the fundamental
35327         type when loading the class.
35329 2001-10-05  Dick Porter  <dick@ximian.com>
35331         * threads-pthread.c (pthread_mutex_timedlock): Simple
35332         compatibility version for C libraries that lack this call.
35334 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35336         * class.c: MonoTypes stored in MonoClass are stored as
35337         fundamental MonoTypes when the class represents a
35338         fundamental type (System.Int32, ...).
35339         The TypeHandle return by ldtoken is a MonoType*.
35340         * icall.c: ves_icall_get_data_chunk () write out all the
35341         PE/COFF stuff. Implement ves_icall_define_method (),
35342         ves_icall_set_method_body (), ves_icall_type_from_handle ().
35343         * image.c: properly skip unknown streams.
35344         * loader.h, loader.c: add type_class to mono_defaults.
35345         * metadata.c, metadata.h: export compute_size () as
35346         mono_metadata_compute_size () with a better interface.
35347         Typo and C&P fixes.
35348         * pedump.c: don't try to print the entry point RVA if there is no entry point.
35349         * reflection.c, reflection.h: many cleanups, fixes, output method
35350         signatures and headers, typedef and typeref info, compress the metadata
35351         tables, output all the heap streams, cli header etc.
35352         * row-indexes.h: typo fixes.
35354 2001-10-04  Dick Porter  <dick@ximian.com>
35356         * object.h: Add a synchronisation mutex struct to MonoObject
35358         * object.c (mono_new_object): Initialise the object
35359         synchronisation mutexes
35361         * icall.c: System.Threading.Monitor internal calls
35362         
35363         * threads-pthread.h:
35364         * threads-pthread.c: System.Threading.Monitor internal calls
35366         * threads-types.h: New file, includes the system-specific thread
35367         structures
35368         
35369         * threads-pthread-types.h:
35370         * threads-pthread-types.c: New files, handle pthread-specific
35371         synchronisation types
35373         * threads-dummy-types.h: 
35374         * threads-dummy-types.c: New files of dummy support for
35375         thread-specific types
35377         * metadata.c:
35378         * image.c:
35379         * pedump.c: include mono-endian.h not endian.h
35380         
35381         * Makefile.am: More threads files.
35382         Name mono-endian.h not endian.h
35384 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
35386         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
35387         stuff and implement a few more bits.
35388         * icall.c: a field needs to be dereferenced twice. Do not use the same
35389         name for two variables in the same scope.
35390         * image.c, image.h: cleanups.
35392 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
35394         * class.c (mono_class_metadata_init): bug fix: compute the right size
35396 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
35398         * icall.c: implemented some of the Reflection internalcalls.
35399         * image.c, image.h: start writing out the PE/COFF image.
35400         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
35401         that does the reverse than decode_blob_size ().
35402         * object.c: use mono_metadata_encode_value (). Move here
35403         temporary implementation of mono_string_to_utf8 ().
35404         * rawbuffer.c: make malloc_map static.
35406 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35408         * metadata.c: fix type comparison for arrays.
35409         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
35410         Added a couple of new classes to monodefaults.
35411         * icall.c: added a couple of Reflection-related internalcalls.
35412         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
35413         Added a byval_arg MonoType to MonoClass.
35415 2001-09-28  Dick Porter  <dick@ximian.com>
35417         * icall.c:
35418         * threads-pthread.h: 
35419         * threads-pthread.c: Implemented internal calls for
35420         LocalDataStoreSlot operations.  Applied mutexes around all shared
35421         data.  Reworked the thread creation and Start() operations to
35422         avoid a race condition.
35423         
35424         * threads-dummy.h:
35425         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
35427 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
35429         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
35431 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
35433         * class.c, loader.c: warn and return NULL instead of erroring out.
35434         * icall.c: added System.AppDomain::getCurDomain().
35435         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
35437 2001-09-25  Dick Porter  <dick@ximian.com>
35439         * threads-pthread.h:
35440         * threads-pthread.c: Implemented timed thread joining and added
35441         System.Threading.Thread::Join_internal internal call
35443         * icall.c: Added System.Threading.Thread::Join_internal internal call
35445         * threads-dummy.h:
35446         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
35448 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
35450         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
35451         mono_string_intern () to implement the semantics of the ldstr opcode
35452         and the interning of System.Strings.
35453         * icall.c: provide hooks to make String::IsIntern and String::Intern
35454         internalcalls.
35456 2001-09-23  Dick Porter  <dick@ximian.com>
35458         * threads-dummy.c: 
35459         * threads-dummy.h: New files of dummy threading routines
35461         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
35462         support code based on system specifics
35464         Rename PTHREAD_LIBS to THREAD_LIBS
35465         
35466 2001-09-23  Dick Porter  <dick@ximian.com>
35468         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
35469         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
35470         internal calls.
35471         (mono_thread_init): Set up a Thread object instance to return when
35472         the main thread calls Thread.CurrentThread
35473         (mono_thread_cleanup): Wait for all subthreads to exit
35475         * icall.c: New internal calls for System.Threading.Thread::Sleep
35476         (including Schedule) and CurrentThread
35478         * threads.h: New file, to insulate thread-specific stuff from the
35479         rest of the code
35481 2001-09-21  Dick Porter  <dick@ximian.com>
35483         * threads-pthread.h: 
35484         * threads-pthread.c: New file, for handling pthreads-style
35485         threading support.  Start() now starts a new thread and executes
35486         the ThreadStart delegate instance.
35488         * icall.c: Added the internalcall for
35489         System.Threading.Thread::Start_internal
35491         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
35493 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
35495         * loader.c: work around the different signatures for delegates
35496         constructors csc generates in compiled code vs the ones compiled in mscorlib.
35498 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35500         * class.h, class.c: add mono_class_get_field_from_name ().
35501         * *: Fix C comments and other ANSI C issues.
35503 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
35505         * endian.h, assembly.c: fix some endianness issues.
35507 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
35509         * loader.h, load.c: add delegate_class to mono_defaults.
35510         Handle runtime provided methods in mono_get_method ().
35512 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
35514         * loader.c (mono_get_method): use pinvoke for internal call
35516         * icall.c: use pinvoke for internal call
35518         * loader.c (method_from_memberref): set the method name
35520 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
35522         * metadata.c: help the compiler generate better code for
35523         mono_class_from_mono_type ().
35525 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
35527         * class.c (mono_class_metadata_init): delayed computing of the
35528         class size to mono_class_metadata_init ()
35530 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
35532         * class.c, class.h: add an interfaces member to MonoClass.
35533         * image.c, image.h: add assembly_name field to MonoImage
35534         from the assembly table.
35535         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
35537 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35539         * class.c: Handle Array in mono_class_from_mono_type ().
35540         * metadata.c, pedump.c: some endian fixes.
35542 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35544         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
35545         * metadata.c: fix small problem introduced with the latest commit.
35547 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
35549         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
35550         We don't need a MonoMetadata pointer anymore to compare signatures in
35551         mono_metadata_signature_equal (), update callers.
35552         Reduced memory usage an number of allocations for MonoMethodHeader and
35553         MonoMethodSignature.
35555 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
35557         * metadata.c: added compare for szarray.
35559 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
35561         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
35562         and add a couple more types to it and mono_defaults. Give an hint on
35563         classes that need implementing in our corlib and are referenced
35564         in mscorlib.
35566 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
35568         * class.h, class.c: keep track if a class is also an Enum.
35569         * loader.c: Implement a couple more types for use in libffi
35570         marshalling. Gives better diagnostics when failing to dlopen
35571         a library. Set method->klass for P/Invoke methods, too.
35573 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35575         * class.c, class.h: add a MonoType this_arg to MonoClass that
35576         represents a pointer to an object of the class' type that
35577         can be used by the interpreter and later the type cache.
35578         Add best guess alignment info for valuetype objects.
35580 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35582         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35583         into MonoType: one less level of indirection and allocation and
35584         simplifies quite a bit of code. Added cache for MonoTypes that are
35585         used frequently, so that we don't need to allocate them all the time.
35587 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35589         * class.c (mono_class_create_from_typedef): System.Enum is also a
35590         value type, although it does not derive from System.ValueType
35591         (maybe a bug in the ms compiler?)
35593         * metadata.c (mono_type_size): return the right size for value types
35595         * loader.c (mono_get_method): only initialize method header if not abstract
35597         * class.c (mono_class_from_mono_type): use mono_default values. 
35599 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35601         * *: use MonoClass pointers instead of <type_tokens>
35602         
35603         * class.h: new flag: metadata_inited.
35605         * class.c (mono_class_metadata_init): impl.
35606         (mono_class_instance_size): impl.
35607         (mono_class_data_size): impl.
35609 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35611         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35612         MonoClass now has the name and name_space fields. 
35613         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35614         mono_get_method () takes and optional MonoClass as argument.
35615         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35616         instead that takes advantage of a map from class names to typedef
35617         tokens in MonoImage.
35619 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35621         * metadata.c: zero is not a valid alignment boundary.
35622         Merge MONO_TYPE_VOID in default decoding code.
35624 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35626         * image.h: merged MonoMetadata into MonoImage
35628         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35629         identify the type of elements.
35631 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35633         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35634         * cil-coff.h: split MonoMSDOSHeader and add size info.
35635         * image.c: add some consistency checks.
35636         * metadata.c: fix row size computation: one programmer
35637         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35638         add explanation for the locator routine.
35639         Fix decoding of size in method header.
35640         
35641 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35643         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35644         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35645         function from gnome-libs.  This uses the right path separator
35646         based on the OS, and also works around a bug in some systems where
35647         a double slash is not allowed. 
35648         (default_assembly_name_resolver): Use g_concat_dir_and_file
35649         (mono_assembly_open): ditto.
35651 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35653         * metadata.c (mono_metadata_signature_equal): impl.
35655         * *: void is now a realy MonoType (instead of using NULL)
35656         
35657         * metadata.c (do_mono_metadata_parse_type): use
35658         mono_metadata_parse_type to parse void value.
35660 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35662         * metadata.c, metadata.h: in the signature and method header store
35663         only the space required for holding the loca vars and incoming arguments.
35665 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35667         * metadata.c (do_mono_metadata_parse_type): treat void like any
35668         other type (instead of assigning NULL);
35670 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35672         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35674 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35676         * image.c (do_mono_image_open): added a cache for arrays.
35678 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35680         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35681         decode a single column from a row in a metadata table and changes
35682         to take advantage of it in the typedef locator (gives a nice speed up).
35683         Store offset info for function params.
35685 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35687         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35689 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35691         * assembly.c: how could mono_assembly_close () had ever worked?
35692         * metadata.c, metadata.h: provide offset info for local vars.
35693         Implement mono_type_size () to take care of alignment as well
35694         as size (it was mono_field_type_size in cli/class.c before).
35696 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35698         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35700         * assembly.h (CORLIB_NAME): set to corlib.dll
35702         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35704 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35706         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35707         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35708         tokentype.h: massive namespace cleanup.
35710 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35712         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35714 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35716         * metadata.c (mono_metadata_free_type): added check for type !=
35717         NULL (void) before calling mono_metadata_free_type()
35719 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35721         * metadata.h, row_indexes.h: added header with enumerations to use
35722         to index in the columns from tables in metadata and to decode coded
35723         tokens: we should start using this instead of embedding magic numbers
35724         all over the code.
35726 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35728         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35729         Move metadata_t info from cli_image_info_t to MonoImage, where
35730         it's easily accessible. Changed all the uses accordingly.
35731         Added the method and class caches to MonoImage.
35732         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35733         and mono_metadata_decode_value () signature to be more consistent
35734         with the other parse functions (and simplify code). Taken advantage
35735         of zero-length array allocation with GCC. Removed reduntant (and
35736         wrong) MonoFieldType struct and use MonoParam instead. Changed
35737         mono_metadata_parse_field_type () to use common code for parsing.
35738         Added mono_metadata_typedef_from_field () and
35739         mono_metadata_typedef_from_method () to lookup a typedef index from a
35740         field or method token.
35741         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35743 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35745         * metadata.c (mono_metadata_parse_field_type): Implement. 
35746         (do_mono_metadata_parse_type): Split engine from
35747         mono_metadata_parse_type, so that we can create smaller structures
35748         for things that just have one pointer to the MonoType (look at
35749         the MonoFieldType)
35751 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35753         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35754         as Jan Gray found out, it is incorrect. 
35756 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35758         * assembly.c: Implement asssembly loading.  This loads an image
35759         and loads all the referenced assemblies.  Come to think of it, we
35760         could always do lazy loading of the assemblies. 
35762         * image.c (mono_image_open): Keep loaded images in a hashtable.
35764         * image.h (MonoImage): Add reference count.
35766 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35768         * assembly.c (mono_assembly_open): Keep track of the file name in
35769         case the assembly has no ASSEMBLY table.
35771         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35772         from get.c here.
35774 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35776         * metadata.c, metadata.h: decode local vars in method header
35777         parse function. Change callers accordingly.
35779 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35781         * metadata.h, cil-coff.h: protect against multiple inclusion.
35782         Added some new structures to hold information decoded from metadata:
35783         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35784         and relevant decoding/free functions.
35785         * metadata.c: implement decoding functions. Add warning for out of bounds
35786         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35787         all the info about a method signature and invocation. Remove check on
35788         uninitialized local var in parse_mh() and fix memory leak.
35790 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35792         * metadata.h: More macros.
35794         * tokentype.h: New file.
35796 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35798         * assembly.c: added a consistency check and initialize
35799         some structures with g_new0().
35800         * metadata.c: fixed a couple more bugs in table size computation
35801         and add other checks for out-of bound access to metadata.
35803 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35805         * metatada.c: fix bugs computing table sizes. Spew a
35806         warning when index in string heap is out of bounds.
35808 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35810         * metadata.h: Add a couple of macros to manipulate tokens. 
35812 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35814         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35815         cli_section_tables).
35817 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35819         * metadata.c (mono_metadata_user_string): New function, provides
35820         access to the UserString heap. 
35822 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35824         * metadata.c: Add inline documentation.
35826 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35828         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35829         files. 
35831 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35833         * typeattr.h: New file, TypeAttribute flags. 
35835 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35837         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35838         mono_assembly_ensure_section): Section loading code.
35839         (load_section_tables): Load the sections.
35841         * mono/metadata/metadata.c (mono_metadata_locate_token,
35842         mono_metadata_locate): Functions to locate the information
35843         definition given a token or a table and an index.
35844         (mono_metadata_compute_table_bases): New.
35845         (compute_size): New function to compute the sizes of the various
35846         tables.
35848         * mono/metadata/metadata.h: Finish listing the different index
35849         types. 
35851         * mono/metadata/pedump.c: Improve to dump new information.
35853 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35855         * mono/metadata/metadata.c: Entered all the tables matching
35856         Beta2. 
35858         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2