2009-05-22 Miguel de Icaza <miguel@novell.com>
[mono/afaerber.git] / mono / metadata / ChangeLog
blob403fe6e153d6dcaed29c69e0cb41b1c60b732d58
1 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3         * icall.c: Remove warnings.
5         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
6         prevent auto-detection based on GCC defines.
8         Add PS3
10         * metadata-verify.c: Do not include signal.h
12         * generic-sharing.c, marshal.c: Add returns to avoid some warning
13         messages.  Not sure why the g_assert_not_reached is not enough to
14         quiet the compiler.
15         
17         * appdomain.c: Remove code that is not used when
18         DISABLE_SHADOW_COPY is set.
20         * image.c: use g_getenv
22 2009-05-21  Miguel de Icaza  <miguel@novell.com>
24         * reflection.c: Remove code that it not used with
25         DISABLE_REFLECTION_EMIT is defined.
27 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
29         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
30         invoke wrappers.
32 2009-05-20  Miguel de Icaza  <miguel@novell.com>
34         * socket-io.c
35         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
36         the ifdef here and instead put that on io-layer
38 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
40         * metadata-verify.c: Verify the generic param constraint table.
42 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
44         * metadata-verify.c (verify_generic_param_table): Fix
45         thinko on the valid flags bits for generic params.
47 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
49         * metadata-verify.c: Verify the methodspec table.
51 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
53         * metadata-verify.c: Verify the generic param table.
55 2009-05-19  Mark Probst  <mark.probst@gmail.com>
57         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
59 2009-05-19  Mark Probst  <mark.probst@gmail.com>
61         * sgen-gc.c: Use generation enum more consistently and use the
62         correct generation in mono_gc_register_for_finalization().
64 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
66         * metadata-verify.c: Verify the nested class table.
68 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
70         * metadata-verify.c: Verify the manifest resource table.
72 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
74         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
76 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
78         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
79         wrappers, this is now done in the JIT.
80         
81         * class.c (mono_set_generic_sharing_supported): New internal function.
82         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
84 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
86         * metadata-verify.c: Verify the exported type table.
88 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
90         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
92 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
94         * metadata-verify.c: Verify the file table.
96 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
98         * metadata-verify.c (verify_assembly_table): Fix an error message.
100         * metadata-verify.c: Verify the assemblyref table.
102 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
104         * metadata-verify.c (verify_assembly_table): Fix the valid
105         bits mask for flags.
107 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
109         * debug-helpers.c (mono_method_full_name): Print generic parameters of
110         generic methods as well.
112 2009-05-15  Geoff Norton  <gnorton@novell.com>
114         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
115         use-case and is significantly more performant than the wapi layer.
117 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
119         * metadata-verify.c: Verify the assembly table.
121 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
123         * metadata-verify.c: Fix rows limit check.
125 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
127         * metadata-verify.c: Verify the fieldrva table.
129 2009-05-13  Mark Probst  <mark.probst@gmail.com>
131         * sgen.c: Speed up weak links and finalizers by grouping them by
132         generation.
134 2009-05-13  Mark Probst  <mark.probst@gmail.com>
136         * marshal.c (delegate_hash_table_add): When overwriting an entry,
137         free the old GCHandle (only applies to SGen).
139 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
141         * loader.c (mono_get_method_from_token): Avoid the expensive call to
142         mono_metadata_load_generic_params () for non-generic methods.
144 2009-05-12  Mark Probst  <mark.probst@gmail.com>
146         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
147         New function for returning a monitor's weak link if it has one.
149         * sgen-gc.c: Remove an object's monitor's weak link (if it has
150         one) when clearing a domain.  These can still be around because
151         the object might not have been collected.
153 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
155         * gc.c: Fix a warning.
157 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
159         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
160         prevous wait that resulted in a deadlock on Windows when initializing
161         the runtime form DllMain. Also results in improved startup time.
162         (finalizer_thread): Get rid of thread_started_event.
163         * threads.c, threads-types.h (mono_thread_create_internal): Return the
164         resulting MonoThread.
166         Contributed under MIT/X11 license.
168 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
170         * metadata-verify.c: Verify the implmap table.
171         Don't require that #US and #Strings be present.
173 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
175         * security-core-clr.c: Delegate checks are done at creation time,
176         not a invocation time. Fix exception for Telerik Silverlight demo
178 2009-05-11  Mark Probst  <mark.probst@gmail.com>
180         * sgen-gc.c (need_remove_object_for_domain): Remove the special
181         case for the Thread class.
183         * threads.c: Do clean-up of abort exception/state in
184         thread_cleanup() instead of Thread.free_internal().  Also clean up
185         current_appcontext.  The reason we have to do that is because
186         those references might point into another domain and if that
187         domain is unloaded before the thread is finalized, they point to
188         invalid data.
190 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
192         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
193         stub signatures.
194         
195         Contributed unter MIT/X11 license.
197 2009-05-09  Miguel de Icaza  <miguel@novell.com>
199         * verify.c, metadata-verifier.c: Add support for disabling the
200         verifier in some builds.
202         [ Sorry, my previous commit accidentally commited some work in
203         progress ]
205 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
207         * class.c (mono_class_setup_fields): Set class->field.first for
208         generic instances.
210 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
212         * metadata-verify.c: Verify the typespec table.
214 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
216         * metadata-verify.c: Verify the module table.
218 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
220         * metadata-verify.c: Verify the methodimpl table.
222 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
224         * metadata-verify.c: Verify the property table.
226 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
228         * debug-helpers.c (mono_method_desc_match): Add support for generic
229         glob patterns.
231 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
233         * metadata-verify.c: Verify the propertymap table.
235 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
237         * metadata-verify.c: Verify the event table.
239         * metadata-verify.c (search_sorted_table): Fix offset
240         calculation.
242 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
244         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
246 2009-05-01  Mark Probst  <mark.probst@gmail.com>
248         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
249         because mono_delegate_free_ftnptr() needs it.
251 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
253         * metadata-verify.c: Verify the eventmap table.
255 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
257         * metadata-verify.c: Verify the standalonesig table.
259 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
261         * metadata-verify.c: Verify the field layout table.
263 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
265         * class.c (mono_type_get_name_recurse): Don't crash
266         for ownerless generic params.
268         * debug-helpers.c (mono_type_get_desc): Correct the format
269         for ownerless generic params.
271 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
273         * metadata-verify.c: Verify the class layout table.
275 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
277         * metadata-verify.c: Verify the decl security table.
279 2009-04-30  Mark Probst  <mark.probst@gmail.com>
281         * domain.c (mono_domain_set_internal_with_options): Don't do
282         anything if the old domain is the same as the old one.  Fixes
283         #499326.
285 2009-04-30  Mark Probst  <mark.probst@gmail.com>
287         * appdomain.c: Deregister the reflection_info roots when unloading
288         a domain.
290         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
291         memory allocated by a domain and frees its disappearing links.
293         * boehm-gc.c, null-gc.c: Empty implementation of
294         mono_gc_clear_domain().
296 2009-04-30  Mark Probst  <mark.probst@gmail.com>
298         * appdomain.c (clear_cached_vtable): Free the static fields memory
299         block.
301 2009-04-30  Mark Probst  <mark.probst@gmail.com>
303         * gc.c: Set the correct domain when invoking finalizers.
305         * appdomain.c: Set the correct domain when creating threads.
307 2009-04-30  Mark Probst  <mark.probst@gmail.com>
309         * sgen-gc.c: Fix skip size for vectors.
311 2009-05-03  Martin Baulig  <martin@ximian.com>
313         * mono-debug-debugger.c
314         (mono_debugger_check_breakpoints): Check class init handlers even
315         if we don't have any method load handers.
317 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
319         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
320         returning refonly assemblies if refonly is FALSE. Fixes #499013.
322 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
324         * metadata-verify.c: Verify the field marshal table.
326 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
328         * metadata-verify.c: Verify the custom attribute table.
330 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
332         * metadata-verify.c: Verify the constant table.
334 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
336         * metadata-verify.c: Verify the memberef table.
338 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
340         * metadata-verify.c (get_coded_index_token): Remove
341         dead argument.
343 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
345         * metadata-verify.c: Verify the interfaceimpl table.
347 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
349         * verify.c: Improve error message.
351         * debug-helpers.c (mono_type_get_desc): Harden the code that
352         deals with VAR and MVAR.
354 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
356         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
357         part of #498692.
359 2009-04-23 Tom Hindle <tom_hindle@sil.org>
361         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
362         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
364 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
366         * security-core-clr.c: Avoid redundant checks for platform code, 
367         e.g. check for method and for class (very common) and check
368         for class and outer class (less common)...
370 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
372         * reflection.c: Avoid returning random cattrs for synthetic methods.
373         Fixes #498545.
375 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
377         * assembly.c: assemblies in the GAC should never be shadow-copied.
379 2009-04-26  Mark Probst  <mark.probst@gmail.com>
381         * domain.c, domain-internals.h: Disable
382         track_resurrection_{objects,handles}_hash in MonoDomain if using
383         SGen.
385 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
387         * metadata-verify.c: Verify the param table.
389 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
391         * metadata-verify.c (verify_typedef_table): Range check FieldList and
392         MethodList.
394         * metadata-verify.c (verify_method_table): Proper check the ParamList
395         field.
397 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
399         * metadata-verify.c (verify_method_table): Check for runtime
400         implemented functions such as delegate .ctors. Remove spurious
401         printf.
402         
403 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
405         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
407 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
409         Don't allocate MonoGenericInfo for ownerless generic params.
410         * class-internals.h (MonoGenericParam::info): Move field to ...
411         (MonoGenericParamFull): ... this.  New struct.
412         (MonoGenericContainer::type_params): Change type to
413         MonoGenericParamFull.
414         (MonoGenericParam, MonoGenericContainer): Update accessors.
415         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
416         'info' field for ownerless generic param.
417         (mono_metadata_load_generic_params): Update to changes.
418         * reflection.c (mono_reflection_create_generic_class): Likewise.
419         (reflection_methodbuilder_to_mono_method): Likewise.
420         (mono_reflection_initialize_generic_parameter): Likewise.
422 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
424         Don't use MonoGenericParamInfo for ownerless generic params.
425         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
426         use ParamInfo class at all.
427         (mono_class_from_generic_parameter): Use them.
428         (make_generic_param_class): Fix a couple of instances where 'pinfo
429         == NULL' wasn't handle.
431 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
433         * class.c (make_generic_param_class): Carve out of ...
434         (mono_class_from_generic_parameter): ... here.
436 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
438         Simplify mono_class_from_generic_parameter
439         * class-internals.h (MonoGenericParamInfo::token): New field.
440         * metadata.c (mono_metadata_load_generic_params): Initialize it
441         from metadata.
442         * class.c (mono_class_from_generic_parameter): Use it instead of
443         searching through metadata.
445 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
447         * metadata-verify.c: Add verification of the method table.
449 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
451         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
452         Delegate::Invoke optimization.
454 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
456         * appdomain.c (mono_domain_create_appdomain_internal): Free the
457         string returned by get_shadow_assembly_location_base.
459         * appdomain.c (get_shadow_assembly_location_base): Add a comment
460         about caller's ownership.
462 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
464         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
465         reflection memory on domain unload.
467         * domain.c (mono_domain_free): Don't free refobject_hash, let the
468         reflection cleanup code do it.
470         * domain-internals.h: Add mono_reflection_cleanup_domain.
472         This fixes a memory leak for managed mirrors of reflection objects
473         on domain unload. 
475 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
477         * metadata-verify.c: Implement more verification of the field table.
479 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
481         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
482         doesn't try to parse the input assembly, which can be broken.
484 2009-04-23  Mark Probst  <mark.probst@gmail.com>
486         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
487         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
488         by using the lowest bit in the link to store whether the link is
489         tracked.  Move the track_resurrection hashes into boehm-gc.c.
491 2009-04-22  Miguel de Icaza  <miguel@novell.com>
493         * Makefile.am: Split the console support in platform specific code
494         and put together a framework for making this easy in the future so
495         that we can start splitting code instead of having a mess of PLATFORM_WIN32
497 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
499         * pedump.c: Fix a warning.
501 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
503         * verify.c (mono_delegate_type_equal): Compare valuetypes using
504         mono_class_from_mono_type to avoid bad interactions with the dual representation
505         of the generic type definition.
507 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
509         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
510         get the MonoClass for the call context type as it might be a generic
511         instance.
513         Fixes #491483.
515 2009-04-21  Mark Probst  <mark.probst@gmail.com>
517         * object-internals.h: The Thread object has no execution_context
518         member anymore.
520         * threads.c, threadpool.c, threads-types.h: Accessor functions for
521         the execution context.
523         * appdomain.c: Bump corlib version.
525 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
527         * verify.c (do_newobj): Improve error message.
529 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
531         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
532         is nested in the filter block.
534         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
535         block is not fully nested.
537         Fixes #495656.
539 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
541         * verify.c (verify_type_compatibility_full): Compare MonoClass and
542         not MonoType to check for equality of valuetypes as the generic type
543         definition allows for two different encodings: the generic type definition
544         class or a generic instance over the GTD arguments.
546         Fixes #496175.
548 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
550         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
552         * verify.c (do_initobj): Improve error message.
554 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
556         * metadata-verify.c: Enable pe verification as the issue with #496453
557         is that the authenticode data directory have a different unspecified
558         format. Ignore it for now.
560         * pedump.c: Run the metadata verifier together with the IL verifier.
562         Fixes ##496453.
564 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
566         * metadata-verify.c: Temporarily disable pe verification due to #496453.
568 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
570         * class.c (can_access_type): Check visibility against
571         the element type for pointers and arrays.
573         Fixes #496150.
575 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
577         * metadata-verify.c: Fix cli and table verification to use information
578         from the MonoImage. A lot of duplicated code got killed.
580 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
583         This patch starts to integrate the metadata verifier with the runtime code.
585         This patch causes major regression in functionality for the metadata verifier
586         as cli and table verification are disabled since they require to be ported to
587         use MonoImage information.
589         * image.c (do_mono_image_load): Split the code in this function
590         into mono_image_load_pe_data and mono_image_load_cli_data.
591         Add     care_about_pecoff parameter to not load pecoff data.
592         Call into the metadata verifier for pecoff and cli verification.
594         * image.c (mono_image_open_raw): New function that doesn't perform
595         any parsing of the image contents.
596         
597         The reason for the 3 new functions is to give pedump better control
598         into the interaction with the verifier.
600         * metadata-internals.h: Add new functions from image.c as part of the
601         internal mono API.
603         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
604         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
605         to make those functions work together with the runtime.
607         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
608         true if the image needs to be verified.
610         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
612         * pedump.c: Use new metadata verifier API.
614 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
616         * object.c (mono_install_vtable_trampoline): Make this receive a
617         trampoline creation function instead of trampoline, allowing the JIT
618         to use a different trampoline for each vtable.
620 2009-04-18  Mark Probst  <mark.probst@gmail.com>
622         * object.c (mono_raise_exception): Don't reset the thread abort
623         exception state here.
625 2009-04-18  Mark Probst  <mark.probst@gmail.com>
627         * icall-def.h: New icall for getting the thread abort exception
628         state for a thread.
630         * object.c, thread.c, object-internals.h: A thread's abort
631         exception state is now a GC handle.  To get the object it stands
632         for, we must move it into the current app domain, if it's
633         different than the one where it originated from.
635         * appdomain.c: Bump corlib version.
637         * domain.c, domain-internals.h: New function for setting the
638         domain and migrate the thread abort exception or not.
640 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
642         * metadata-verify.c: Add initial verification of the
643         field table.
645 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
647         * metadata-verify.c: Add a macro to conditionally enable
648         dumping of verification information. Add  make_coded_token
649         and search_sorted_table to enable search sorted tables
650         by a given coded token.
652 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
654         * metadata-verify.c: Add array mapping from table index
655         to description offset. Add get_col_offset and get_col_size
656         functions.
658 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
660         * metadata-verify.c: Add remaining table descriptions offsets.
661         Add remaining coded index descriptions.
663 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
665         * metadata-verify.c: Fixed constant table description.
666         Fixed calculation of HasCustomAttribute coded index size.
667         Fixed calculation of size for many table indexes. 
669 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
671         * pedump.c (dump_metadata): Dump table offset instead
672         of useless pointer in memory.
674 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
676         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
678 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
680         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
681         a missing of for interface types.
683 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
685         * metadata-verify.c (verify_pe_optional_header): Add comment of why
686         the code is commented.
688         * metadata-verify.c (verify_resources_table): Remove spurious printf
689         and don't fail if there are unmanaged resources. Gmcs generates a useless
690         one     for all assemblies - I bet it's some MS compatibility junk.
692 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
694         * metadata-verify.c (verify_typedef_table): Verify the extends field.
696         * metadata-verify.c (mono_image_verify): Add a is_corlib.
698         * verify-internals.h: Same.
700         * pedump.c: Fix for mono_image_verify new signature.
702 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
704         * metadata-verify.c (verify_typedef_table): Verify for some invalid
705         flags combinations.
707 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
709         * metadata-verify.c (verify_module_table): Ignore the generation field.
711 2009-04-15  Martin Baulig  <martin@ximian.com>
713         * debug-mono-symfile.c
714         (mono_debug_symfile_lookup_location): Don't print a warning for
715         unknown extended opcodes if they're within 0x40 and 0x7f.
717 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
719         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
720         invoke signatures returning an enum. Fixes #494847.
722 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
724         * metadata-verify.c: Initial code to verify the typedef table.
726 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
728         * verify.c (mono_method_verify): Don't fail if an unconditional branch
729         with non empty stack happens before the beginning of a try block.
731         Fixes #494812.
733 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
735         * metadata-verify.c: Verify typename and typenamespace fields of
736         the typeref table.
738 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
740         * metadata-verify.c: Initial code to verify the typeref table.
742 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
744         * verify.c (verify_delegate_compatibility): Fix error message.
746 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
748         * security-core-clr.c: Fix typo
750 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
752         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
753         a MonoGHashTable to keep its values alive.
754         (emit_marshal_boolean): Fix a warning.
756 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
758         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
759         not have any interface configured for IPv4/IPv6.
761 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
763         * assembly.c: fix typo in error message.
765 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
767         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
768         allocating the location holding the this argument to prevent
769         'too many root sets' errors.
771         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
772         to mark fields as special static.
773         (mono_field_static_get_value): Handle special static fields.
774         (mono_field_static_set_value): Ditto.
776         * class-internals.h (struct _MonoClassField): Document this.
778 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
780         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
781           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
782           case.  This will handle when managed code returns null to native code.
784         Code is contributed under MIT/X11 license.
786 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
788         * object.c (build_imt_slots): Changing a free to a g_free to match
789           the g_malloc0 in add_imt_builder_entry that allocated this memory.
791         Code is contributed under MIT/X11 license.
793 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
795         * marshal.c (emit_marshal_boolean): Adding code to ensure that
796           the correct TRUE value is passed through the marshaling layer.
798         Code is contributed under MIT/X11 license.
800 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
802         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
803         correctly. Fixes #492330.
804         
805         * marshal.c: Fix the embedding of object pointers into JITted code in
806         the native-to-managed wrappers by allocating some GC tracked memory, and
807         embedding the address of that.
809 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
811         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
812         pointers into the vtable.
814 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
816         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
818         * verify.c (verify_ldftn_delegate): Improve error message.
820 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
822         * reflection.c (my_mono_class_from_mono_type): Remove.
824 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
826         Prepare to reduce memory usage of owner-less generic parameters (1/n)
827         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
828         and constraints fields into ...
829         (MonoGenericParamInfo): ... this.
830         (mono_generic_param_info, mono_generic_container_get_param_info):
831         New accessors.
832         * class.c, debug-helpers.c, icall.c: Update to changes.
833         * metadata.c, reflection.c, verify.c: Likewise.
835 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
837         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
839         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
840         
841         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
842         booleans with sbytes.
844 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
846         * class.c (can_access_instantiation): Verify accesibility of element types
847         for arrays and pointers.
849         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
851         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
853         Fixes #493068.
855 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
857         * verify.c (do_invoke_method): Improve error messages.
859 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
861         * verify.c:  Fixing the MSVC build.
863         Code is contributed under MIT/X11 license.
865 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
867         * security-core-clr.c: Simplify get_reflection_caller not to call
868         mono_method_get_last_managed (another stack walk) and adjust the
869         callers to handle a (should not happen) NULL return value.
871 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
873         Add accessors to some MonoGenericParam fields
874         * class-internals.h (mono_generic_param_owner): New accessor.
875         (mono_generic_param_num): Likewise.
876         (mono_type_get_generic_param_owner): New helper.
877         (mono_type_get_generic_param_num): New helper.
878         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
880 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
882         * class-internals.h (mono_generic_container_get_param): New wrapper.
883         * class.c, icall.c, metadata.c, verify.c: Use it.
885 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
887         Fix gtest-252.cs
888         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
889         the standard case/loop.  In particular, don't complain about
890         references to generic type definitions.
892 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
894         * debug-helpers.c (dis_one): Decode string arguments.
896 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
898         * pedump.c (dump_verify_info): Dump type name correctly.
900 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
902         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
903         are larger than code size.
905         This can happen in valid code if the try/catch block is not followed by any instruction
906         and do a backward branch on the leave instruction.
908         Fixes #492494.
910 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
912         * security-core-clr.c: Fix typo while comparing second method names
913         in can_avoid_corlib_reflection_delegate_optimization
915 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
917         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
919         Fixes #487738.
921 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
923         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
924         a MVAR using a class context.
926         Fixes #490335.
928 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
930         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
932         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
934         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
935         functions supplied by the JIT for the SGEN GC.
937         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
938         
939 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
941         monitor.c (mono_monitor_try_enter_internal):
942         Added calls to profile monitor contentions.
943         Also duplicated a small piece of code (the "get the monitor" logic)
944         from the fast path to the slow path, and changed the relevant goto
945         statements, so that monitor acquisition events can be emitted from the
946         slow path (this is by Paolo Molaro).
948 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
950         * profiler.c, profiler.h, profiler-private.h:
951         Added support for profiling monitor contentions.
953 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
955         * metadata-verify.c: Verify the modules table.
957 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
959         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
960         using the context of the method been verifier and not of the method been called.
962         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
963         safely inflate generic types. 
965 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
967         * security-core-clr.c: Change the strategy for checking the 
968         "reflection using delegates optimization" to avoid unneeded 
969         attributes in multiple class libraries.
971 2009-04-02  Mark Probst  <mark.probst@gmail.com>
973         * sgen-gc.c: Remove object element in the disappearing link struct
974         by storing the object pointer in the link.
976 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
978         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
980 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
982         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
984         * verify.c (mono_method_verify): Do proper bounds checking of exception
985         clause ranges.
987 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
989         * loader.c (mono_field_from_token): Don't crash if the field parent could
990         not be decoded.
992 2009-03-31  Mark Probst  <mark.probst@gmail.com>
994         * sgen-gc.c: Execute critical finalizers after ordinary
995         finalizers.
997         * class-internals.h, domain.c: Add CriticalFinalizerObject to
998         mono_defaults.
1000 2009-03-31 Jb Evain <jbevain@novell.com>
1002         * verify.c (do_ldstr): don't check if a string is in the user strings
1003         heap if the current image is dynamic.
1005 2009-03-31  Mark Probst  <mark.probst@gmail.com>
1007         * sgen-gc.c: Wait until the last finalizer has executed when
1008         returning from WaitForPendingFinalizers.
1010 2009-03-31  Martin Baulig  <martin@ximian.com>
1012         * mono-debug-debugger.h (MonoDebuggerEvent): Add
1013         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
1014         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
1015         (mono_debugger_event_create_appdomain): New function.
1016         (mono_debugger_event_unload_appdomain): New function.
1018         * appdomain.c (mono_domain_create_appdomain_internal): Call
1019         mono_debugger_event_create_appdomain().
1021 2009-03-31  Martin Baulig  <martin@ximian.com>
1023         * mono-debug-debugger.c
1024         (mono_debugger_register_class_init_callback): Also register the
1025         class init callback if the class is already initialized to make
1026         things work with shadow copied assemblies.
1028 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
1030         * security-core-clr.c
1031         (mono_security_core_clr_ensure_reflection_access_field): Let 
1032         critical code access the field (just like we do for methods). Use
1033         check_field_access helper.
1034         (mono_security_core_clr_ensure_reflection_access_method): Use 
1035         check_field_access helper.
1037 2009-03-31  Mark Probst  <mark.probst@gmail.com>
1039         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
1040         call the run-finalize function directly.
1042         * gc.c, gc-internal.h: Make run_finalize() non-static.
1044 2009-03-31  Mark Probst  <mark.probst@gmail.com>
1046         * sgen-gc.c: Use a separate struct for disappearing links.
1048 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1050         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
1051         * MaxIOVectorLength enabled, just ignore them.
1052         Fixes bug #349688.
1054 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1056         * metadata-verify.c: Fix eglib build.
1058 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
1060         * threads-types.h: Fix the win32 build.
1062 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1064         * class.c: move coreclr inheritance/override checks to 
1065         security-core.clr.c
1066         * security-core.clr.c|h: add code from class.c with additional
1067         documentation. Fix override check when the method is not critical.
1069 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
1071         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
1072         (match_class): Ditto.
1074 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1076         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
1078         * metadata-verify.c: Implement table layout row size calculation. Verify
1079         the total size of the tables.
1081 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1083         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
1085 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1087         * appdomain.c:
1088         * console-io.[ch]: added new mono_console_init() to make sure that
1089         file descriptors 0, 1 and 2 are opened.
1090         Bug #489019 fixed.
1092 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
1094         * appdomain.h: Export a new callback type and a new function to
1095         set this callback. This allow a mono host to provide it's own
1096         definition for "platform code".
1097         * metadata-internals.h: Add a core_clr_platform_code flag on 
1098         _MonoImage to (cache and) know if it is representing platform 
1099         code.
1100         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
1101         on platform code images.
1102         * security-core-clr.c|h 
1103         (mono_security_set_core_clr_platform_callback): Allow the host
1104         to provide it's own platform check definition.
1105         (mono_security_core_clr_determine_platform_image): Detect if an 
1106         image is platform code (using the specified callback).
1107         (mono_security_core_clr_is_platform_image): Return cached value 
1108         for platform code.
1110 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
1112         * threads.c (mono_create_thread): New helper function to wrap CreateThread
1113         which has different parameter types for the 'tid' argument in windows and
1114         the io-layer.
1116         * appdomain.c attach.c threads.c: Use the new helper.
1118 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1120         * metadata-verify.c: Verify valid table bits.
1122 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1124         * metadata-verify.c (verify_metadata_header): Store size in the size field.
1126         * metadata-verify.c: Add initial table schema verification.
1128 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
1130         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
1131         obtain the refclass argument needed by mono_param_get_objects (). Fixes
1132         #488383.
1134         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
1136         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
1138 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
1140         * security-core-clr.c: Add/update documentation
1142 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
1144         * marshal.c (emit_marshal_object): Generate code to throw an exception
1145         instead of throwing it. Fixes #488670.
1147 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
1149         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
1150         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
1151         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
1152         and add a call to mono_security_core_clr_ensure_delegate_creation
1153         to do the extra checks required by CoreCLR.
1154         * security-core-clr.c|h: Add function to check delegate creation,
1155         both in the binding and accessibility, under CoreCLR.
1157 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
1159         * reflection.c (mono_reflection_create_dynamic_method): when 
1160         coreclr is enabled make sure that every resolved object are
1161         checked (e.g. field and method access).
1162         * security-core-clr.c|h: Add function to check objects resolved
1163         when a dynamic method is created.
1165 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1167         * metadata-verify.c: Cache directory rva translations.
1169         * metadata-verify.c: Add cli-header and streams verification.
1171 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1173         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
1174         the wrong offset (8 instead of 6).
1176 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
1178         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
1179         methods, return the native function address itself. Fixes
1180         #487758.
1182 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1184         * console-io.c: some of the values for control characters might not be
1185         present.
1187 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
1189         * exception.c|h: Add helpers to create [Field|Method]AccessException
1190         * icall.c: Add required coreclr check calls for field reflection.
1191         Move the existing (method) check logic into security-core-clr.c
1192         * security-core-clr.c: Add functions to check if the access of a
1193         field or method is allowed when reflecting under coreclr. This is
1194         mostly done using a stack walk to find the "real" caller: i.e. the
1195         code that is calling the reflection
1197 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
1199         * gc-internal.h: Change location of gc_wrapper.h
1201 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
1203         * class.c: Simplification to coreclr checks for overrides that
1204         makes it easier to set breakpoints.
1206 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
1208         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
1209         mono_security_core_clr_method_level): Avoid potential 
1210         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
1211         user/application code) and make it easier to set breakpoints
1213 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
1215         * metadata-verify.c: Reject cli header tables that mono don't handle.
1217 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
1219         * pedump.c: Fix CLI header dumping.
1221 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
1223         * metadata-verify.c: More CLI header verification.
1225 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
1227         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
1229 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
1231         * metadata-verify.c: Initial verification of the CLI header.
1233 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
1235         * metadata-verify.c (verify_resources_table): Fix verification of zero
1236         sized resource section and id entries count.
1238 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
1240         * icall.c: Handle user types in many Type icalls. Fixes #486303.
1242 2009-03-17  Jb Evain  <jbevain@novell.com>
1244         * profiler.c: call mono_gc_base_init from mono_profiler_load.
1246 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
1248         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
1249         (mono_gc_make_descr_for_array): Ditto.
1251 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
1253         * verify.c (mono_verifier_is_class_full_trust): Add support for
1254         CoreCLR security mode where trusted assemblies are defined as
1255         "platform code".
1257 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1259         * metadata-verify.c: Add minimal PECOFF resource verification.
1261 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1263         * metadata-verify.c: Be less restrictive with some coff fields.
1265 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1267         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
1268         params as boxed values on stack. Fixes #485706.
1270 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1272         * console-io.c: the termios values may vary in different flavors of unix.
1274 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1276         * console-io.[ch]: return the entire set of control characters when
1277         initializing the terminal.
1278         * appdomain.c: bump corlib version.
1280 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
1282         * mono-perfcounters.c: added support for in-process custom
1283         performance counters.
1285 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
1287         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
1289 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
1291         * metadata-verify.c: Verify the data pointed by the import table. 
1293 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
1295         * metadata-verify.c (load_data_directories): Store data
1296         directory contents.
1298         * metadata-verify.c: Verify the import table. 
1300 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1302         * metadata-verify.c: Verify data directories.
1304 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1306         * metadata-verify.c: Check section header flags.
1308 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1310         * appdomain.c: if the assembly name is a shadow-copied file, return
1311         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
1312         in mono_make_shadow_copy.
1313         * icall.c: if the assembly name is a shadow-copied file, replace it
1314         with the original assembly path.
1316         Bug #484244 fixed. NUnit tests for corlib can be run without
1317         --noshadow now.
1319 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
1321         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
1322         entries when the table is reallocated.
1324         * icall.c: Allocate the memory used by the mono_ptr_array macros using
1325         mono_gc_alloc_fixed () since it contains GC refs.
1327 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
1329         * reflection.c (ensure_complete_type): New helper function to call
1330         type resolve handlers for unfinished dynamic types.
1331         (resolve_object): Call it for MonoClassFields. Fixes #483852.
1333 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
1335         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
1336         #483247.
1338 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
1340         * appdomain.c (get_shadow_assembly_location): Fix memleak.
1342 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
1344         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
1345         between GCHandles of type WeakTrackResurrection and the objects they
1346         point to.
1348         * gc.c: Partly implement the sematics of GCHandles of type 
1349         WeakTrackResurrection: these handles should only be cleared after the
1350         finalizer of the object they are pointing to has ran.
1352 2009-03-06  Mark Probst  <mark.probst@gmail.com>
1354         * icall.c: Partially revert r126631 because using the jump
1355         trampolines for generic shared methods makes it superfluous.
1357 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
1359         * threads.c (handle_store): Create the 'threads' hash table with the proper
1360         MONO_HASH_VALUE_GC type.
1362 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
1364         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
1365         FIRST_GC_TRACKED.
1367         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
1368         and LAST_GC_TRACKED as a GC root.
1370         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
1372         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
1373         the static data even if it consists of 1 reference.
1375         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
1376         if there is a GC descriptor.
1378         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
1379         instead of through the GC since they contain no object references.
1381 2009-03-05  Mark Probst  <mark.probst@gmail.com>
1383         * generic-sharing.c (instantiate_other_info): Always return a jump
1384         trampoline for method code.
1386 2009-03-05  Marek Habersack  <mhabersack@novell.com>
1388         * culture-info-tables.h: generated to include the en-tt culture.
1390 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
1392         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
1393         capture the thread context.
1395         * object.c (mono_async_result_new): Cache the invoke wrappers to
1396         ExecutionContext::Capture.
1398 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
1400         * marshal.h: Add a prototype for what mono_compile_method returns
1401         for invoke wrappers.
1403         * gc.c: Use the new prototype declaration.
1405 2009-03-04  Geoff Norton  <gnorton@novell.com>
1407         * boehm-gc.c: Add some MONO_LOG tracing for the GC
1408         * gc-internal.h:
1409         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
1411 2009-03-04  Martin Baulig  <martin@ximian.com>
1413         * mono-debug.h
1414         (mono_debugger_runtime_invoke): Removed.
1416         * mono-debug-debugger.c
1417         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
1419 2009-03-02  Martin Baulig  <martin@ximian.com>
1421         * mono-debug.h
1422         (mono_debugger_unhandled_exception): Removed.
1423         (mono_debugger_handle_exception): Removed.
1424         (mono_debugger_throw_exception): Removed.
1426         * mono-debug.c
1427         (mono_debug_debugger_version): Bump to 5.
1429         * mono-debug-debugger.c: Moved the exception handling code to
1430         ../mini/debug-mini.c
1432 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1434         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
1435         finalize_objects_hash.
1437         * gc.c: Use the separate lock to access the finalize_objects_hash field.
1438         
1439         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
1440         field.
1442         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
1443         cache.
1445         * image.c (mono_image_close): Free it.
1446         
1447         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
1448         allowing a creation of a wrapper which invokes its method using a CALLVIRT
1449         on the this argument.
1451         * gc.c (run_finalize): Optimize the calling of the finalizers.
1453 2009-03-03  Martin Baulig  <martin@ximian.com>
1455         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
1456         of the `MonoGenericInst' changes.
1458 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1460         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
1461         mono_array_class_get_cached to reduce locking contention. Extract
1462         a domain var.
1464         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
1465         intermediary managed arrays. Use caching version of mono_array_new
1466         to allocate the result array.
1468         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
1470         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
1472         * locales.c (create_names_array_idx):  Use mono_array_new_cached
1473         to reduce locking contention.
1475 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
1476                 
1477         * object.c (mono_method_add_generic_virtual_invocation): Put back the
1478         thunk builder code for the non-interface case.
1480 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
1482         * object.c (get_generic_virtual_entries): New helper function to collect
1483         the virtual generic method instances which need to be added to an IMT
1484         thunk.
1485         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
1486         Instead of creating a new IMT thunk, reset the vtable slot to the
1487         trampoline, the thunk will be created the next time the trampoline is called.
1488         (build_imt_slots): Add support for virtual generic methods in interfaces by
1489         adding to the IMT thunk all the methods registered using 
1490         mono_method_add_generic_virtual_invocation ().
1492         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
1493         (struct _MonoIMTCheckItem): Ditto.
1495         * object.c (mono_method_add_generic_virtual_invocation): Take a
1496         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
1497         the IMT thunk to include all items.
1498         
1499         * object.c (mono_class_create_runtime_vtable): Add a missing
1500         mono_loader_unlock ().
1502 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1504         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1506         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
1508 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1510         * object-internals.h: Rename _MonoReflectionEvent to
1511         MonoReflectionMonoEvent so it reflects the right managed type.
1512         Add a MonoReflectionEvent that correctly represents System.EventInfo.
1514         * icall.c:
1515         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
1516         type.
1518 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1520         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
1521         intermediary managed arrays. Use caching version of mono_array_new
1522         to allocate the result array.
1524 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1526         * reflection.c: Use cached version of mono_array_new alongside
1527         the mono_reflection_get_custom_attrs_by_type call path.
1529 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1531         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
1532         intermediary managed arrays. Use caching version of mono_array_new
1533         to allocate the result array.
1535         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
1537 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
1539         * icall.c: Add small implementation of a growable stack bound array.
1541         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
1543         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
1544         intermediary managed arrays. Use caching version of mono_array_new
1545         to allocate the result array.
1547 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
1549         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
1550         helps Enum::CompareTo to be implemented without reboxing all enums
1551         to their underlying type.
1552 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
1554         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
1555         since it acquires a global lock leading to scalability problems.
1557         * profiler.c: Make the stat profiler work with multiple appdomains, this
1558         currently only works when no appdomains are unloaded.
1560 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1562         * appdomain.c: make the check to avoid copying when the assembly is
1563         already shadow copied actually work.
1565 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
1567         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1569         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
1570         changes to the managed side.
1572 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
1574         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
1575         classes + a separate lock for it, as it is used frequently at runtime, not
1576         just during metadata loading/JIT compilation.
1578         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
1579         for szarrays.
1580         
1581         * object-internals.h (mono_class_from_name_cached): New macro to cache
1582         the results of the lookup locally without having to declare a static
1583         variable to hold it.
1584         (mono_class_get_field_from_name_cached): Ditto.
1585         (mono_array_class_get_cached): Ditto.
1587         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
1588         the new macros.
1589         
1590         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
1591         slower search in metadata.
1593         * pedump.c: Fix a warning.
1595 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
1597         * reflection.c (encode_locals): Add checks for user types.
1598         (method_encode_clauses): Ditto.
1599         (method_encode_code): Ditto.
1600         (mono_image_create_token): Ditto.
1602         * object-internals.h: Change the type of more fields from MonoReflectionType*
1603         to MonoObject*.
1605 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
1607         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
1608         the a thread does not suspend within 100ms.
1610         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
1611         in addition to StopRequested as well.
1613         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
1615         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
1616         search the method_hash before inserting a new entry, to avoid crashes when
1617         the same method is inserted multiple times, causing the old 
1618         MonoDebugMethodInfo structure to be freed by the value dtor function.
1620 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1622         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
1623         SO_EXLUSIVEADDRUSE where available.
1625 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
1627         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
1628         runtime invoke wrappers, this time it is string ctor wrappers, which
1629         pass a dummy string as 'this' instead of their obj argument. Fixes
1630         #478473.
1632 2009-02-21  Jb Evain  <jbevain@novell.com>
1634         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1635         only get create_culture once.
1637 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
1639         * reflection.c (mono_reflection_setup_internal_class): Move the user type
1640         check before the locking.
1641         
1642         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
1643         (mono_reflection_create_runtime_class): Ditto.
1644         (mono_reflection_sighelper_get_signature_local): Ditto.
1645         (mono_reflection_sighelper_get_signature_field): Ditto.
1647         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
1648         is a System.MonoType object or similar.
1649         (monotype_cast): New helper function to cast a MonoObject to a 
1650         MonoReflectionType object.
1652         * object-internals.h: Change MonoReflectionType* members in structures to
1653         MonoObject* members to force the usage of the monotype_cast () function.
1655         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
1656         structures/arrays. This causes us to assert instead of crashing when 
1657         instances of user defined subclasses of System.Type are encountered.
1659 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1661         * cil-coff.h:
1662         * icall-def.h:
1663         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
1664         win32 resource loaded from a PE file.
1666         * image.c: fix mono_image_lookup_resource.
1668 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1670         * icall-def.h:
1671         * threads-types.h:
1672         * threads.c: added internal call for WaitHandle.SignalAndWait.
1674 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
1676         * cominterop.c : Adding cominterop_type_from_handle and 
1677           registering it as an icall.  Replacing all references
1678           to type_from_handle.
1680         Code is contributed under MIT/X11 license.
1682 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1684         * Makefile.am: Add lock-tracer.h and lock-trace.c.
1686         * appdomain.c: Call the tracer init function.
1688         * domain-internals.h: Enable the tracer for the domain locks.
1690         * image.c: Enable the tracer for image locks.
1692         * loader.c: Enable the trace for the loader lock.
1694         * lock-tracer.h:
1695         * lock-tracer.c: Initial implementation of the lock trace utility.
1696         The tracer requires a compile time define to be enabled and a env var
1697         to be enabled at runtime.
1699 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1701         * domain.c (mono_domain_code_foreach): Improve documentation.
1703 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
1705         * appdomain.c:
1706         * generic-sharing.c:
1707         * object.c:
1708         * reflection.c:  Adjust locking order to the new semantics where the loader lock
1709         comes first.
1711 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
1713         * domain.c: Add mono_domain_code_* functions that perform locking
1714         around the domain codeman.
1716         * domain-internals.h: Export those functions.
1718         * object.c: Use new functions instead of acquiring the domain lock.
1720 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
1722         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
1723         delegate. Fixes #477396.
1725 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1727         * reflection.c (create_custom_attr): Get rid of alloca.
1729 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
1731         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
1732           Adding exception handling for all CCW calls.
1734         Code is contributed under MIT/X11 license.
1736 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
1738         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
1740         * marshal.c (emit_marshal_boolean): Add null checks to the new 
1741         native->managed marshalling code. Fixes #476247.
1743 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1745         * class.c (mono_class_get_vtable_entry): Move the addition of
1746         static rgctx invoke wrappers for vtable methods here, this simplifies
1747         a lot of code and causes fewer rgctx wrappers to be created.
1749         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
1750         name of the statistics to begin with an uppercase.
1752 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1754         * reflection.c: Revert previous change as it breaks the build.
1755         
1756 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1758         * verify.c: Properly handle SZARRAY element type.
1760         Fixes #474271.
1762 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
1764         * reflection.c (mono_image_create_method_token): Correctly encode
1765         MethodDef MemberRefParent token.
1767         Fixes #472845.
1769 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
1771         * image.c (mono_image_close): Delete the critical section before
1772         freeing the memory holding it.
1774 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1776         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
1777         Fixes #476257.
1779 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1781         * pedump.c (main): Call mono_marshal_init so pedump
1782         doesn't crash.
1784 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1786         * loader.c (method_from_memberref): Properly fix #474271 and
1787         don't break the runtime bad.
1789 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1791         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
1792         (mono_domain_alloc0): Ditto.
1794 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1796         * loader.c (method_from_memberref): Don't abort if the array
1797         method is not found. A regular loader failure is more informative
1798         and correct.
1800         Fixes #474271.
1802 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
1804         *loader.c: Guard MonoImage::method_cache/methodref_cache
1805         using the image lock instead of the loader lock.
1807         * metadata.h: Add comments about which fields are protected by
1808         the image lock.
1810 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
1812         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
1814         * generic-sharing.c (mono_method_construct_object_context): Remove the
1815         wrapper_type == NONE assert, it is not needed.
1817 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
1819         * reflection.c (clear_cached_object): New helper function.
1820         (mono_method_clear_object): New function to clear the cached reflection
1821         objects for a dynamic method.
1823         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
1824         Partly fixes # 463323.
1825         
1826 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
1828         * class.c:
1829         * loader.c:
1830         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
1832 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
1834         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
1835         take the image lock instead of the loader lock.
1837         * metadata-internals.h: Export new functions.
1839 2009-02-12  Miguel de Icaza  <miguel@novell.com>
1841         * domain.c (app_config_parse): Remove another use of stat that is
1842         not necessary as g_file_get_contents already does the presence
1843         check. 
1845 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
1847         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
1849         * marshal.c: Move the bstr handling code to cominterop.c.
1851         * marshal.c: Remove some COM interop code missed previously.
1853 2009-02-12  Miguel de Icaza  <miguel@novell.com>
1855         More Paolo patches from the Wii port:
1856         
1857         * security.c: Remove ves_icall_System_Environment_get_UserName
1858         from here.
1860         * icall.c: And put ves_icall_System_Environment_get_UserName
1861         here. 
1863         * appdomain.c (mono_set_private_bin_path_from_config): Remove
1864         redundant call to stat that was only used to test for the file
1865         existence.   Patch from Paolo.
1867         * gc.c (run_finalize): If COM is disabled, do not link in
1868         mono_marshal_free_ccw.
1870         * generic-sharing.c: Use alloca.h here as well.
1872 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
1874         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
1876 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
1878         * cominterop.c cominterop.h: New files.
1880         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
1881         function/typedefs which are needed by cominterop.c global.
1883 2009-02-12  Mark Probst  <mark.probst@gmail.com>
1885         * generic-sharing.c: Don't take the loader lock to guard image
1886         mempool allocs.
1888 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1890         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
1891         called without the loader lock which is required to guard MonoImage:tokens.
1893 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1895         * class.c:
1896         * metadata.c:
1897         * method-builder.c:
1898         * marshal.c:
1899         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
1901 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1903         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
1904         Rework the code to use regular mono_image_alloc/0.
1906         * loader.c: Rework the code to use regular mono_image_alloc/0.
1908         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
1910 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
1912         * object-internals.h : Fixing a typo in the 
1913           MonoReflectionComVisibleAttribute struct.
1915         * marshal.c (cominterop_com_visible): Check the implemented 
1916           interfaces for ComImport.
1918         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
1919           assume that bools should be treated as VARIANTBOOLs.
1921         * marshal.c (emit_marshal_boolean): Adding cases for 
1922           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
1924         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
1925           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
1927         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
1928           should be treated as VARIANTBOOLs.    
1930         Code is contributed under MIT/X11 license.
1932 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1934         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
1935         allocation with the image lock.
1937 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1939         This patch is the last of a series to remove explicit reference of MonoImage::mempool
1940         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
1942         * object.c: Add mono_string_to_utf8_image.
1944         * object-internals.h: Export mono_string_to_utf8_image.
1946         * reflection.c: Rework all explicit references to the the image mempool to go thought
1947         the mono_image_alloc set of functions.
1949 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1951         This patch is the third of a series to remove explicit reference of MonoImage::mempool
1952         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
1953         and generics-sharing.c.
1955         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
1956         as first argument. Note that this function remains broken as it doesn't perform locking around the
1957         mempool allocation.
1959         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
1961         * image.c: Add g_slist_append_image.
1963         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
1964         the supplied image for allocation. Move code into mono_metadata_field_info_full.
1966         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
1967         Fix all related code to do the same.
1969         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
1971         * metadata-internals.h: Fix the signatures.
1973 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
1975         This patch is the second of a series to remove explicit reference of MonoImage::mempool
1976         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
1977         and similar to work using MonoImage.
1979         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
1980         MonoMemPool.
1982         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
1984         * class.c (mono_metadata_signature_deep_dup): Same.
1986         * class.c (inflate_generic_type): Same.
1988         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
1990         * metadata.c (mono_metadata_signature_dup_full): Same.
1992         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
1993         mono_metadata_signature_dup_full.
1995         * metadata.c (mono_metadata_type_dup): Same.
1997         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
1999         * reflection.c: Same.
2001         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
2003         * metadata-internals.h: Fix the signatures.
2005         * class-internals.h: Same.
2007 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
2009         This patch is the first of a series to remove explicit reference of MonoImage::mempool
2010         and use mono_image_alloc set of functions instead. 
2012         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
2013         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
2014         of a MonoMemPool.
2016         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
2018         * class.c (g_list_prepend_mempool): Removed.
2020         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
2022         * image.c: Add g_list_prepend_image.
2024         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
2026         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
2029 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
2031         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
2032         mono_image_unlock.
2034         * image.c (mono_image_init): Init the lock field.
2036         * image.c (mono_image_init): Cleanup the lock field.
2038         * image.c: Add mono_image_(un)lock functions.
2040 2009-02-11  Mark Probst  <mark.probst@gmail.com>
2042         * class.c, class-internals.h: mono_method_get_context_general()
2043         combines the functionality of mono_method_get_context() and
2044         mini_method_get_context().
2046         * generic-sharing.c, domain-internals.h:
2047         mono_method_construct_object_context() and
2048         mono_domain_lookup_shared_generic() moved from mini.
2050         * icall.c (ves_icall_InternalInvoke): Handle the case where the
2051         method doesn't have the correct instantiation because it's shared
2052         generic code.  Fixes #473999.
2054 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
2056         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
2058         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
2059         
2060 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
2062         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
2064         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
2066         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
2067         and recheck the cache for dups after it.
2069         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
2071         Fixes one of the deadlocks found in #473150.
2073 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
2075         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
2076           For Win32, add additional break conditions for accept.
2078         Code is contributed under MIT/X11 license.
2080 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
2082         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
2083         lazily initialize the native wrapper cache.
2084         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
2085         cache, since they are different from the normal wrappers.
2087         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
2089         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
2090         AOT compiled native wrappers.
2092 2009-02-09  Geoff Norton  <gnorton@novell.com>
2094         * appdomain.h:
2095         * security-core-clr.c: Allow enabling core-clr from the embedding
2096         API.
2098 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2100         * socket-io.c: when requesting all the local ips, if there are no
2101         interfaces up and running, MS returns 127.0.0.1.
2103 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2105         * mono-perfcounters-def.h: processor time is an inverse time.
2106         Fixes bug #468625.
2108 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2110         * socket-io.c: an empty host name returns the list of local IPs.
2111         Fixes bug #386637 part 1/2.
2113 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
2115         * verify.c (mono_class_interface_implements_interface): Call
2116         mono_class_setup_interfaces ().
2117         (merge_stacks): Ditto.
2119 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
2121         * class.c (mono_class_setup_interfaces): New function to lazily initalize
2122         klass->interfaces.
2123         (mono_generic_class_get_class): Don't initalize klass->interfaces.
2124         (mono_generic_class_get_class): Ditto.
2126 2009-02-06  U-QUACK\miguel  <miguel@quack>
2128         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
2129         they live in security.c
2131         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
2132         another bit from Paolo's code.
2134 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
2136         * object.c (build_imt_slots): Add a small optimization to avoid inflating
2137         methods which will be discarded by add_imt_builder_entry ().
2139         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
2140         need to be boxed.
2142         * loader.c: Add a statistics for the size of the memberref signature cache.
2143         
2144         * loader.c (find_cached_memberref_sig): New helper function.
2145         (cache_memberref_sig): Ditto.
2147         * loader.c: Cache the result of parsing memberref signatures, since otherwise
2148         they will be parsed again for every generic instantiation, leading to unbounded
2149         memory growth.
2151 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2153         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
2154         parameters of generic methods.
2156         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
2157         after the original method is copied to the inflated method.
2158         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
2160         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
2161         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
2163         * class.c metadata.c: Update after the changes above.
2165 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
2167         * metadata-verify.c: Simplified error handling and added
2168         section table validation.
2170 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2172         * class-internals.h (MonoClassExt): New structure containing rarely used
2173         fields of MonoClass.
2174         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
2175         through a new 'ext' field.
2177         * class.c (mono_class_alloc_ext): New helper function to allocate 
2178         class->ext.
2180         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
2182 2009-02-05  Mark Probst  <mark.probst@gmail.com>
2184         * object.c (mono_object_get_virtual_method): Properly inflate
2185         generic methods.  Fixes #472692.
2187 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
2189         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
2190         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
2191         for the parent type, the created type must be ready to be used on a generic
2192         instantiation.
2193         We fill this_arg/byval_arg if the parent is a generic instance to make sure
2194         we won't have duplicated entries in generic_inst_cache.
2196         Fixes #469553.
2198 2009-02-05  Miguel De Icaza  <miguel@novell.com>
2200         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
2201         replace with plain BSD per the comments on the bug MONO77637.
2203 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
2205         * class.c (mono_class_get_generic_class): New accessor function.
2206         (mono_class_get_generic_container): Ditto.
2208         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
2209         fields, similar to the ones in MonoMethod.
2211         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
2212         (mono_class_create_from_typedef): Set klass->is_generic if needed.
2214         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
2215         
2216         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
2217         the same information as element_class->byval_arg.
2219         * class.c reflection.c: Remove references to class->byval_arg.
2221         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
2222         klass->enum_basetype directly.
2224         * verify.c metadata.c object.c icall.c reflection.c: Use 
2225         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
2226         directly.
2228 2009-02-04  Miguel de Icaza  <miguel@novell.com>
2230         * icall-def.h: Remove internal calls for sockets when
2231         DISABLE_SOCKET is defined, file system writing features when the
2232         OS only support reading and not writing data and Policy support if
2233         the Policy is disabled.
2234         
2235         * image.c (do_mono_image_open): Apply Paolo's patches for using
2236         mono_file_map_ APIs here.
2238         * assembly.c: Add support for platforms to avoid prefix
2239         auto-detection. 
2241 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
2243         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
2244         warning.
2246         * class.c (mono_class_inflate_generic_class): New helper function.
2248         * class.c: Use mono_class_inflate_generic_class in a few places. Add
2249         statistics for inflated methods/classes.
2251         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
2253         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
2254         the call is made from Delegate.CreateDelegate () for the invoke method of
2255         a delegate.
2257         * loader.c: Add a statistics for the memory occupied by inflated signatures.
2259         * metadata.c (mono_metadata_signature_size): New helper function.
2261         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
2262         generic instances.
2264         * metadata.c (inflated_method_in_image): Avoid calling 
2265         mono_method_signature () if the method does not already have a signature.
2267 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
2269         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
2270         valuetype is compatible with target type, check by inheritance as a
2271         VT is not really compatible with System.ValueType, for example.
2273         * verify.c (do_invoke_method): Improve error message.
2275         * verify.c (do_box_value): If boxing a nullable, use the type argument
2276         on stack instead.
2278         * verify.c (do_newobj): Improve error message.  
2280         Fixes #469549.
2282 2009-02-03  Miguel de Icaza  <miguel@novell.com>
2284         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
2286 2009-02-03  Mark Probst  <mark.probst@gmail.com>
2288         * generic-sharing.c: Don't hold domain lock when calling
2289         instantiate_other_info().  Fixes #471958.
2291         * domain-internals.h, loader.c: Describe locking policy of domain
2292         lock vs loader lock.
2294 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
2296         * verify.c (mono_delegate_signature_equal): Make it possible to check
2297         first-arg-bound delegates to static method.
2299         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
2300         static methods with the first arg bound.
2302         Fixes #469529.
2304 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
2306         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
2307         errors.
2309         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
2310         under strict mode. Any type, when boxed can be seen as a reference type.
2312         Fixes #469528.
2314 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
2316         * object.h: The lower bound of an array is a signed integer value.
2317         Introduce mono_array_lower_bound_t typedef. It should be used instead of
2318         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
2320         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
2321         calculate the upper bound.
2322         
2323         Fixes #471252.
2325 2009-02-02  Miguel de Icaza  <miguel@novell.com>
2327         From Paolo's work, refactored, cleared up:
2328         
2329         * threadpool.c, icall.c: ifdef code that requires a working socket
2330         stack.
2332         * metadata.c (mono_metadata_field_info): Do not attempt to return
2333         a value from a function declared as void.
2335         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
2336         from the console stack.
2338         * assembly.c: use strrchr instead of rindex.
2340         * class.c, object.c, marshal.c, icall.c, reflection.c: include
2341         alloca.h on systems that have it.
2343         * environment.c: Avoid code that uses stuff from
2344         HAVE_SYS_UTSNAME_H
2345         
2346         * appdomain.c: Include sys/time.h.
2348         * console-io.c: include sys/ioctl.h if it is available.
2350 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
2352         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
2354         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
2355         the method builder.
2357         * marshal.c: Set mb->skip_visibility instead of setting it on the method
2358         after it was created and cached, as the later is not thread safe.
2359         
2360 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2362         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
2363         called while the debugging module is not initialized. Fixes #471669.
2365 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
2367         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
2369         Fixes #471255.
2371 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2373         * generic-sharing.c (lookup_or_register_other_info): Make sure the
2374         loader lock is not taken while the templates lock is held.  Fixes
2375         #471089.
2377 2009-02-02  Mark Probst  <mark.probst@gmail.com>
2379         * metadata.c (type_in_image): Added a check to fix a monodis
2380         crash.
2382 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
2384         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
2385         nullable arguments.
2387         * object.c (mono_runtime_invoke_array): Ditto.
2388         
2389         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
2390         freeing wrappers of dynamic methods.
2392         * loader.c (mono_free_method): Call it. Fixes #463323.
2393         
2394         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
2395         methods taking vtype/byref arguments, to fix yet another bug caused by
2396         the sharing of runtime invoke wrappers. Partly fixes #471259.
2398 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
2400         * debug-mono-symfile.c (check_line): Return NULL instead of returning
2401         <first file in file table>:1 when the IL offset does not have an associated
2402         line number.
2404 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
2406         * mono-debug.c (mono_debug_lookup_locals): New function to return local
2407         variable info for a method.
2409         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
2410         
2411 2009-01-30  Jb Evain  <jbevain@novell.com>
2413         * pedump.c: reuse code from monodis to make sure pedump honors
2414         MONO_PATH, which is needed to verify net_2_1 assemblies.
2416 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
2418         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
2419         there is no line number info.
2421 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
2423         Avoid some MonoType allocations
2424         * reflection.c (mono_reflection_initialize_generic_parameter):
2425         Reuse MonoType from param->pklass rather than allocating one.
2426         (mono_dynamic_image_free): Update to changes.
2428 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
2430         Rearrange some code to improve consistency
2431         * reflection.c (mono_reflection_setup_generic_class): Move body ...
2432         (mono_reflection_initialize_generic_parameter): ... here.
2434 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
2436         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
2437         with type constraints as an experiment.
2439         * boehm-gc.c (on_gc_notification): Update mono_stats.
2441 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
2443         Avoid some allocations
2444         * class-internals.h (_MonoGenericInst::type_argv): Convert from
2445         pointer to tail array to avoid extra allocation.
2446         * metadata.c (free_generic_inst): Update to changes.
2447         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
2448         on-stack struct.
2450 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
2452         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
2453         return TRUE if the two type objects are the same.
2455 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2457         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
2458         (mono_class_native_size): Use klass->marshal_info->min_align instead of
2459         klass->min_align, since klass->min_align contains the managed alignment,
2460         while the native alignment can be different, like for longs on x86.
2461         Fixes #469135.
2463         * class-internals.h (MonoMarshalType): Add a min_align field.
2465 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
2467         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
2468         the 1.0 format.
2470 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
2472         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
2473         some comments about the usage of the used_regs field.
2475         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
2476         Fixes #469217.
2478 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2480         * appdomain.c: return NULL instead of throwing FileNotFoundException
2481         when LoadAssembly() fails.
2483 2009-01-23  Mark Probst  <mark.probst@gmail.com>
2485         * metadata.c (mono_metadata_generic_param_equal): Only compare the
2486         image if the owner is NULL.  Fixes the AOT failures.
2488 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
2490         * metadata.c (mono_metadata_load_generic_params): Initialize the 
2491         MonoGenericParam structure using memset so the image field is initialized
2492         as well.
2494 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2496         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
2497         a plain store.
2499 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
2501         * class.c (mono_class_setup_vtable_general): In the generic instance
2502         optimization, set method->slot for abstract virtual methods. Fixes part of
2503         #467834.
2505 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
2507         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
2508         which signals that the unloading has started but all appdomain services must
2509         remain operational.
2511         * appdomain.c (mono_domain_unload): The initial state for unloading now
2512         is unloading_start and we switch to unloading after the managed call to
2513         AppDomain::DomainUnload has finished.
2515         The new unloading state has to be created because managed code in the
2516         DomainUnload event can depend on things like the threadpool still working.
2517         The domain must remain fully functional while the event executes.
2519         This shown as an issue due to Process::WaitForExit, which waits for
2520         async reads of stdout and stderr to complete. Since those are processed
2521         in the threadpool the code deadlocks because the DomainUnload callback 
2522         waits for the async read finished event, which should have been set by a
2523         threadpool job but has been discarded due to the domain been in unload
2524         state.
2526 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2528         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
2529         image must match.
2531 2009-01-21  Mark Probst  <mark.probst@gmail.com>
2533         * reflection.c (resolve_object): For fields, inflate the class and
2534         then get the field in the inflated class.
2536 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2538         * object-internals.h (struct _MonoException): Added a comment
2539         explaining the new use of trace_ips.
2541 2009-01-20  Mark Probst  <mark.probst@gmail.com>
2543         * generic-sharing.c (inflate_other_data): Inflate array methods
2544         correctly.
2546         * loader.c, class-internals.h: Rename search_in_array_class() to
2547         mono_method_search_in_array_class() and make it non-static.
2549 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2551         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
2552         Hopefully fixes #458168.
2554 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
2556         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
2557         as it is performed elsewhere.
2559         Code is contributed under MIT/X11 license
2561 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
2563         * mono-perfcounters-def.h: Add counters for asp.net requests total and
2564         requests queued.
2565         * object.c (mono_raise_exception): Increment the exceptions total
2566         counter when an exception is thrown.
2567         * class-internals.h: Add a location for storing the total number of
2568         asp.net requests served.
2569         * mono-perfcounters.c: Implement update support for asp.net counters
2570         from the class libraries. Implement read support for asp.net counters
2571         and exceptions total counter.
2573 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
2575         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
2576         accessing klass->methods. Fixes #467385.
2578 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2580         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
2581         for byval arguments without an [Out] attribute. Fixes #467212.
2583         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
2584         Fix compilation under android.
2585         
2586         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
2587         processed, scan them directly after they are copied, to achieve better locality
2588         and cache usage.
2590         * socket-io.c: Applied patch from Koushik Dutta
2591         (koush@koushikdutta.com). Disable IPV6 when running under android.
2593 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
2595         * icall.c (ves_icall_InternalExecute): Add write barriers.
2597         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
2598         the GC code.
2600         * sgen-gc.c: Implement write barriers in IL code.
2602 2009-01-17  Geoff Norton  <gnorton@novell.com>
2604         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
2606 2009-01-17  Geoff Norton  <gnorton@novell.com>
2608         * image.c: When unloading the image->references table, there can be gaps
2609         in it.  Ensure that we iterate every entry to avoid leaking assembly references
2610         when unloading an appdomain.
2612 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
2614         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
2615         speed up ptr-in-nursery checks.
2617         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
2618         threads_lock () to prevent deadlocks.
2620         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
2621         does not need to be scanned during minor collections, since writes to it
2622         must use write barriers.
2624 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
2626         * metadata-verify.c: Add pe nt header verification.
2627         
2628 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
2630         * gc.c: Fix a few warnings when using SGEN.
2632 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
2634         * metadata-verify.c: Add pe optional header verification.
2636 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
2638         * sgen-gc.c: Add support for user defined marker functions, used by
2639         MonoGHashTable to avoid registering a GC root for every hash node.
2641 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
2643         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
2644         non-pinned roots into separate hashes to avoid having to traverse them
2645         in functions which are only interested in one kind.
2647 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
2649         * metadata-verify.c: Add pe header machine field verification.
2650         
2651 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
2653         * metadata-verify.c: Add pe header size verification.
2655 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
2657         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
2658         using the GC, they don't contain references.
2660         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
2662 2009-01-13  Geoff Norton  <gnorton@novell.com>
2664         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
2665         AppDomains created on the native side can be cleaned up on the native side.
2667 2009-01-13  Geoff Norton  <gnorton@novell.com>
2669         * appdomain.c: Ensure that we call mono_context_init for the embedding api
2670         as well as the managed api.
2672 2009-01-13  Geoff Norton  <gnorton@novell.com>
2674         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
2675         with a MonoAppDomain initialized against it.
2677 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2679         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
2680         
2681         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
2683         * marshal.c: Avoid setting the exception clauses after a method has been entered 
2684         into the wrapper caches. Fixes #465700.
2686         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
2687         method builder.
2688         (mono_mb_create_method): Set the clauses from the method builder.
2690 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
2692         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
2693         Patch from Makoto Kishimoto.
2695 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
2697         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
2698         encoding them as ROOT_DESC_COMPLEX.
2699         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
2701 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
2703         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
2704         no longer point to the nursery.
2706         * sgen-gc.c: Add a few comments/FIXMEs.
2707         
2708         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
2710         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
2711         initialization of the various _method variables thread safe. Fixes
2712         #465377.
2714 2009-01-12  Mark Probst  <mark.probst@gmail.com>
2716         * domain.c, domain-internals.h: Remove the shared_generics_hash
2717         and its lookup functions.
2719 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
2721         * socket-io.c:  Fixing the MSVC build. 
2723         Code is contributed under MIT/X11 license.
2725 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
2727         * metadata-verify.c: Add pe header watermark verification.
2729 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2731         * metadata-verify.c: Add lfanew verification.
2733 2009-01-12  Jb Evain  <jbevain@novell.com>
2735         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
2736         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
2738 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
2740         * socket-io.c: Fix the build.
2742         * environment.c: Fix an #ifdef.
2744 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2746         * threadpool.c (async_invoke_thread): Handle the wait function returning
2747         WAIT_IO_COMPLETION as well.
2748         (async_invoke_io_thread): Ditto.
2750 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
2752         * threads.c: Fixing the Windows build.
2754         Code is contributed under MIT/X11 license.
2756 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2758         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
2759         interrupt a wait.
2760         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
2761         the thread to wait again.
2763 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2765         * metadata-verify.c: Initial skeleton of the metadata verifier.
2767         * pedump.c: Add support for the metadata verifier.
2769         * verify-internal.h: Export the whole assembly metadata verifier function.
2771 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
2773         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
2775 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
2777         * Makefile.am: Upgrade dtrace-prelink.sh location.
2779 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
2781         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
2782         well. Otherwise the shutdown deadlock that happens on unix will can happen
2783         as well.
2784         If the main thread code finishes too fast it's possible that the finalizer
2785         thread won't have executed yet, won't record itself as the finalizer thread
2786         and the shutdown sequence will wait on it forever.
2788 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
2790         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
2791         with MSVC.
2793 2009-01-08  Miguel de Icaza  <miguel@novell.com>
2795         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
2796         Robert Jordan for pointing this out.
2798 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
2800         * icall.c
2801         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
2802         ves_icall_System_IO_DriveInfo_GetDriveType.
2804 2009-01-07  Miguel de Icaza  <miguel@novell.com>
2806         * icall.c: Wrap calls to mono_strtod in CriticalSection
2807         invocations when using eglib, to work around #464316.
2809 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
2811         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
2812         return value of GetCurrentDirectory to never access unitialized memory.
2814 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
2816         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
2817         return value of GetCurrentDirectory and expand the buffer if needed.
2819         Fixes #459094.
2821 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
2823         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
2824           Adding a call to mono_init_com_types.
2826         Code is contributed under MIT/X11 license.
2828 2009-01-07  Geoff Norton  <gnorton@novell.com>
2830         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
2831         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
2832         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
2833         be the value of the ip buffer.
2835 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2837         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
2838         interfaces_packed here.
2840         Fixes part of #463294.
2842 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2844         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
2846         Fixes part of #463294.
2848 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2850         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
2851         is a boxed complex as well.
2853         Fixes part of #463294.
2855 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
2857         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
2858         control if a methodspec should be created for the generic method definition from external assemblies.
2859         Caching of methodspec is done using the handleref hash table.
2861         Fixes #462592.
2863 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
2865         * loader.c (find_method): When searching the interfaces of a class
2866         check the transitive closure of implemented interfaces.
2868         Fixes #463303.
2870 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
2872         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
2873         
2874 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
2876         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
2877         interfaces calculation to fill_valuetype_array_derived_types.
2879         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
2880         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
2881         for example.
2883         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
2884         interfaces for valuetypes if needed.    
2886         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
2887         for their basetype as well. Types are array expanded if rank is > 0.
2889         Fixes #400716.
2891 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
2893         * socket-io.h : Changing the signature of
2894           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
2895           the blocking state.
2897         * icall-def.h :  Changing the signature of
2898           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
2900         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2901           For Windows only.  Avoid blocking when calling accept by
2902           querying for a connection via select.  The loop also queries
2903           the thread state every 1000 micro seconds for the thread
2904           stop state.  This will avoid the process hanging on shutdown
2905           when using a TcpChannel that is never connected to.
2907         Code is contributed under MIT/X11 license.
2909 2008-12-30  Marek Safar  <marek.safar@gmail.com>
2911         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
2913 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
2915         * class.c (get_implicit_generic_array_interfaces): Extract common
2916         code to a helper function making it a lot easier on the eyes.
2918 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
2920         * class.c (get_implicit_generic_array_interfaces): If the internal
2921         enumerator is an interface inflate System.Object instead of itself.
2923         Fixes #461261.
2925 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
2927         * object.c (mono_runtime_invoke_array): Don't assert with
2928         byref nullable types.
2930         * marshal.c (mono_marshal_get_runtime_invoke): To handle
2931         byref nullables we unbox the object and store it on the
2932         stack. 
2933         We can't use the boxed object since it is the T of Nullable<T>
2934         and the boxed representation of a nullable it's underlying type
2935         or null.
2936         We could cheat and create a boxed nullable and use the same
2937         machinery of other byref VTs but this feels like a hack and
2938         using the stack has the bonus of reducing heap pressure.
2940         Fixes #461941.
2942 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
2944         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
2945         return value.
2947         Fixes #461867.
2949 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
2951         * icall-def.h : Adding an internal call definition for 
2952           System.Environment.internalBroadcastSettingChange.
2954         * icall.c : Adding a Windows only implementation to broadcast a 
2955           WM_SETTINGCHANGE when an environment variable has changed.
2957         Code is contributed under MIT/X11 license.
2959 2008-12-19  Mark Probst  <mark.probst@gmail.com>
2961         * class.c, class-internals.h: Made
2962         mono_class_has_parent_and_ignore_generics() non-static.
2964 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
2966         * image.c: deal with the mmap failing when loading an image.
2968 2008-12-17  Geoff Norton  <gnorton@novell.com>
2970         * threadpool.c: Ensure that the io_queue_lock is initialized
2971         in all circumstances, as we always attempt to cleanup against it.
2973 2008-12-17  Miguel de Icaza  <miguel@novell.com>
2975         * icall.c (ves_icall_System_Environment_get_Platform): For
2976         compatibility reasons for existing client code we will keep
2977         returning 4 for a while.   
2979         For how long will depend on the documentation being updated, and
2980         for us to give client code a chance to be updated.
2982         This reverts the original decison on #433108 since we did not
2983         catch roughly 33 instances of the broken code in our own source
2984         code base, we did not catch failures on the buildbots, and QA did
2985         not bring this as a problem.
2987         Only today I found some customer's code breaking due to our own
2988         class libraries not being fully updated and tracked it down to
2989         this change.  I am reverting it because if we could not even get
2990         our story straight in our own code base, how can we hope that our
2991         end user code be fixed?
2993         As of this morning, our Wiki page that documents how to detect
2994         Unix had not been fixed.    
2996 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
2998         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
3000         * class.c (mono_class_get_fields): Handle loading errors.
3002 2008-12-12 Mark Mason <mmason@upwardaccess.com>
3004         * 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.
3005         
3006 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3008         * mono-perfcounters.c: avoid warning.
3010 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
3012         * reflection.c (ensure_runtime_vtable): Work on generic instances and
3013         make sure all interfaces have MonoClass::interface_id set.
3015         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
3016         method table is property set.
3018 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
3020         * class.c: New function mono_class_setup_interface_id that setup
3021         MonoClass::interface_id if needed.
3023         * class-internals.h: Export new function.
3025 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
3027         * class.c: Add code to sanity check the vtable after setup_vtable_general
3028         has done it's work.
3030 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3032         * icall.c: make Assembly.GetExecutingAssembly work properly when
3033         reflection is used to invoke the method.
3034         Bug #321781 fixed.
3036 2008-12-11  Mark Probst  <mark.probst@gmail.com>
3038         * metadata/generic-sharing.c: Look for constraints in all type
3039         arguments, not just the first one.
3041 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3043         * appdomain.c: return the correct CodeBase for an Assembly instance
3044         that was loaded from the shadow-copy directories.
3045         Bug #458190 fixed.
3047 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
3049         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
3051         * sgen-gc.c (check_object): New debugging helper function.
3053         * object.c: Fix calls to mono_value_copy_array ().
3055 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
3057         * class.c (mono_class_setup_fields): If working on an inflated class
3058         first check if the generic definition did init with success.
3060         Fixes #445361.
3062 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
3064         pedump.c (main): Fix a warning.
3066 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
3068         * object-internals.h : Adding a definition for 
3069           MonoReflectionComVisibleAttribute.
3071         * marshal.c (cominterop_com_visible) :  Method added to check the 
3072           ComVisible attribute of a class.
3074         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
3075           cominterop_raise_hr_exception added to consolidate common code 
3076           to raise hr exceptions.
3078         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
3079           if a managed class should support IDispatch.
3081         * marshal.c 
3082           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
3083           Added additional checks for managed object when getting 
3084           an IDispatch interface.
3086         Code is contributed under MIT/X11 license.
3088 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
3090         pedump.c (main): Handle mono_get_method () returning NULL. 
3092 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
3094         * marshal.h: Fix a warning.
3096 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
3098         * marshal.c : Adding cominterop_release_all_rcws to release all
3099           runtime callable wrappers held by the runtime.
3101         * marshal.h : Adding declaration for cominterop_release_all_rcws.
3102           
3103         Code is contributed under MIT/X11 license.
3105 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
3107         * metadata.c (mono_image_alloc_lock): New helper function.
3108         (mono_image_alloc0_lock): Ditto.
3110         * metadata.c: Use the alloc_lock () helper functions for allocating
3111         memory from the image mempool.
3113 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
3115         * class.c (mono_class_from_generic_parameter): Document it's
3116         locking behavior. Fix double checked locking here, we stored in
3117         param->pklass a partially initialized MonoClass and no membar was used.
3119 2008-12-05  Marek Habersack  <mhabersack@novell.com>
3121         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
3122         (3) functions are present in the C library use them to do the
3123         job. If they are absent, make sure that the sum of int_part and
3124         dec_part is rounded before returning. This is necessary due to the
3125         division of dec_part by the power of 10 before the final addition
3126         is performed - if the result is not rounded in some cases it will
3127         yield invalid results.
3129 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
3131         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
3132         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
3133         instruction instead of a pointer constant.
3135 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
3137         * loader.c (mono_method_get_header): Do most of the work outside the
3138         loader lock, to avoid assembly load hook deadlocks.
3140         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
3141         (mono_metadata_parse_type_full): Ditto.
3143 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
3145         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
3146         Make the stack depth fixed. Ensure proper argument passing to the backtrace
3147         funtions. Finally, use a lock to produce well ordered output.
3149         The lock looks silly, as all calls to the corlib mempool should be guarded
3150         with the loader lock, but for some reason this fact doesn't help. 
3152         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
3154 2008-12-02  Mark Probst  <mark.probst@gmail.com>
3156         * socket-io.c: 64 bit big-endian fixes.
3158 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
3160         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
3161         targets that require strict compatibility between the types.
3163         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
3164         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
3165         Kill the strict argument and create a new one valuetype_must_be_boxed.
3167         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
3168         state that all valuetypes must be boxed.
3170         Fixes #448560.
3172 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
3174         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
3175         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
3177         Contributed under MIT/X11 license.
3179 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
3181         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
3182         the inflate_generic_type machinery should handle it.
3184         This avoids a crash when the field's flags is zero and it's type is
3185         a primitive.
3186         What happens is that mono_metadata_parse_type_full will see that opt_attrs
3187         is zero and will return one of the cached built-in primitive types. Since
3188         those types live in read-only memory, the code that copies it crashes.  
3190 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3192         * object.c: Don't put function descriptors into generalized IMT
3193         thunks.
3195 2008-11-28  Mark Probst  <mark.probst@gmail.com>
3197         * class.c: Enable generic code sharing on PPC64.
3199 2008-11-27  Mark Probst  <mark.probst@gmail.com>
3201         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
3202         from mini/mini.c.
3204         * generic-sharing.c: Allocate the method template slists from the
3205         image mempool so it doesn't leak.
3207 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
3209         * class.c (generic_array_methods): Release the linked list.
3211 2008-11-27  Mark Probst  <mark.probst@gmail.com>
3213         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
3214         invocation to g_utf16_to_utf8().
3216 2008-11-26  Mark Probst  <mark.probst@gmail.com>
3218         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
3219         arguments on big endian archs.
3221 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3223         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
3224         the type name (test added in corlib).
3226 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3228         * pedump.c: initialize perf. counters. Fixes a segv.
3230 2008-11-25  Martin Baulig  <martin@ximian.com>
3232         * mono-debug-debugger.c
3233         (mono_debugger_runtime_invoke): Return the exception object if an
3234         exception was thrown.  Visual Studio displays the exception object
3235         in the locals window.
3237 2008-11-24  Mark Probst  <mark.probst@gmail.com>
3239         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
3240         ftnptr.
3242 2008-11-24  Mark Probst  <mark.probst@gmail.com>
3244         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
3245         MONO_TYPE_U are sizeof (gpointer), too.
3247 2008-11-24  Mark Probst  <mark.probst@gmail.com>
3249         * marshal.c (mono_type_native_stack_size): Fixed size and
3250         alignment for reference types.
3252 2008-11-23  Mark Probst  <mark.probst@gmail.com>
3254         * class.c (mono_class_generic_sharing_enabled): Disable generic
3255         code sharing for PPC64.
3257 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
3259         * icall.c (mono_method_get_equivalent_method): Make sure
3260         method->klass->methods is inited before looping over it.
3262 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
3264         * object.c: when calling ExecuteAssembly in a newly created domain,
3265         the configuration file and application base are already set up.
3266         Bug #446353 take 2 fixed.
3268 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
3270         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
3271         Fixes #444715. Fix a warning.
3273 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
3275         * appdomain.c: write the full path of the assembly to the .ini file
3276         created when "shadow-copying"
3277         Bug #446353 fixed.
3279 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
3281         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
3282         if signature==FALSE.
3284 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
3286         * marshal.h : Fix the cygwin build.
3287            marshal.c:12442: undefined reference to `_IID_IMarshal'
3288           
3289         Code is contributed under MIT/X11 license.
3291 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
3293         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
3294           free threaded marshaler when QueryInterface is called on a COM callable
3295           wrapper requesting the IMarshal interface.
3296           
3297         Code is contributed under MIT/X11 license.
3299 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
3301         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
3303         * reflection.c (mono_type_get_object): Special case the very common
3304         void type.
3306         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
3307         hold typeof(void).
3309 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
3311         * process.h : Adding method declaration for
3312           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
3313           
3314         * process.c : Adding implementation for
3315           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
3316           
3317         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
3318           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
3320         Code is contributed under MIT/X11 license.
3322 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
3324         * appdomain.c (unload_thread_main): Clean up threadpool by
3325         calling mono_thread_pool_remove_domain_jobs.
3327         * domain-internals.h (struct _MonoDomain): Add new fields to
3328         help coordinate the cleanup of the threadpool.
3330         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
3331         that cleans up the threadpool of all jobs associated with an appdomain.
3332         It does that by cleaning up the queues and making sure all active
3333         threads are accounted.
3335         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
3336         unloaded or in the process of. Take this is such way that there is
3337         no race condition between another thread starting the unload and the
3338         current thread acknowledging it.
3340         * threadpool.c (async_invoke_thread): Same.
3342         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
3343         firing the new thread.
3345         * threadpool.c (start_tpthread): Same.
3347         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
3349         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
3351 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
3353         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3354         Add support for DuplicateHandle.
3355         
3356         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3357         Add support for DuplicateHandle.
3358         
3359         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
3360         Add support for DuplicateHandle.
3362         Code is contributed under MIT/X11 license.
3364 2008-11-06  Mark Probst  <mark.probst@gmail.com>
3366         * class-internals.h: Make min_align into a whole byte.
3368         * class.c: Set min_align for SIMD types to 16.
3370 2008-11-05  Geoff Norton  <gnorton@novell.com>
3372         * attach.c: Default the attacher to enabled for all cases including
3373         embedded.
3375 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
3377         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
3378         change r117650.
3380 2008-11-04  Mark Probst  <mark.probst@gmail.com>
3382         * monitor.c, monitor.h: New function for querying offsets of
3383         members of MonoThreadsSync.
3385 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
3387         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
3388         to speed up this function and to avoid the boundless memory growth caused by
3389         the signature_dup () calls.
3391 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
3393         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
3394         wrapper.
3396         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
3397         by 1 bit.
3399         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
3401 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3403         * appdomain.c:
3404         * domain-internals.h: made mono_set_private_bin_path_from_config()
3405         "internal".
3406         * object.c: call the above function after setting the configuration
3407         file path for the root domain.
3408         Fixes bug #314478.
3410 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3412         * assembly.c: when the assembly is loaded from an absolute path, end
3413         basedir with a directory separator.
3414         Bug #440781 fixed.
3416 2008-10-30  Mark Probst  <mark.probst@gmail.com>
3418         * monitor.c (mono_monitor_get_fast_enter_method): If
3419         CompareExchange is not available, don't create the fastpath
3420         instead of asserting.  (The method is missing in the 1.1 profile.)
3422 2008-10-30  Mark Probst  <mark.probst@gmail.com>
3424         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
3426         * monitor.c, monitor.h: Code for generating Monitor.Enter and
3427         Monitor.Exit IL fastpaths.
3429 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3431         * class.c (mono_class_create_from_typedef): Added Vector2ul.
3433 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
3435         * class.c (mono_class_create_from_typedef): Added Vector2l.
3437 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
3439         * class.c (mono_class_create_from_typedef): Added Vector2d.
3441 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3443         * appdomain.c: translate \ into / for cache_path.
3444         * domain-internals.h: new mono_is_shadow_copy_enabled().
3445         * icall.c: (fill_reflection_assembly_name) do the same path
3446         manipulations that get_code_base does.
3447         (get_code_base) use mono_is_shadow_copy_enabled.
3449 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3451         * appdomain.c: shadow-copied assemblies go to CachePath +
3452         ApplicationName when both are set. DynamicBase has nothing to do with
3453         shadow copies.
3454         Bug #406877 fixed.
3456 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
3458         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
3459         STANDALONESIG table.
3461         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
3462         standalone signatures.
3464         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
3465         comparison code: instead of comparing the signatures using a custom
3466         equals function, transform them to a common signature and compare that. This
3467         works better with AOT.
3469 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
3471         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
3473         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
3474         call for generic instances.
3475         (mono_class_setup_properties): Call setup_properties () before accessing
3476         gklass->properties.
3478         * class.c (mono_class_get_virtual_methods): New helper function to iterate
3479         over the virtual methods of a class using metadata if possible, avoiding the
3480         creation of MonoMethod's for non-virtual methods.
3481         
3482         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
3483         get_virtual_methods () to iterate over the virtual methods of classes.
3485 2008-10-25  Martin Baulig  <martin@ximian.com>
3487         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
3489 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3491         * class.c (mono_class_create_from_typedef): Added Vector4i.
3493 2008-10-24  Mark Probst  <mark.probst@gmail.com>
3495         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
3496         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
3497         special-casing applies to eliminate the call completely.
3499 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
3501         * class.c (mono_class_create_from_typedef): Added Vector8s.
3503 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3505         * class.c (mono_class_create_from_typedef): Added Vector16sb.
3507 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3509         * icall.c: get rid of annoying warning.
3511 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3513         * threadpool.c: in 1.x, if you change the background status of the
3514         threadpool thread, it's not reset.
3515         Remove unnecessary calls to SetState.
3517 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3519         * threadpool.c: asynchronously create a set of idle threads upon first
3520         use of the threadpool. SetMinThreads will now start the appropriate
3521         number of idle threads if they are not already running. The default is
3522         1 threadpool thread per CPU. Increased the maximum number of threads
3523         per CPU to 10.
3525 2008-10-22  Martin Baulig  <martin@ximian.com>
3527         Revert r116521 from Zoltan, it breaks the debugger:
3529         * class.c (mono_class_get_virtual_methods): New helper function to iterate
3530         over the virtual methods of a class using metadata if possible, avoiding the
3531         creation of MonoMethod's for non-virtual methods.
3532         
3533         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
3534         get_virtual_methods () to iterate over the virtual methods of classes.
3536 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3538         * threads.c: when creating a threadpool thread, set its state to
3539         'background'.
3540         * threadpool.c: reset the background state of a threadpool thread
3541         after finishing each work item
3542         Bug #437888 fixed.
3544 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
3546         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
3547         
3548         * class.c (mono_class_setup_vtable_general): Add an optimized version for
3549         generic instances which works by inflating the methods in the container
3550         class's vtable.
3552         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
3553         variant which doesn't make a copy if no inflation was done.
3554         (mono_class_setup_fields): Use it.
3556         * metadata.c (mono_metadata_get_shared_type): New helper function to
3557         return a shared instance of a given MonoType.
3559         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
3560         a copy of most non-generic types.
3562 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
3564         * threadpool.c: remove one more GetSystemInfo () call.
3566 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
3568         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
3569         use the code in mono-proclib.h to get processor information.
3571 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3573         * appdomain.c: fixed the logic that determines whether assemblies in a
3574         directory are "shadow-copied" or not. Bug #433483 fixed.
3576 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
3578         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
3579         warning.
3581 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3583         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
3584         returning a vtype.
3586         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
3587         reflection.c: Use mono_field_get_name () for accessing a field's name.
3589         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
3590         class.c
3592         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
3593         field.
3595         * loader.c (find_method_in_class): Reenable the metadata optimization by
3596         not using it for generic instances.
3598         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
3599         data/def_type fields from MonoClassField into a separate structure.
3600         (struct MonoClassField): Remove data/def_type fields.
3601         (struct _MonoClass): Add a 'field_def_values' array to store the default
3602         values/RVA for fields.
3604         * class.c reflection.c: Update after the changes.
3605         
3606         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
3607         for accessing field->data.
3609         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
3611         * loader.c (find_method_in_class): Revert the last change for now as
3612         it breaks Mono.C5 unit tests.
3614         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
3615         'field_generic_types' and 'field_objects' which contain the information
3616         previously stored in MonoInflatedField.
3617         (MonoInflatedField): Delete.
3618         (struct _MonoClassField): Delete 'generic_info' field.
3620         * reflection.c: Store the information which was previously in 
3621         field->generic_info in MonoDynamicGenericClass instead.
3623         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
3624         MonoClassField changes.
3626 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
3628         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
3629         store the value inside the data array of the MonoMethodWrapper.
3630         This saves memory, is faster and fixes the lifetime issues (methods
3631         were never removed from the hash previously). May also fix bug#436996.
3633 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
3635         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
3636         generic instances, compute the type from the generic definition instead of
3637         looking in field->generic_info.
3639         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
3640         for inflated fields, the only user was get_fieldref_token () which no
3641         longer needs it.
3643         * class.c (mono_class_init): Revert the last change as it seems to cause
3644         crashes.
3646         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
3647         bytes on 64 bit platforms.
3649         * object.c (mono_class_create_runtime_vtable): Fix a warning.
3650         
3651         * object.c (mono_class_create_runtime_vtable): Don't initalize
3652         field->data/field->def_type here, it is done lazily by 
3653         mono_class_get_field_default_value ().
3655         * icall.c (ves_icall_get_enum_info): Call 
3656         mono_class_get_field_default_value () instead of directly accessing
3657         field->data and field->def_type.
3659         * object.c (get_default_field_value): Ditto.
3661         * class.c (mono_field_get_data): Ditto.
3662         
3663         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
3664         call for generic instances.
3666         * loader.c (find_method_in_class): If klass != from_class, then inflate
3667         the method with the context of from_class, since the caller assumes this.
3669 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
3671         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
3672         for accessing method->slot.
3674 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
3676         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
3678 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
3680         * class.c (mono_method_get_vtable_index): Use
3681         mono_method_get_vtable_slot () for accessing method->slot.
3683         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
3684         accessing klass->methods.
3686         * class.c (mono_method_get_vtable_slot): New helper function.
3687         (mono_class_get_vtable_entry): Ditto.
3688         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
3689         accessing method->slot.
3691         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
3692         method to get_inflated_method ().
3694         * class.c (mono_class_get_inflated_method): New helper method to obtain
3695         a method of an inflated class without calling setup_methods ().
3696         (mono_class_get_cctor): Use get_inflated_method.
3698         * generic-sharing.c (mono_class_get_method_generic): Ditto.
3699         
3700         * marshal.c image.c: Lazily create all the marshal caches.
3702         * image.c (mono_image_init): Move initialization of runtime_invoke
3703         caches to marshal.c.
3705         * marshal.c (get_cache): New helper function to lazily initialize a 
3706         wrapper cache.
3707         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
3709         * debug-helpers.c (mono_method_full_name): Include generic arguments.
3711 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
3713         * loader.c: fixed check for interface type.
3715 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
3717         * appdomain.c: check for NULL setup before it's referenced.
3720 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
3722         * class.c: remove the unused old vtable setup code.
3724 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
3726         * class.c: don't depend on interface order in
3727         setup_interface_offsets (bug #435777).
3728         * reflection.c: sort the InterfaceImpl table (patch from
3729         Jb Evain  <jbevain@novell.com>).
3731 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
3733         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
3734         the low level assemblies lock.
3736 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
3738         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
3739         object.c, reflection.c, socket-io.c, threads.c: introduced
3740         mono_framework_version () to return the major framewrok version,
3741         changed the code that was using more complex patterns to use it.
3742         Return the correct value for PlatformID for OSX.
3744 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
3746         * icall-def.h, process.h, process.c: added an icall to get info about
3747         processes using mono-proclib.
3749 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
3751         * mono-perfcounters.c: use the mono-proclib functions to
3752         access process information.
3754 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
3756         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
3757         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
3758         reflection.c: remove rawbuffer usage: mmap support is more sanely
3759         provided by utils/mono-mmap.
3761 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
3763         * gc.c: use posix semaphores when possible so that
3764         mono_gc_finalize_notify() is signal safe.
3766 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
3768         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
3769         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
3770         be #ifdef-ed out, the linker will remove the rest.
3772         * marshal.c: Implement DISABLE_COM.
3774         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
3776 2008-10-11  Miguel de Icaza  <miguel@novell.com>
3778         * locales.c (string_invariant_compare_char): Optimization: do not
3779         call g_unichar_type unless we actually need the information.
3781 2008-10-10  Mark Probst  <mark.probst@gmail.com>
3783         * object.c, class-internals.h: Also create remoting trampolines
3784         for generic methods.  Pass the domain to the remoting trampoline
3785         creation function, too.
3787 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
3789         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
3791 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3793         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
3794         Vector4ui.
3796 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3798         * assembly.c:
3799         * locales.c: remove the use of g_strdown. Fixes bug #322313.
3801 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
3803         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
3804         for the least possible amount of time (extending the fix in r113458).
3806 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
3808         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
3810 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
3812         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
3813         as possible simd intrinsic types.
3814         Optimized the test to check for the common prefix first.
3816 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
3818         * class.c: back out part of a broken optimization committed on
3819         May 23th (bug #433908).
3821 2008-10-09  Mark Probst  <mark.probst@gmail.com>
3823         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
3824         Win32.  Should fix #432388 for most cases until we have the new
3825         profiler on Win32.
3827 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
3829         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
3830         instead of using inst->id so the hash is stable for AOT.
3832 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
3834         * appdomain.c:
3835         * icall.c: create a .ini file for shadow-copied assemblies that
3836         contains the location of the original assembly. Use this to return the
3837         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
3838         Also fix the number of '/' for windows when returning the CodeBase.
3839         Fixes bug #430920.
3841 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3843         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
3845         Code is contributed under MIT/X11 license.
3847 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3849         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
3850           if if the class vtable needs initialized.
3852         Code is contributed under MIT/X11 license.
3854 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
3856         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
3857           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
3858           STRING->BSTR, and CLASS->INTERFACE.
3860         Code is contributed under MIT/X11 license.
3862 2008-10-07  Marek Habersack  <mhabersack@novell.com>
3864         * sysmath.h: changed the declaration of the
3865         ves_icall_System_Math_Round2 icall by adding an extra
3866         away_from_zero parameter.
3868         * sysmath.c (ves_icall_System_Math_Round2): added support for
3869         away from zero rounding. The icall now takes an extra boolean
3870         parameter to signal that away from zero operation is requested.
3872 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
3874         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
3875         the delegate klass so it can work with full-aot.
3876         (mono_marshal_get_delegate_end_invoke): Ditto.
3877         (mono_marshal_get_delegate_invoke): Ditto.
3879 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
3881         * gc.c, attach.h, attach.c: remove a bad pattern:
3882         add_finalizer_callback () is not implemented correctly, it can't
3883         without adding more overhead to the finalizer loop and it's not
3884         even needed, since we know exactly what we need to call, so there is
3885         no need to do so through an expensive function pointer.
3887 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
3889         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
3890         for the no-gc case.
3891         * attach.c (mono_attach_init): Remove the #ifdef.
3893 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
3895         * attach.c (mono_attach_init): Don't use
3896         mono_gc_add_finalizer_thread_callback when compiling without GC.
3897         Fixes #432306.
3898         
3899         Code is contributed under MIT/X11 license.
3901 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
3903         * class.c (mono_class_create_from_typedef): Remove the 
3904         #ifndef DISABLE_SIMD stuff.
3906 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
3908         * class-internals.h (MonoClass): Added simd_type bit field.
3910         * class.c (mono_class_create_from_typedef): Check if type is a simd
3911         intrinsic.
3913 2008-10-03  Mark Probst  <mark.probst@gmail.com>
3915         * object.c (mono_method_add_generic_virtual_invocation): Only add
3916         instantiations to the thunk whose count is at least as large as
3917         the threshold.
3919 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3921         * icall.c: changed the Type of the exception thrown when trying to
3922         invoke a constructor on an abstract class. Part of the fix for bug
3923         #324185.
3925 2008-10-02  Mark Probst  <mark.probst@gmail.com>
3927         * class.c, class-internals.h (mono_method_get_vtable_index): New
3928         function which returns the index into the vtable and properly
3929         handles inflated virtual generic methods.
3931 2008-10-01  Mark Probst  <mark.probst@gmail.com>
3933         * object.c, domain.c, object-internals.h, domain-internals.h:
3934         Generalize IMT thunk machinery to also handle thunks for virtual
3935         generic method invokes.  When a virtual generic method is invoked
3936         more than a number of times we insert it into the thunk so that it
3937         can be called without lookup in unmanaged code.
3939         * generic-sharing.c, class-internals.h: Fetching a
3940         MonoGenericInst* for a method from an (M)RGCTX.
3942 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
3944         * marshal.c (emit_marshal_string): Applied a variant of a patch by
3945         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
3946         marshalling. Fixes #431304.
3948 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
3950         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
3951           handle when ref is specified without In or Out.
3953         Code is contributed under MIT/X11 license.
3955 2008-09-30  Mark Probst  <mark.probst@gmail.com>
3957         * loader.c (mono_get_method_constrained): Don't expand method with
3958         the class's context, because it's already a method of that class.
3960 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
3962         * attach.c : should be correct build fix.
3964 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
3966         * attach.c: Fix the previous change.
3968 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
3970         * attach.c : quick w32 build fix.
3972 2008-09-27  Miguel de Icaza  <miguel@novell.com>
3974         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
3975         crashes MonoDevelop: #430455.
3977 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
3979         * domain-internals.h (struct _MonoDomain): Move most fields used only by
3980         the JIT do MonoJitDomainInfo in ../mini/mini.h.
3982         * domain.c: Remove initialization/cleanup of the removed fields.
3984 2008-09-27  Mark Probst  <mark.probst@gmail.com>
3986         * class.c (mono_class_generic_sharing_enabled): Enable generic
3987         code sharing for PPC.
3989 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
3991         * attach.c : Fixing the Windows builds.
3993         Code is contributed under MIT/X11 license.
3995 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
3997         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
3998         the default generic sharing mode to 'all'.
4000 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4002         * generic-sharing.c, class-internals.h: New function for checking
4003         whether a method needs a static RGCTX invoke wrapper.  A few
4004         funtions moved from mini/generic-sharing.c.
4006         * icall.c: New function used.
4008 2008-09-25  Mark Probst  <mark.probst@gmail.com>
4010         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
4011         Static RGCTX invoke wrapping applies to value type methods, too.
4013         * class.c (mono_class_setup_vtable_general): In generic-shared
4014         value types, wrap methods with a static RGCTX invoke wrapper.
4016 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
4018         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
4019         osx build.
4021 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
4023         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
4024         register a callback which is called when the finalizer thread is woken
4025         up.
4026         (finalizer_thread): Call the callback if it exists.
4028         * attach.h attach.c: New files, implementing the attach mechanism.
4030         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
4031         
4032         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
4033         by the previous change.
4035 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
4037         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
4038         loader.c, marshal.c, metadata-internals.h, metadata.c,
4039         method-builder.c, object.c, reflection.c: introduced specific functions
4040         to allocate from the domain and image mempools and cleaned up most of
4041         the code to use them (still missing a few in reflection.c).
4042         Keep the loader bytes counter updated.
4044 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
4046         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
4047         loader-related counters.
4049 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
4051         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
4052         added more MS-compatible counters.
4054 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
4056         * class.c (mono_class_setup_fields): Call setup_fields before accessing
4057         class->blittable. Fixes #428217.
4059 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
4061         * reflection.c (mono_image_get_field_on_inst_token): Call 
4062         field_encode_signature () since that handles custom modifiers too.
4063         Fixes #424663.
4065 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
4067         * reflection.c (add_custom_modifiers): New helper function to merge custom
4068         modifiers stored in objects to a MonoType.
4069         (fieldref_encode_signature): Encode custom modifiers.
4070         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
4071         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
4073 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
4075         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
4076         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
4077         64-bit IL only images because imports are not resolved for IL only images.
4078         Special thanks to Bill Holmes for finding this bug and testing the patch.
4079         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
4081         Contributed under MIT/X11 license.
4083 2008-09-19  Miguel de Icaza  <miguel@novell.com>
4085         * mono-config.c (dllmap_start): Add support for the bits keyword
4086         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
4088 2008-09-19  Mark Probst  <mark.probst@gmail.com>
4090         * reflection.c (inflate_mono_method): When the class the method is
4091         to be inflated for is itself not inflated, just return the method.
4093 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
4095         * mono-perfcounters.c: use more user friendly process instance names.
4097 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
4099         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
4100           handle "[in] ref" and "[in][out] ref" cases.
4102         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
4103           to mono_mb_create_method.  This was causing problems calling native to
4104           managed passing Variants by value.
4106         Code is contributed under MIT/X11 license.
4108 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
4110         * class.c (can_access_internals): Call mono_assembly_load_friends ()
4111         before accessing the friend_assembly_names field.
4113         * assembly.c (mono_assembly_load_friends): Make this callable multiple
4114         times.
4115         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
4116         called lazily when it is needed.
4118         * metadata-internals.h (struct _MonoAssembly): Add 
4119         'friend_assembly_names_inited' flag.
4121 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
4123         * mono-perfcounters-def.h: fix the types of a few counters.
4124         * mono-perfcounters.c: implemented the instance names getter
4125         and a few bugfixes.
4127 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
4129         * culture-info-table.h : regenerated.
4131 2008-09-17  Robert Jordan  <robertj@gmx.net>
4133         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
4134         context bound objects. Fixes #415577.
4136         Code is contributed under MIT/X11 license.
4138 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
4140         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
4141         implementation (bug #423582).
4143 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
4145         * object.c (mono_object_get_virtual_method): Handle the case method->slot
4146         is not set. Fixes #426309.
4148 2008-09-16  Jb Evain  <jbevain@novell.com>
4150         * class.c (mono_class_from_name): fix the exported type look up
4151         when the type is defined in a referenced assembly.
4153 2008-09-16  Jb Evain  <jbevain@novell.com>
4155         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
4156         increment the next index counter on each iteration to make that work
4157         for more than one type forwarder. Unmanaged part to fix #422929.
4159 2008-09-15  Mark Probst  <mark.probst@gmail.com>
4161         * object-internals.h: enum ComInterfaceType in
4162         MonoInterfaceTypeAttribute is guint32, not guint16.
4164 2008-09-12  Mark Probst  <mark.probst@gmail.com>
4166         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
4167         writing code.
4169 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4171         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
4172         not gboolean.
4174 2008-09-11  Mark Probst  <mark.probst@gmail.com>
4176         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
4177         Endianness fixes for MonoSymbolFileOffsetTable.
4179 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
4181         * process.c (complete_path) : Removing quotes from the 
4182           input path.  The glib file routines do not handle file paths
4183           that have quotes around them.
4185         Code is contributed under MIT/X11 license.
4187 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
4189         * socket-io.h : Adding a comment to provide locations where 
4190           changes to MonoSocketAsyncResult need to be synced.
4192         Code is contributed under MIT/X11 license.
4194 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
4196         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
4197         parameters as well. Fixes #425001.
4199 2008-09-08  Miguel de Icaza  <miguel@novell.com>
4201         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
4202         windows build.
4204 2008-09-07  Miguel de Icaza  <miguel@novell.com>
4206         * console-io.c: Add support for tracking the window size if it
4207         changes.
4209         The setup is very simple: the TtySetup function will now return a
4210         pointer to a location in memory that tracks the current console
4211         size.  The managed code checks its current value every time its
4212         queried against the last value set, and updates accordingly.
4214         With this setup we can work with multiple consoles, and we do not
4215         require to poke into managed code from a signal handler.
4217         Additionally, the environment for COLUMNS and LINES is now handled
4218         in unmanaged code.
4220         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
4222 2008-09-07  Mark Probst  <mark.probst@gmail.com>
4224         * marshal.c (mono_type_native_stack_size): Treat
4225         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
4227 2008-09-04  Jb Evain  <jbevain@novell.com>
4229         * class.c (mono_class_is_assignable_from): fix assignability of nullables
4230         to nullables.
4232 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
4234         * verify.c (verify_type_compatibility_full): Revert change
4235         to allow converting a native int to unmanaged pointer be verifiable
4236         under non-strict mode.
4237         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
4239         * verify.c: Added some TODOs.
4241 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
4243         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
4244           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
4245           Changed to use GlobalAlloc for the memory returned on Windows platforms.
4247         Code is contributed under MIT/X11 license.
4249 2008-09-02  Jb Evain  <jbevain@novell.com>
4251         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
4253 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
4255         reflection.c (typebuilder_setup_fields): Handle classes with
4256         explicit size.
4258 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
4260         class.c (mono_class_setup_events): Add memory barrier due to
4261         double checked locking.
4262         
4263         class.c (mono_class_setup_properties): Same.
4265 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
4267         * class.c (mono_class_is_assignable_from): Fix the build.
4268         
4269         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
4270         before accessing klass->interface_bitmap. Fixes #421744.
4272 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
4274         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
4275         the runtime into no-exec mode, useful when running the AOT compiler.
4277         * appdomain.c gc.c object.c: Avoid executing managed code when running
4278         in no-exec mode.
4279         
4280         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
4282         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
4283         special case when the mono_assembly_loaded () returns NULL because the 
4284         search hook is not installed.
4286 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
4288         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
4289         crashes in bstr marshalling on linux.
4291 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
4293         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
4294         with more than one parameter.
4296 2008-08-24  Miguel de Icaza  <miguel@novell.com>
4298         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
4299         start/stop flow control as well when turning off ICANON (allows
4300         C-s and C-q to be read by Console.ReadKey).
4302 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
4304         * class.c (mono_class_init): Move the initialization of nested classes
4305         into mono_class_get_nested_types (). Fixes #418433.
4307         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
4308         flag.
4310         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
4311         iterating tough the nested classes of a class.
4313 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
4315         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
4316         on arm.
4318 2008-08-22  Miguel de Icaza  <miguel@novell.com>
4320         * console-io.c (sigcont_handler): Support signal chaining for
4321         SIGCONT.
4323         (console_set_signal_handlers): Use best practices with sigaction,
4324         clear the structure before using it. 
4326 2008-08-22  Robert Jordan  <robertj@gmx.net>
4328         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
4329         Fix the Windows build.
4331 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
4333         * class.c (mono_class_generic_sharing_enabled): Make the default
4334         sharing mode 'corlib'.
4336 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
4338         * console-io.c (console_set_signal_handlers): Fix a warning.
4340         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
4341         method normally, the JIT will take care of avoiding recursion.
4343 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
4345         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
4347         Code is contributed under MIT/X11 license.
4349 2008-08-20  Miguel de Icaza  <miguel@novell.com>
4351         * console-io.c (sigcont_handler): We need to restore the entire
4352         termios state, not only the original settings, as things like echo
4353         can be controlled after this (Booish exposes this issue with its
4354         own ReadLine implementation).
4356         Additionally, we need to set the terminal back into keypad_xmit
4357         mode.
4358         
4359         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
4360         string as a paramter as well.   Otherwise we get different
4361         keyboard sequences.
4363 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
4365         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
4366         delegates with byref out parameter passing. Fixes #351520.
4368         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
4369         a generic context.
4370         (mono_type_get_desc): Add the type arguments for GENERICINST.
4371         (mono_method_full_name): Stringify the class name using mono_type_full_name
4372         so it picks up generic arguments.
4374 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
4376         * console-io.c: Removed debug output.
4378 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
4380         reflection.c (mono_reflection_create_runtime_class): Alloc
4381         the nested classes linked list using the dynamic image mempool.
4382         Fixes leak in corlib compilation.
4384 2008-08-19  Miguel de Icaza  <miguel@novell.com>
4386         * console-io.c: Fix incredibly annoying behavior on the console
4387         after resuming execution after control-z.   This affected every
4388         console application.
4390 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
4392         * mempool-internals.h: Header for mono private mempool functions. The first
4393         two function are for allocating glib linked lists using pools.
4395         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
4397         * Makefile.am: Added mempool-internals.h.
4399 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
4401         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
4402         (mono_domain_free): Ditto.
4404         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
4405         be used by the JIT to store its domain-specific information, instead of putting
4406         it directly into MonoDomain.
4408         * domain.c (mono_install_create_domain_hook): New helper function to install
4409         a hook which initializes domain->runtime_info.
4411         * domain.c (mono_install_free_domain_hook): Ditto.
4412         
4413 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
4415         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
4416         asserting if the ares parameter is null.
4418         * mono-perfcounters.c: Fix warnings.
4420         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
4421         is not needed, don't check for interruptions either.
4422         (mono_marshal_get_delegate_end_invoke): Ditto.
4424 2008-08-15  Marek Habersack  <mhabersack@novell.com>
4426         * mono-perfcounters.c (predef_readonly_counter): added support for
4427         reading the ASP.NET Requests Queued counter from another process.
4429 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
4431         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
4432         MonoImage to simplify the AOT code.
4434 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
4436         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
4437         marshalling. Fixes #416078.
4439 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4440         
4441         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
4442         it is set, looking up the icall address is deferred to the JIT, since 
4443         in embedded scenarios, the icall might not be registered in the runtime
4444         doing the AOT compilation. Backported from the 2.0 branch.
4446 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
4448         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
4449         Fixes #415621.
4451 2008-08-05  Marek Habersack  <mhabersack@novell.com>
4453         * Makefile.am: added support for cross-compilation.
4455 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
4457         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
4459 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
4461         * mono-perfcounters.c: jitted methods and jitted bytes counters.
4463 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
4465         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
4466         mono-perfcounters.c: performance counters implementation.
4468 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
4470         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
4471         to gpointer, letting the AOT code decide what to store in it.
4473 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
4475         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
4476           mono_class_setup_methods if the methods are not initialized.
4478         Code is contributed under MIT/X11 license.
4480 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4482         * verify.c: Remove some debug code I commited by accident.
4484         * verify.c (mono_method_is_valid_in_context): Change the return value
4485         to make possible to distinguish between invalid and unverifiable.
4487         * verify.c (verifier_load_method): Don't return NULL for unverifiable
4488         methods.
4490 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4492         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
4493         constraints. Fixes regression in gtest-253.
4495 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
4497         * verify.c (mono_verifier_verify_class): Don't allow generic types
4498         with explicit layout.
4500         * verify.c (mono_method_verify): Check locals and argument types.
4502 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
4504         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
4505         wait if the thread is in StopRequested state.
4507         * class.c (mono_class_from_name): Refactor the module searching code into
4508         a separate function so it can be reused in the AOT case too.
4510 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4512         * verify.c (mono_type_is_valid_in_context): Improve the error message.
4513         Check both the type and it's generic type definition for loader errors.
4514         
4515         * verify.c (mono_method_is_valid_in_context): Don't generate another
4516         error when a type errors occur, this leads to the wrong exception been
4517         thrown.
4519 2008-07-28  Dick Porter  <dick@ximian.com>
4521         * icall-def.h
4522         * process.c
4523         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
4524         New internal calls to duplicate and close a process handle.
4526 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
4528         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
4530 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
4532         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
4534 2008-07-27  Robert Jordan  <robertj@gmx.net>
4536         * class.c (mono_class_init): Don't compute class.has_finalize for
4537         valuetypes. Fixes #412477.
4539 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
4541         * verify.c: Implement constraint equivalence checking.
4542         This is required when a generic parameter is used as
4543         argument to a constrained one.
4545         Fixes #410637.
4547 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
4549         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4551         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
4553         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
4554         synch with managed object layout.
4556 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
4558         * verify.c (do_branch_op): Handle valuetypes and generic
4559         arguments properly.
4561         * verify.c (do_cmp_op): Same.
4563         Fixes #410383.
4565 2008-07-24  Mark Probst  <mark.probst@gmail.com>
4567         * generic-sharing.c: Fix memory leaks.
4569         * class.c, class-internals.h: Make
4570         mono_class_inflate_generic_type_with_mempool() non-static.
4572 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
4574         * pedump.c (dump_verify_info): Dump full class name.
4576 2008-07-24  Mark Probst  <mark.probst@gmail.com>
4578         * generic-sharing.c: Removed some old code that didn't do anything.
4580 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
4581         * profiler.c: Added runtime_initialized_event,
4582         mono_profiler_install_runtime_initialized and
4583         mono_profiler_runtime_initialized. This new hook tells the profiler
4584         when the runtime is sufficiently initialized to be able to call
4585         mono_thread_attach on the root appdomain.
4586         * profiler.h, profiler-private.h: Likewise.
4588 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
4590         * verify.c (do_cast): Do boxing for generic arguments as well.
4592         * class.c (is_nesting_type): Drop generic instantiations before
4593         checking for nesting.
4595         * class.c (can_access_instantiation): Allow access to generic
4596         arguments.
4598 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
4600         * verify.c (verify_class_for_overlapping_reference_fields):
4601         On some cases, the field size might be zero, guard against that.
4602         Fix the explicit layout check to work as expected.
4604 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
4606         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
4607         mono_thread_resume () during shutdown, since the thread we want to abort
4608         might be suspended.
4610 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
4612         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
4613         warning.
4615         * debug-mono-symfile.c: Fix a warning.
4617         * mono-perfcounters.c (get_cpu_times): Fix a warning.
4619         * object.c (mono_class_vtable): Check if exception_type is set, and return
4620         NULL as defined by the function comments.
4622 2008-07-22  Mark Probst  <mark.probst@gmail.com>
4624         * mempool.c: Use malloc for every single mempool allocation if the
4625         configure option is set.  This makes it easier to track mempool
4626         allocations with tools like Valgrind.
4628 2008-07-22  Jb Evain  <jbevain@novell.com>
4630         * reflection.c (create_dynamic_mono_image): emit the same
4631         metadata version that SL2 does when creating a SL2 image.
4633 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
4635         * icall-def.h:
4636         * icall.c: New icall System.Enum:get_hashcode. This function
4637         avoids the overhead of boxing the enum to the underlying type.
4639 2008-07-21  Mark Probst  <mark.probst@gmail.com>
4641         * reflection.c (mono_method_get_object): Don't let static RGCTX
4642         invoke wrappers get into MonoReflectionMethods.
4644 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
4646         * object-internals.h:
4647         * object.c: New mono_runtime_class_init_full function
4648         that makes throwing the exception optinal.
4650         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
4651         for the case where the exception object is supplied.
4653 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
4655         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
4656         old ld versions.
4658         Contributed under MIT/X11 license.
4660 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4662         * string-icalls.c (ves_icall_System_String_InternalSplit):
4663         Optimize array allocation by caching the MonoClass of the
4664         array type.
4666         * icall.c (ves_icall_Type_GetMethodsByName): Same.
4668         * reflection.c (mono_param_get_objects): Same.
4670 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4672         * icall-def.h:
4673         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
4674         It inflates the given type using the class context.
4676 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4678         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
4679         the vtable if it already exists.
4681         * object-internals.h: Add mono_class_try_get_vtable as part of the
4682         internal API.
4684         * reflection.c (mono_type_get_object): Use the MonoObject from the
4685         vtable when possible. Reduces locking contention on reflection heavy
4686         code.
4688 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
4690         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
4691         g_bit_nth_msf () since that macro is not implemented in eglib.
4693 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
4695         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
4696         on platforms which do not support it.
4698 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
4700         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
4702 2008-07-11  Martin Baulig  <martin@ximian.com>
4704         * mono-debug-debugger.h
4705         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
4707         * mono-debug-debugger.c
4708         (_mono_debugger_interruption_request): New global volatile variable.
4709         (mono_debugger_check_interruption): New public function.
4711         * threads.c
4712         (mono_thread_current_check_pending_interrupt): Call
4713         mono_debugger_check_interruption().
4714         (mono_thread_interruption_checkpoint_request): Likewise.
4716 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4718         * verify.c: Add more type checks for loaded types. Verify the result
4719         handle from ldtoken.
4721 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4723         * loader.c (field_from_memberref): Don't crash if the field
4724         wasn't found.
4726 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4728         * verify.c: Verify if type and method instantiations
4729         don't have invalid VAR or MVAR arguments.
4731 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4733         * verify.c: Fix double free of function pointer list.
4735 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
4737         * object.c (mono_string_to_utf8): Comment the new code as it
4738         breaks under eglib.
4740 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
4742         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
4744 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
4746         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
4747           is not throw too many times.
4749         Code is contributed under MIT/X11 license.
4751 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
4753         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
4754         debugging is turned off.
4756 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
4758         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
4760 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4762         * class-internals.h, class.c: Added new generic sharing option:
4763         Share only stuff in System.Collections.Generic, which is now the
4764         default.
4766 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4768         * generic-sharing.c, class-internals.h: New function for getting a
4769         generic method in a generic class given the corresponding method
4770         for a different instantiation of the class.  Partly refactored
4771         from mini-trampolines.c.
4773         * class.c: Make sure generic methods have a class_inst if they are
4774         part of a generic class.
4776         * metadata.c (mono_type_stack_size_internal): Handle type
4777         variables.
4779 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4781         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
4782         Signifies whether information on the this/vtable/mrgctx variable
4783         is available.
4785 2008-07-04  Mark Probst  <mark.probst@gmail.com>
4787         * object.c, object-internals.h, icall.c: New function
4788         mono_delegate_ctor_with_method(), which does the same as
4789         mono_delegate_ctor(), but takes an explicit method argument
4790         instead of taking the method from the jit info.
4792         * marshal.c: When creating a delegate with an inflated method take
4793         the "this" argument as the target class for the castclass.
4795 2008-07-03  Mark Probst  <mark.probst@gmail.com>
4797         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
4798         mono_jit_info_table_find() to perform very badly in some cases.
4800 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
4802         * icall.c (type_from_typename): Handle 'string'.
4804         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
4805         wrappers into the wrapper_hash, since the key is not a MonoMethod.
4807 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
4809         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
4811         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
4812         number of available managed allocator types.
4814         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
4815         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
4817 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
4819         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
4820         which is a low level lock protecting just the 'jit_code_hash' hash table.
4822         * domain.c: Initialize+cleanup jit_code_hash_lock.
4823         
4824 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
4826         * coree.c (mono_load_coree): Set coree_module_handle global variable only
4827         after initialization.
4829         * coree.h: Make MonoFixupExe internal.
4831         Contributed under MIT/X11 license.
4833 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
4835         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
4836         because that is platform independent. Check NumberOfRvaAndSizes in PE32
4837         as well.
4838         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
4839         image being loaded is a CLI image and _CorValidateImage gets called.
4841         * coree.h: Add MonoLoadImage.
4843         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
4844         instead of LoadLibrary.
4846         Contributed under MIT/X11 license.
4848 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
4850         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
4851         for any primitive type.
4853 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
4855         * object.c (mono_array_new_specific): Optimize this and the other allocation
4856         functions a bit.
4857         
4858         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
4859         domains too if mono_dont_free_domains is set.
4861         * domain-internals.h (mono_dont_free_domains): New internal option controlling
4862         whenever to free appdomain data after it has been unloaded.
4864         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
4865         
4866 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
4868         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
4869         (mono_method_get_equivalent_method): Fix a warning.
4871         * object.c (mono_message_init): Avoid looking up array types for each call.
4873 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
4875         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
4876         call.
4878         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
4879         even more.
4881         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
4882         each iteration.
4884         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
4885         fields of an enum.
4887 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4889         * object.c (mono_value_box): Fix boxing of nullables.
4891 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
4893         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
4894         mono_module_handle that is defined by the linker; no initialization required.
4895         * coree.h: Remove mono_module_handle, add __ImageBase, update
4896         mono_image_open_from_module_handle.
4897         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
4898         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
4899         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
4900         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
4901         to 4 GB away from image base address. IA64 version is not tested but was very
4902         easy to implement and should work if we ever need it.
4903         * domain.c (mono_init_internal): Avoid system error message boxes.
4904         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
4905         with has_entry_point. Handle do_mono_image_load fauilre correctly.
4906         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
4907         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
4908         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
4910         Contributed under MIT/X11 license.
4912 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4914         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
4915         as part of the private mono API.
4916         
4917         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
4918         Do proper argument checking for methods that belong to generic classes.
4919         Do proper type resolution for GMFH/2.
4920         Fixes #377324.
4921         
4922 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4924         * verify.c (do_switch): Fix a memory corruption bug with
4925         the jump index is out of bound.
4927 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4929         * verify.c: Disable debug code.
4931 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4933         * reflection.c (mono_image_get_methodbuilder_token): Use
4934         mono_image_get_methodspec_token_for_generic_method_definition
4935         instead of mono_image_get_memberref_token. We cache more memberef
4936         entries now.
4938 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4940         * verify.c: Inflate exception clause types.
4941         Fixes #402606.
4942         
4943 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4945         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
4946         name.
4948         * reflection.c (mono_image_get_ctorbuilder_token): Same.
4950         * reflection.c (mono_image_create_method_token): Same.
4952 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4954         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
4955         It does the same as mono_image_get_methodref_token but works on
4956         MethodBuilder.
4958         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
4959         and always generate a methodspec. This follows the old behavior and fixes
4960         the regressions in System.Core. 
4962 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
4964         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
4965         don't event mono_class_get () succeeds. Fixes #402182.
4967 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
4969         * metadata-internals.h: Added MonoDynamicImage::methodspec
4970         hashtable to store methodspec tokens created for MethodBuilders.
4972         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
4973         MethodBuilders as open instantiations if a methodspec was requested.
4975         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
4977         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
4979         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
4981         Fixes bug #349190.
4983 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
4985         * loader.c (method_from_methodspec): Avoid crashing if the
4986         method lookup fails.
4988 2008-06-20  Dick Porter  <dick@ximian.com>
4990         * socket-io.c (get_socket_assembly): Cope with Moonlight network
4991         classes being in a different assembly.  Fixes bug 399184.
4993 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
4995         * loader.c (mono_loader_init): Make this callable multiple times.
4996         (mono_dllmap_insert): Call mono_loader_init () so this works even before
4997         the runtime is initialized. Fixes #401755.
4999 2008-06-19  Dick Porter  <dick@ximian.com>
5001         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
5002         Fixes bug 349688.
5004 2008-06-19  Dick Porter  <dick@ximian.com>
5006         * socket-io.c:
5007         * icall-def.h: Implement Socket generic Send() and Receive()
5008         methods.  Fixes bug 395168.
5010 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
5012         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
5014         Contributed under MIT/X11 license.
5016 2008-06-18  Martin Baulig  <martin@ximian.com>
5018         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
5019         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
5020         set to 80.0.  The debugger <-> runtime interface is now frozen as
5021         well.   
5023         * mono-debug.c
5024         (mono_debug_debugger_version): Bump to 4.
5026 2008-06-18  Martin Baulig  <martin@ximian.com>
5028         * debug-mono-symfile.c
5029         (load_symfile): Don't check the minor version.
5031         * debug-mono-symfile.h: Bump the version number to 50.0.
5033 2008-06-18  Martin Baulig  <martin@ximian.com>
5035         * debug-mono-symfile.c
5036         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
5037         minimum required version.
5039 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
5041         * reflection.c (mono_custom_attrs_from_property): Fix support for
5042         retriveving cattrs of dynamic inflated generic types.
5044         * reflection.c (mono_custom_attrs_from_event): Same.
5046         * reflection.c (mono_custom_attrs_from_field): Same;
5048         * reflection.c (typebuilder_setup_events): Same cattrs of events.
5050         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
5051         Moved to metadata.c.
5053         * metadata.c: New functions to retrive the equivalent field, event
5054         of property from the generic type definition.
5056         * metadata-internals.h: Added new functions from metadata.c.
5058 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
5060         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
5061         to cached in a mempool is used.
5063         * metadata.c (free_generic_class): In some situations field generic_info type
5064         is not properly dup'ed and leads to double free'ing.
5066         Fixes #400643.
5068 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5070         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
5071         this arguments (will be needed later for generic methods).
5072         Collect stats.
5074 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5076         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
5077         Create a static RGCTX invoke wrapper for methods which require it.
5079 2008-06-17  Mark Probst  <mark.probst@gmail.com>
5081         * object.c, class-internals.h: New function for checking whether
5082         an individual field is special static.
5084 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
5086         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
5087         linear search since the table is sorted.
5089         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
5090         Fixes #324180.
5092 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
5094         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
5095         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
5097         * gc.c (mono_domain_finalize): Allow an infinite timeout.
5099         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
5100         
5101         * threads.c (mono_thread_request_interruption): Get rid of locking, use
5102         InterlockedCompareExchange to query and modify 
5103         thread->interruption_requested.
5105         * object-internals.h (struct _MonoThread): Change interruption_requested
5106         to a gint32 so it can be modified by atomic operations. Add 
5107         'critical_region_level' from the managed side, change small_id to a guint32,
5108         add new set of 'unused' fields.
5110         * appdomain.c: Bump corlib version.
5112 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
5114         * class.c (mono_class_from_name): Search modules as well. Fixes
5115         #322332.
5117 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5119         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
5120         templates.  Templates are generalized with an additional type_argc
5121         argument.  RGCTX templates have type_argc==0, MRGCTX templates
5122         have type_argc>0.
5124         * domain-internals.h, domain.c: New hash table for looking up
5125         MRGCTXs.
5127         * metadata.c, metadata-internals.h: Rename hash and equal
5128         functions for MonoGenericInst's and make them public.
5130         * class-internals.h: New data structures for the MRGCTX.  Macros
5131         for distinguishing slots in the RGCTX and the MRGCTX.
5133 2008-06-13  Mark Probst  <mark.probst@gmail.com>
5135         * object.c (mono_method_get_imt_slot): Put the same methods of
5136         different instantiations of the same generic interface in the same
5137         IMT slots, to make generic sharing simpler.
5139 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
5141         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
5143         * metadata.c (mono_metadata_field_info_with_mempool): Added.
5144         This function works just like mono_metadata_field_info, but
5145         accept a mempool as argument to be used allocating memory.
5147         * marshal.c (mono_marshal_load_type_info): Use new function
5148         to load marshal data into image mempool.
5150 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
5152         * class.c (mono_class_inflate_generic_type_with_mempool):
5153         This function allows to inflate a generic type using
5154         a mempool.
5156         * class.c (inflate_generic_type): Take a mempool as argument
5157         and use it to do type dup'ing.
5159         * class.c (mono_class_setup_fields): Field type for generic
5160         generic classes are allocated from the image mempool.
5162         * metadata.c (free_generic_class): Inflated field type is
5163         now allocated in the image mempool.
5165 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
5167         * threads.c (thread_cleanup): Free MonoThread::name.
5169 2008-06-12  Marek Habersack  <mhabersack@novell.com>
5171         * appdomain.c (ensure_directory_exists): avoid unnecessary
5172         mkdir(2) calls when the shadow directory already exists.
5173         (mono_make_shadow_copy): copy also satellite assemblies from the
5174         private bin directories.
5176 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
5178         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
5179         
5180         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
5181         a page boundary. Fixes #396219.
5183 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5185         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
5186         due to double-checked locking.
5188 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5190         * assembly.c (build_assembly_name): Release memory on failure.
5192         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
5194 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5196         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
5197         memory on failure.
5199 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5201         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
5202         memory on failure.
5204 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5206         * loader.c (field_from_memberref): Check if field signature type is equal
5207         to the non-inflated type of the field. Fixes #398980.
5209 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
5211         * assembly.c (mono_assembly_load_from_full): Call 
5212         mono_assembly_load_friends () outside the assemblies lock, since it can
5213         acquire the loader lock. Fixes #323696.
5215         * reflection.c (resolve_object): Inflate the inst with the context for
5216         FieldOnTypeBuilderInst. Fixes #399010.
5218 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5220         * reflection.c (mono_image_get_field_on_inst_token): Don't
5221         inflate the field to encode it's signature. If it's a
5222         VAR or MVAR it should stay that way in the signature.
5223         Fixes #399047.
5225 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5227         * reflection.c (resolve_object): Release memory of inflated types.
5229 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5231         * loader.c (mono_method_get_signature_full): Remove assert about
5232         loading a methodspec to a generic method. We have such methods, such as
5233         System.Threading.Interlocked::CompareExchange<T>.
5234         This assert was removed since it crashes the verifier when it checks
5235         methods calling CompareExchange<T>.
5237 2008-06-10  Marek Safar  <marek.safar@gmail.com>
5239         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
5240         of Type array and not MonoType.
5242 2008-06-10  Marek Habersack  <mhabersack@novell.com>
5244         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
5245         <lupus@ximian.com>
5247 2008-06-10  Martin Baulig  <martin@ximian.com>
5249         * debug-mono-symfile.h
5250         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
5251         changes to the file format, but we were generating incorrect
5252         source file indices in the line number table due to a bug, which
5253         made backtraces report an incorrect source file.
5255 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5257         * mono-debug.c: Moved mono_debug_free_method_jit_info from
5258         mini/debug-mini.c to here.
5260         * mono-debug.c (il_offset_from_address): Free memory from find_method.
5262         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
5263         use it to release structs returned by mono_debug_find_method.
5265 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
5267         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
5268         since it needs to set method->slot for all interface methods.
5270 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5272         * class-internals.h: Forgot to add.
5274 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5276         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
5278         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
5279         Lookup the custom attributes from property_hash.
5281         * reflection.c (mono_save_custom_attrs): Save the custom attributes
5282         in property_hash. Allocate all data using the image mempool.
5284         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
5285         for dynamic_custom_attrs to checks if the image is dynamic.
5287 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
5289         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
5290         assemblies array.
5291         
5292         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
5293         runtime functions while holding the domain assemblies lock.
5295 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5297         * verify.c: Reapplied the last bit of the reverted changes.
5299 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5301         * verify.c: Reapplied more of the reverted changes.
5303 2008-06-09  Martin Baulig  <martin@ximian.com>
5305         * debug-mono-symfile.c (load_symfile): Check the major version
5306         first; if it's wrong, don't print the minor version in the error message.
5308 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
5310         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
5311         lock instead of the domain lock to avoid deadlocks, since the thread might
5312         already hold the loader lock.
5314         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
5315         (mono_thread_attach): Ditto.
5317         * monitor.c: Use a TLS variable for holding the current thread id instead
5318         of calling pthread_self ().
5319         (mono_monitor_init_tls): New internal function to initialize the TLS
5320         variable.
5321         (mono_monitor_try_enter_internal): Put the owner == id check after the
5322         owner == 0 check.
5324         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
5325         missed optimizations when using gcc-4.3.
5327 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
5329         * reflection.c (mono_dynamic_image_free): Free the memory
5330         used by MonoGenericParam in MonoDynamicImage::gen_param.
5332         * reflection.c (mono_reflection_setup_generic_class): Allocate
5333         container from mempool.
5335         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
5336         container from mempool.
5338 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
5340         * threads.c (mono_set_pending_exception): New internal function to set the
5341         pending exception of the current thread.
5342         (mono_thread_get_and_clear_pending_exception): Check for 
5343         thread->pending_exception as well.
5345         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
5347         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
5348         it can trigger a collection.
5350 2008-06-06  Martin Baulig  <martin@ximian.com>
5352         Merged the `debugger-kahalo' branch.
5354         * mono-debug.h
5355         (MONO_DEBUGGER_VERSION): Bumped to 72.
5357         * debug-mono-symfile.h
5358         (MonoSymbolFileMethodIndexEntry): Removed.
5359         (MonoSymbolFileMethodEntry): New public typedef.
5360         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
5361         (MonoSymbolFileSourceEntry): Remove everything except `index' and
5362         `data_offset'.
5363         (MonoSymbolFileMethodEntry): Removed.
5364         (MonoSymbolFileLexicalBlockEntry): Removed.
5365         (MonoSymbolFileLineNumberEntry): Removed.
5366         (MonoDebugLexicalBlockEntry): Removed.
5367         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
5368         removed `num_il_offsets' and `il_offsets'.
5369         (MonoSymbolFile): Replace `version' with `major_version' and
5370         `minor_version'.
5371         (MONO_SYMBOL_FILE_VERSION): Replace with
5372         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
5373         `MONO_SYMBOL_FILE_MINOR_VERSION'.
5375         * debug-mono-symfile.c
5376         (mono_debug_symfile_lookup_location): Add support for the new line
5377         number table format.
5379 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5381         * metadata.c (free_generic_class): Release the inflated
5382         MonoClass of dynamic generic classes if it's not a generic
5383         type definition.
5385 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5387         * verify.c: Reapplied more of the reverted changes.
5389 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5391         * reflection.c (lookup_custom_attr): Clean the cached flag or
5392         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
5393         for SRE types.
5395 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
5397         * verify.c: Reapplied a small part of the reverted changes.
5399 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
5401         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5403         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
5404         previously in managed code.
5405         (mono_monitor_exit): Ditto.
5406         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
5408         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
5409         the managed definition.
5411 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
5413         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
5415 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
5417         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
5418         
5419         * monitor.c: Add some micro optimizations.
5421         * icall.c (type_from_typename): Handle 'bool'.
5423 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
5425         * verify.c: Implement constructor verification per P III 1.8.1.4.
5426         Fixes #396716.
5428 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
5430         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
5431         holding the assemblies lock here too.
5433 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5435         * verify.c: Kill stack_top function.
5437 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5439         * verify.c: Kill stack_get function.
5441 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5443         * verify.c (mono_method_verify): Last change broke the build. Fixed.
5445 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5447         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
5448         more reliable.
5450         * verify.c (mono_method_verify): Inflate params and locals to avoid
5451         mismatch when checking for compatibility.
5453 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
5455         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
5456         Length prefix should be size in bytes. Fix bug #339530.
5457         
5458         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
5459         Length prefix should be size in bytes. Fix bug #339530.
5461         Code is contributed under MIT/X11 license.
5463 2008-06-05  Bill Holmes <billholmes54@gmail.com>
5465         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
5467         Contributed under MIT/X11 license.
5469 2008-06-05  Martin Baulig  <martin@ximian.com>
5471         * mono-debug-debugger.c
5472         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
5474 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
5476         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
5477         while holding the assemblies lock to prevent deadlocks. Handle the case
5478         where the search hook returns NULL but the assembly was still loaded.
5479         Fixes #323696.
5481         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
5482         modify domain state.
5484 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
5486         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
5487         * Makefile.am (pedump_LDADD): Post-process object files and
5488         add dtrace-generated object file, if necessary.
5490         Code is contributed under MIT/X11 license.
5492 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5494         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
5496 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5498         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
5500 2008-06-04  Mark Probst  <mark.probst@gmail.com>
5502         * threads.c: Try to free everything from the delayed free table
5503         when shutting down threads, and set the variable to NULL after the
5504         table is freed so that calling
5505         mono_thread_hazardous_try_free_all() when shutting down the root
5506         domain doesn't crash.
5508 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5510         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
5511         the caller if resulting type was inflated.
5513         * class.c (mono_class_create_from_typespec): Free the MonoType if it
5514         was inflated.
5516         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
5519 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
5521         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
5522         class library tests.
5524         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
5525         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
5526         #396989.
5528 2008-06-04  Mark Probst  <mark.probst@gmail.com>
5530         * domain.c, domain-internals.h: The JIT infos are now freed by the
5531         JIT info table code.  They are freed immediately if there only a
5532         single JIT info table in circulation.  If there is more, the free
5533         is delayed via a queue.
5535         * threads.c, threads-types.h: New hazard pointer function for
5536         freeing all freeable delayed items in one sitting.
5538 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5540         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
5542         * reflection.c (typebuilder_setup_properties): Same.
5544         * reflection.c (typebuilder_setup_events): Same.
5546 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5548         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
5549         and use it for allocating memory.
5551         * reflection.c (mono_marshal_spec_from_builder): Same.
5553         * reflection.c: Change code to use new signatures.
5555         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
5557 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5559         * decimal.c (rescale128): Put back one line which was accidently commented
5560         out.
5561         
5562         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
5563         to cause crashes.
5565 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5567         * reflection.c (mono_reflection_generic_class_initialize): Name must
5568         be always malloc'ed so we can free it later on. Do this for field, property
5569         and event.
5571         * metadata.c (free_generic_class): Free field, property and event names.
5573 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5575         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
5576         instead of g_memdup.
5578         * reflection.c (typebuilder_setup_fields): Same.
5580 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5582         * decimal.c (rescale128): Optimize this function a bit more.
5584 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5586         * metadata.c (free_generic_class): Release some memory from
5587         SRE generic classes.
5589 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5591         * reflection.c (mono_image_get_generic_field_token): No reference
5592         to name is kept, free it.
5594         * reflection.c (mono_reflection_generic_class_initialize): Free
5595         more memory of the inflated field.
5597 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
5599         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
5600         code.
5602 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
5604         * reflection.c (mono_dynamic_image_free): Release memory used by
5605         MonoDynamicImage::array_methods elements.
5607         * reflection.c (assembly_add_win32_resources): Release memory after
5608         encoding.
5610 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
5612         * decimal.c (log2_32): Use an optimized version for this function too.
5613         
5614         * decimal.c (log2_64): Fix this on 32 bit machines.
5616 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
5618         * class.c (mono_dup_array_type): Implement allocation using a mempool.
5620         * class.c (mono_metadata_signature_deep_dup): Same.
5622         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
5623         a mempool.
5625         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
5627         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
5629         * metadata-internals.h: Added mono_metadata_signature_dup_full.
5631         * class-internals.h: Update signatures to take a MonoMemPool.
5633 2008-06-02  Dick Porter  <dick@ximian.com>
5635         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
5636         * icall-def.h: Add
5637         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
5638         FormatMessage API to get the error text.  Fixes bug 321827.
5640 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
5642         * decimal.c: Add some micro optimizations to make decimal operations faster.
5644 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5646         * reflection.c (method_encode_clauses): Take a mempool
5647         as parameter and use it to allocate the clause array.
5649         * reflection.c (mono_image_get_field_on_inst_token): Free
5650         the inflated type after encoding it.
5652         * reflection.c (mono_dynamic_image_free): Free each element
5653         of MonoDynamicImage::gen_params.
5655         * reflection.c (reflection_methodbuilder_to_mono_method):
5656         Allocate the generic param array from the mempool.
5657         Allocate signature params from the mempool.
5659         * reflection.c (mono_reflection_generic_class_initialize):
5660         Free inflated fields after been used.
5662 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
5664         * icall.c: Reapply the memory leak fixes as they no
5665         longer make mono crash.
5667 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
5669         * reflection.c (mono_type_get_object): Don't store the suplied
5670         MonoType with type_hash. A caller which pass a type that
5671         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
5672         might end with a pointer to freed memory.
5673         The solution is to use byval_arg or this_arg from the associated
5674         MonoClass of the supplied type.
5676 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
5678         * icall.c: Revert the rest of the last change as it breaks the build too.
5680 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5682         * icall.c: Revert a leak fix as it's breaking the build.
5684 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5686         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
5688 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5690         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
5692 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5694         * icall.c: Fix some memory leaks.
5696 2008-05-29  Dick Porter  <dick@ximian.com>
5698         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
5699         async socket operations from the pending list when a socket
5700         closes.  Leaving it until the threadpool services the event
5701         exposes a race condition when a socket descriptor is reused.
5702         Fixes bug 377589.
5704 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5706         * object.c: Fix negative index check for array alocation.
5708 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5710         * icall.c, marshal.c: Delegate wrappers should skip visibility.
5711         This check is performed by the verifier for IL created delegates
5712         and by Delegate::CreateDelegate for programatically created ones.
5713         Fixes #372406.
5715 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5717         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
5718         Fix code to use mono_array_size_t instead of int.
5720         Based on patch by Luis F. Ortiz.
5721         Contributed under X11 license.
5722         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5724 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5726         * icall.c: Added ves_icall_System_Array_GetLongLength and
5727         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
5728         arrays.
5730         * icall.h: Export both new functions.
5732         Based on patch by Luis F. Ortiz.
5733         Contributed under X11 license.
5734         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5736 2008-05-28  Martin Baulig  <martin@ximian.com>
5738         The debugger now requires exactly r103463.
5740         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
5741         This version is not supported by the debugger, wait for 72.
5743 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5745         * object.h: Changed array related functions to use
5746         mono_array_size_t instead of guint32. Forgot to commit this file.
5748         Patch by Luis F. Ortiz.
5749         Contributed under X11 license.
5750         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5753 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5755         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
5756         don't define it. Use the number literal instead.
5758 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5760         * icall.c: Changed array related functions to use
5761         mono_array_size_t instead of guint32.
5763         * icall.c (ves_icall_System_Array_GetLength): Check for length
5764         overflow under MONO_BIG_ARRAYS.
5766         Based on patch by Luis F. Ortiz.
5767         Contributed under X11 license.
5768         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5770 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5772         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
5774         Based on patch by Luis F. Ortiz.
5775         Contributed under X11 license.
5776         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5778 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5780         * object.c, object.h: Changed array related functions to use
5781         mono_array_size_t instead of guint32.
5783         Patch by Luis F. Ortiz.
5784         Contributed under X11 license.
5785         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5787 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5789         * object.h: Introduced mono_array_size_t typedef. This must be used
5790         in all places an array length is expected. This is 64bits wide if
5791         MONO_BIG_ARRAYS is enabled.
5793         Patch by Luis F. Ortiz.
5794         Contributed under X11 license.
5795         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
5797 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
5799         * security-manager.c class.c: Set the class exception info by calling
5800         mono_class_set_failure ().
5802         * class.c (mono_class_get_exception_data): New accessor function.
5803         (mono_class_set_failure): Store exception_data in the property hash.
5805         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
5806         the struct as a property.
5808         * loader.c (mono_get_method_full): Store the lookup result for method
5809         tokens in method_cache, the others in methodref_cache to decrease the memory
5810         usage of hash tables.
5812         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
5813         (mono_image_init): method_cache is lazy inited now.
5815         * metadata-internals.h (struct _MonoImage): Change method_cache to
5816         a MonoValueHashTable, add a separate methodref_cache.
5818 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
5820         * number-formatter.h: Fix tables to avoid arithemtic overflow in
5821           Double.ToString as exposed by Bug #383531.
5823 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
5825         * number-formatter.h: Make some tables static.
5827         * class.c (mono_method_set_generic_container): New accessor function.
5828         (mono_method_get_generic_container): Ditto.
5830         * class-internals.h (struct _MonoMethod): Remove rarely used 
5831         'generic_container' field, store it in the property hash instead. Add 
5832         'is_generic' boolean field instead.
5834         * image.c (mono_image_init): Initialize property_hash.
5835         (mono_image_close): Destroy property_hash.
5837         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
5838         hold rarely used fields of runtime structures belonging to this image.
5840         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
5841         to get/set method->generic_container.
5843         * loader.c (mono_get_method_from_token): Avoid loading the method header for
5844         generic methods.
5846 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
5848         * class.c (mono_class_inflate_generic_method_full): Don't increase
5849         mono_stats.inflated_method_count for methods found in the cache.
5851         * threads.c (mono_thread_request_interruption): Add a comment about 
5852         QueueUserAPC ().
5854 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
5856         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
5857         interface_offsets_packed table.
5858         
5859         * class.c (mono_class_init): Remove some dead code.
5861         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
5862         mono_class_setup_vtable () when CAS is active to detect security problems.
5864 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
5866         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
5868         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
5869         parameters as it's irrelevant for delegate checking.
5871 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
5873         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
5875         * class.c (mono_class_init): Control the creation of a generic vtable using
5876         a global which is true by default, but set to false by the runtime startup code.
5877         
5878         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
5879         Disabled for now since it breaks the embedding API.
5880         Move the setup of class->methods for arrays to mono_class_setup_methods ().
5881         (mono_class_setup_methods): Add a memory barrier.
5883         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
5884         when mono_class_init () doesn't compute the generic vtable.
5885         
5886 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
5887         * profiler.c: Added mono_profiler_install_statistical_call_chain,
5888         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
5889         to support call chains (backtrace) in the stat profiler.
5890         * profiler.c, profiler-private.h: Likewise.
5892 2008-05-22  Mark Probst  <mark.probst@gmail.com>
5894         * generic-sharing.c: Init generic class when a method of it is
5895         requested via a runtime generic context.
5897 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
5899         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
5901         * reflection.c (mono_type_get_object): Add a FIXME.
5903         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
5905         * class.c (mono_class_get_method_by_index): New helper function, returning an
5906         entry in the class->methods array.
5908 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
5910         * class.c (mono_class_init): Only do the array optimization for szarrays. 
5911         Avoid creating a generic vtable for generic instances as well.
5912         (mono_class_get_method_from_name_flags): Don't search in the metadata for
5913         generic instances.
5915 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
5917         * loader.c (mono_get_method_constrained): Inflate the signature
5918         with class context. Fix #325283.
5920 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
5922         * object.c (mono_class_create_runtime_vtable): Add a comment.
5924         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
5925         where needed.
5926         (setup_interface_offsets): Handle the case when this is called twice for arrays.
5927         (mono_class_setup_vtable_general): Add an assert.
5928         (mono_class_init): Avoid creating a generic vtable for arrays.
5930         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
5931         here, let mono_class_init () do that.
5933         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
5934         interfaces in mscorlib.
5936         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
5937         interfaces. Add some comments.
5938         (mono_class_init): Call mono_class_setup_methods () here since it is no
5939         longer called by mono_class_setup_vtable ().
5941         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
5942         not set in class->vtable.
5943         (mono_class_create_runtime_vtable): Reenable the disabled code.
5945         * object.c (mono_class_create_runtime_vtable): Disable the last change for
5946         now as it causes some test failures.
5948         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
5949         if using the vtable trampoline. Also remove some strange code which put the
5950         generic methods themselves into the vtable slots. Remove the AOT init_vtable
5951         stuff as it is no longer needed.
5953 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5955         * pedump.c: Give make --verify all option check code as well.
5956         Using --verify code won't check for metadata now.
5958 2008-05-19  Martin Baulig  <martin@ximian.com>
5960         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
5962         * mono-debug.c
5963         (_mono_debug_using_mono_debugger): New global variable; it's set
5964         directly by the debugger, so mono_debug_using_mono_debugger() also
5965         works after attaching.
5967 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5969         * object.c (mono_class_create_runtime_vtable): Use memory barriers
5970         as we do double checked locking on MonoClass::runtime_info and
5971         MonoClassRuntimeInfo::domain_vtables.
5973 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
5975         * debug-helpers.c (print_field_value): Fix a warning.
5977 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
5979         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
5980         set in the AOT case.
5982 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
5984         * class.c (mono_class_setup_vtable_general): Use memory barriers
5985         as we do double checked locking on MonoClass::vtable.
5987 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
5989         * reflection.c (resolve_object): Inflate only if the generic context
5990         is not null. Fixes #389886.
5992 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
5994         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
5995         instead of g_free.
5997         Code is contributed under MIT/X11 license.
5999 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
6001         * class.c: Revert unrelated change.
6003 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
6005         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
6006         a generic instantiation, use mono_class_from_mono_type instead of playing
6007         with MonoType directly.
6009 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
6011         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
6012         checks must ignore generic instantiations, so mono_class_has_parent is not
6013         suitable. Fixes #390128.
6015 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
6017         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
6018         it to avoid registering tokens during metadata generation. Fixes #390023.
6020 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
6022         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
6023         consistent.
6025         Contributed under MIT/X11 license.
6027 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
6029         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
6030         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
6031         to fixup the EXE image.
6032         (mono_cleanup): Use mono_close_exe_image.
6033         (mono_close_exe_image): New function.
6034         * image.c: Include "marshal.h".
6035         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
6036         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
6037         counting when the image is loaded outside of mono_image_open_full. Set status
6038         based on GetLastError.
6039         * coree.c: Include required headers. Add init_from_coree.
6040         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
6041         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
6042         (_CorExeMain): Set init_from_coree.
6043         (CorExitProcess): Only call ExitProcess for now.
6044         (CorBindToRuntimeEx): New stub implementation.
6045         (CorBindToRuntime): New function.
6046         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
6047         (MonoFixupExe): ILONLY executables require no fixups.
6048         (mono_set_act_ctx): New function to set activation context.
6049         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
6050         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
6051         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
6052         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
6053         as MONO_INTERNAL.
6054         * domain-internals.h: Add mono_close_exe_image.
6056         Contributed under MIT/X11 license.
6058 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
6060         * metadata.c (mono_metadata_compute_size): Correctly calculate field
6061         size for generic param and event tables. Fixes #388977.
6063 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
6065         * loader.c (mono_method_signature): Use memory barriers because of the double
6066         checked locking pattern.
6068         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
6069         aborting or aborted as well. Fixes #376391.
6070         
6071         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
6072         existing runtime state in the Suspend handler during shutdown.
6074 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
6076         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
6078         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
6079         which are starting up or shutting down.
6081         * threads.c (mono_threads_set_shutting_down): Don't return a value since
6082         this function never returns if the runtime is already shutting down.
6084         * icall.c (ves_icall_System_Environment_Exit): Update after 
6085         mono_threads_set_shutting_down () signature change.
6086         
6087 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
6089         * class.c: Added can_access_instantiation to verify if the instantiation
6090         is visible. Fix access check for nested types as they returned TRUE
6091         before doing type and generic instantiation visibility checks.
6093 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
6095         * reflection.c (mono_reflection_create_generic_class): The created type
6096         must have a different container from its TypeBuilder. Otherwise they
6097         will end sharing generic arguments, which is wrong.
6099         Due to the sharing, making a generic instance of the created type using
6100         the TypeBuider generic arguments resulted in the generic type definition
6101         been returned, which is wrong as well.
6103         As a bonus the code was leaking the type_params array. This memory should
6104         be allocated from the image mempool.
6106         This fixes bug #354047.
6108 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
6110         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
6111         to here         as they are now used in assembly.c new code.
6112         Added a skipverification flag to MonoAssembly.
6113         New internal function mono_assembly_has_skip_verification.
6115         * assembly.c: New function mono_assembly_has_skip_verification. It checks
6116         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
6117         part of #387274.
6119 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
6121         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
6122         needed. Fixes #387034.
6124         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
6126 2008-05-06  Miguel de Icaza  <miguel@novell.com>
6128         * assembly.c (mono_assembly_load_reference): Prevent crash while
6129         disassembling Silverlight 2.0 executables while we still do not
6130         have GACed libraries.
6132 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
6134         * reflection.c: Special case generic type definitions as well. Fixes #383444.
6136 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
6138         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
6139         of the dynamic case. Fixes #387404.
6141 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6143         *verify.c (mono_verifier_is_class_full_trust): If under
6144         verify_all and the verifier mode was not set, only
6145         gac and corlib types are fulltrust. This makes --verify-all
6146         usable to detect unverifiable code, which is the expected
6147         use case.
6149 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6151         * verify.h: Ops, commited the header with debug
6152         enabled.
6154 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6156         * verify.c (merge_stack): Use the new value on unverifiable
6157         stack merges.
6159         * verify.c (verify_type_compatibility_full): Comparison
6160         of nullable types can't use mono_class_is_assignable_from.
6162         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
6163         that makes all verification errors be reported.
6165         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
6166         mono_method_verify.
6168 2008-05-05  Robert Jordan  <robertj@gmx.net>
6170         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
6171         support for value types. See #386415.
6173         * object.c: comments.
6175         Code is contributed under MIT/X11 license.
6177 2008-05-05  Martin Baulig  <martin@ximian.com>
6179         * debug-mono-symfile.h
6180         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
6181         for old pre-terrania symbol files.
6183 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6185         * mono-config.c: Add ppc64 architecture.
6187         Code is contributed under MIT/X11 license.
6189 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
6191         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
6192           PPC64 uses function descriptors as well.
6194         Code is contributed under MIT/X11 license.
6196 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
6198         * object.c (compute_class_bitmap): Ignore literal static fields.
6200         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
6201         var has an invalid format.
6202         (describe_ptr): Add some sanity checks for the vtable.
6203         (add_nursery_frag): Clear unused nursery fragments.
6204         (major_collection): Clear all remaining nursery fragments.
6206 2008-05-03  Robert Jordan  <robertj@gmx.net>
6208         * image.c, metadata-internals.h: add thunk_invoke_cache.
6210         * marshal.c, marshal.h: implement
6211         mono_marshal_get_thunk_invoke_wrapper ().
6213         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
6215         Code is contributed under MIT/X11 license.
6217 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
6219         * verify.c (do_leave): Empty the stack.
6221 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
6223         * class.c (mono_class_is_assignable_from): Variance
6224         doesn't work between reference and value types. For example,
6225         given type C<T+>, C<int32> is not assignable to C<object>.
6226         Break the argument checking loop on first error. 
6228 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
6230         * icall.c : base64_to_byte_array() needs some more strict
6231           check for sequence of '=' characters. Patch by Santa
6232           Marta (http://deee.g.hatena.ne.jp/santamarta).
6234           Contributed under MIT/X11 license.
6235           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
6237 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
6239         * domain.c: Disable LoadLibrary support to fix Win32 build.
6241         Code is contributed under MIT/X11 license.
6243 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
6245         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
6246         to help with cache behaviour.
6248 2008-05-01  Miguel de Icaza  <miguel@novell.com>
6250         * appdomain.c (mono_domain_from_appdomain): Add new accessor
6251         method. 
6253 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
6255         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
6257 2008-05-01  Dick Porter  <dick@ximian.com>
6259         * process.c (process_get_fileversion): Only pass 16 bits of
6260         language ID to VerLanguageName.  Fixes bug 381204.
6262 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6264         * verify.c (mono_method_verify): Fix the comparison
6265         operator for code bounds check.
6267 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6269         * verify.c (mono_method_verify): Check the bounds of
6270         all access of the code array.
6272 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
6274         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
6276 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
6278         * image.c (mono_image_strong_name_position): Fix return value when the rva is
6279         not valid.
6281 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
6283         * loader.c (mono_get_method_from_token, mono_method_signature): Add
6284         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
6285         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
6286         fixup main EXE images when using mono.exe for mixed-mode assembly support.
6287         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
6288         mono_runtime_load.
6289         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
6290         runtime initialization from metadata.
6291         * assembly.c: Remove obsolete ceGetModuleFileNameA.
6292         (mono_set_rootdir): Use mono_get_module_file_name.
6293         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
6294         handles.
6295         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
6296         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
6297         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
6298         MonoCLIImageInfo. Add support for module handles.
6299         (load_cli_header): Update mono_cli_rva_image_map signature.
6300         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
6301         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
6302         (mono_image_rva_map): Add support for module handles.
6303         (mono_image_ensure_section_idx): Add support for module handles.
6304         (mono_image_close): Add support for module handles.
6305         (do_load_header): Add support for module handles.
6306         (mono_image_open_from_module_handle): New function for internal use.
6307         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
6308         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
6309         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
6310         handles.
6311         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
6312         * image.h: Add mono_image_fixup_vtable.
6313         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
6314         support.
6315         * coree.h: New file.
6316         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
6317         unsupported native code.
6318         (mono_marshal_set_callconv_from_modopt): New function splitted from
6319         mono_marshal_get_managed_wrapper.
6320         (mono_marshal_get_managed_wrapper): Use
6321         mono_marshal_set_callconv_from_modopt.
6322         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
6323         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
6324         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
6325         that results in a deadlock when the runtime is loaded in _CorDllMain.
6326         * Makefile.am: Add coree.c and coree.h.
6328         Contributed under MIT/X11 license.
6330 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6332         * generic-sharing.c: Search for type arguments in array element
6333         types as well.
6335 2008-04-28  Mark Probst  <mark.probst@gmail.com>
6337         * class-internals.h, generic-sharing.c: New, small runtime generic context.
6339         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
6341         * object.c: Don't setup the RGCTX when the vtable is created,
6342         because we're setting it up lazily now.
6344 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
6346         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
6347         64 bit support.
6349 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6351         * verify.c (verify_class_for_overlapping_reference_fields): 
6352         If class is under fulltrust allow reference types to overllap
6353         if they have the same RVA.
6355 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6357         * pedump.c: Added new flag valid-only, that makes the verifier
6358         behaves just like --security=validil. It won't fail type load
6359         due to unverifiable restrictions.
6361 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6363         * class-internals.h (struct MonoMethod): Added a verification_success
6364         field to cache verifier executions. Reduced MonoMethod:slot size by
6365         one bit.
6367 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
6369         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
6370         instead of a 'vt' argument to save an indirection and to allow these to be used
6371         for valuetypes.
6372         (scan_vtype): New helper function to scan an area using a gc descriptor.
6373         (mono_gc_wbarrier_value_copy): Implement this.
6374         (handle_remset): Add support for REMSET_VTYPE.
6375         (find_in_remset_loc): Ditto.
6376         (mono_gc_base_init): Allow some debugging options to be controlled through the
6377         use of the MONO_GC_DEBUG env variable.
6378         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
6379         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
6381 2008-04-23  Martin Baulig  <martin@ximian.com>
6383         * domain.c (mono_domain_create): Move the call to
6384         mono_debug_domain_create() down, after allocating the domain id.
6386 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6388         verify.c (verify_class_for_overlapping_reference_fields): Skip
6389         static fields while verifying for overlapping fields as they
6390         don't matter at all.
6392 2008-04-23  Marek Habersack  <mhabersack@novell.com>
6394         * domain-internals.h: added a declaration of
6395         mono_make_shadow_copy.
6397         * assembly.c (mono_assembly_open_full): shadow copying of
6398         assemblies moved to here, so that all the assemblies within the
6399         application domain's private binary directories can be
6400         processed. Fixes bug #380546
6402         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
6403         mono_make_shadow_copy and made non-static. The decision whether
6404         to shadow-copy an assembly is made based on its location - it's
6405         copied if it's in one of the private application domain binary
6406         directories and its different to the target file in the shadow
6407         directory. Fixes bug #380546
6409 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
6411         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
6413         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
6414         types.
6416         * reflection.c (mono_image_create_token): Handle 
6417         Method/ConstructorOnTypeBuilderInst.
6418         (resolve_object): Ditto.
6419         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
6420         so it can be called from resolve_object. Also handle the case when the inflated
6421         class already has its methods setup.
6423 2008-04-21  Martin Baulig  <martin@ximian.com>
6425         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
6427 2008-04-20  Geoff Norton  <gnorton@novell.com>
6429         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
6430         pointer dereference.
6432 2008-04-15  Marek Habersack  <mhabersack@novell.com>
6434         * appdomain.c (try_load_from): if IOMAP is in effect, call the
6435         portability API to look up the assembly file. Fixes behavior in
6436         situations when the application has a bin/ directory, but the
6437         assembly search patch refers to Bin/ (and thus the requested file
6438         name is Bin/SomeLibrary.dll). Fixes bug #379888
6440 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6442         verify.c (mono_type_is_generic_argument): Extracted this check
6443         from a dozen places to here.
6445         verify.c: Fixed all issues related to boxing generic arguments
6446         and their constraints.
6448 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6450         verify.c (mono_class_interface_implements_interface): Fix win32 build.
6452 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
6454         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
6455         isn't finished yet. Fixes #363447.
6457 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
6459         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
6460         Fixes #346419.
6462 2008-04-13  Jb Evain  <jbevain@novell.com>
6464         * domain.c: update the 2.1 profile versions.
6465         Merged from the Moonlight 2 branch.
6467 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
6469         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
6470         mscorlibs for the non-refonly case as well.
6472         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
6473         in mono_assembly_load_from_full (). Fixes #378924.
6475 2008-04-11  Geoff Norton  <gnorton@novell.com>
6477         * icall.c: The global extern environ doesn't exist on Mac.  We
6478         need to call NSGetEnviron instead.
6480 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6482         verify.c: Add generic method constraint verification.
6484 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6486         class.c (mono_class_inflate_generic_method_full): Add a long
6487         explanation to the is_mb_open hack. Remove the FIXME.
6489 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6491         * verify.c (mono_method_verify): Mark all unknown opcodes
6492         as invalid. Mark jmp as unverifiable.
6494 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6496         * verify.c: Add code to do type constraint verification on class instances.
6498         * verify.c (mono_verifier_verify_class): Use the type constraint 
6499         verification code.
6501 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
6503         * class.c (mono_class_get_field_default_value): Don't pass cindex
6504         as hint to mono_metadata_get_constant_index. The local is not initialized
6505         and should contain garbage most of the time. This could only work
6506         with a lot of luck.
6508 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6510         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
6512 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6514         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
6516         * class.c (mono_class_from_generic_parameter): Save the token of the
6517         generic param in MonoClass::sizes.generic_param_token.
6519         * reflection.c (mono_custom_attrs_from_class): If the class type is
6520         VAR or MVAR retrieve the attributes of the generic param.
6522 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6524         * class.c (mono_class_init): Do class verification if the verifier
6525         is enabled.
6527 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6529         * verify-internal.h: Added mono_verifier_verify_class.
6531         * verify.c: Added mono_verifier_verify_class. It checks for
6532         classes with explicit layout that have overlapping reference fields.
6534         * pedump.c: Init the verifier state prior to verification. Fixed
6535         command line arguments.
6537 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6539         * Makefile.am: Added verify-internals.h, hopefully fix the build.
6541 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
6543         * verify-internals.h: Fix a warning.
6545 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6547         * verify-internals.h: New header with the verifier configuration
6548         extracted from mini.c.
6550         * verify.c: Implemented the new functions exported by verify-internals.h.
6552 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6554         * verify.c: Add proper verification of ckfinite.
6556 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6558         * verify.c (do_conversion): Improved error message to something
6559         more meanfull.
6561         * verify.c (check_is_valid_type_for_field_ops): Fix to work
6562         with primitive types.
6564 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6566         * verify.c: Added tail prefix checking. Marked icall
6567         as unverifible.
6569 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
6571         * verify.c: Fix the detection of branches to the middle
6572         of an instruction.
6574 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6576         * verify.c: Implemented verification of volatile. and
6577         unaligned. prefix. Check if a type is valid after retrieving it.
6579 2008-04-01  Dick Porter  <dick@ximian.com>
6581         * process.c (process_get_fileversion): If there's no string block,
6582         set the file language to en_US.  Fixes the other new part of bug
6583         374600.
6585 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
6587         * class.c: New functions mono_method_can_access_field_full and
6588         mono_method_can_access_method_full. They perform type visibility
6589         and type site check.
6591         * class-internal.h: Added exported functions.
6593         * verify.c: Use new functions to implement proper visibility checks.
6595 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
6597         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
6599 2008-03-28  Dick Porter  <dick@ximian.com>
6601         * process.c (process_get_fileversion): Use the first language ID
6602         we see, rather than insisting on an invariant language.  Fixes bug
6603         374600.
6605 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
6607         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
6608         the streams to fix reading of invalid memory later.
6610         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
6611         to ease debugging.
6613 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
6615         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
6616         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
6618 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
6619         * threads.h: Added MonoThreadManageCallback type and
6620         mono_thread_set_manage_callback prototype
6621         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
6622         (used to store the mono_thread_manage callback).
6623         * threads.c: Added mono_thread_set_manage_callback, and handle
6624         "MonoThread->manage_callback" in build_wait_tids.
6626 2008-03-26  Dick Porter  <dick@ximian.com>
6628         * process.c (process_get_fileversion): Set FileVersionInfo strings
6629         to Empty when the resource doesn't have the particular info.
6630         Fixes bug 355717.
6632 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
6634         * verify.c (mono_method_verify): Proper prefix validation.
6636 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
6638         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
6639         itself in a separate argument instead of throwing them. Fixes #373448.
6641         * appdomain.c: Bump corlib version.
6643 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6645         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
6647 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
6649         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
6650         version macros.
6652 2008-03-20  Mark Probst  <mark.probst@gmail.com>
6654         * generic-sharing.c, class-internals.h: Code for putting
6655         reflection types into the runtime generic context.
6657 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6659         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
6660         Fixes #340662. 
6663 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
6665         * verify.c (VerifyContext): Added instruction prefix data to the struct.
6667         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
6669         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
6671         * verify.c (do_cast): Let the result value keep the boxed status.
6673         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
6675 2008-03-17  Jb Evain  <jbevain@novell.com>
6677         * reflection.c: when running on a 2.0 runtime, emit
6678         unconditionally the #~ header version as 2.0, and the
6679         CLI header version as 2.5, for symmetry's sake with csc.
6681 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
6683         * class.c: Remove the unused cache_interface_offsets stuff.
6685         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
6686         profiler.c: Fix warnings.
6688 2008-03-16  Mark Probst  <mark.probst@gmail.com>
6690         * generic-sharing.c, class-internals.h: Support for putting
6691         methods into the runtime generic context.
6693 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
6695         * class.c (mono_class_setup_fields): Ignore calls made to this function for
6696         classes which are generic instances of not-yet finished typebuilders. Fixes
6697         #351172.
6699         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
6701 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
6703         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
6705         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
6706         field, replace it with a hash table in MonoDynamicImage.
6708         * reflection.c (inflate_mono_method): Access the generic definition object from
6709         image->generic_def_objects instead of imethod->reflection_info.
6711         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
6713         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
6714         
6715         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
6716         function in reflection.c so it is easier to keep in sync with the dynamic image
6717         creation code.
6719         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
6720         mono_image_close ().
6722 2008-03-15  Mark Probst  <mark.probst@gmail.com>
6724         * class.c (mono_class_generic_sharing_enabled): Disable generic
6725         sharing for all architectures except AMD64 and x86 to fix build.
6727 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
6729         * verify.c: Use the generic definition MonoGenericContext when available.
6730         Remove code for checking generics instance compatibility in favor of
6731         mono_class_is_assignable_from.
6733 2008-03-14  Mark Probst  <mark.probst@gmail.com>
6735         * marshal.c, marshal.h, metadata-internals.h, image.c,
6736         wrapper-types.h: New wrapper for invoking a shared static method
6737         without having to pass the runtime generic context argument.
6739 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
6741         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
6743 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
6745         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
6746         
6747         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
6748         create a token from a FieldOnTypeBuilderInst.
6749         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
6750         (resolve_object): Ditto.
6752         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
6753         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
6755 2008-03-14  Martin Baulig  <martin@ximian.com>
6757         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
6759         * debug-mono-symfile.h
6760         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
6761         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
6763 2008-03-10  Martin Baulig  <martin@ximian.com>
6765         * debug-mono-symfile.h
6766         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
6767         `lexical_block_table_offset'.
6768         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
6769         `lexical_blocks'.
6770         (MonoSymbolFile): Added `version'.
6772         * mono-debug.h
6773         (MonoDebugLexicalBlockEntry): Removed.
6774         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
6775         `lexical_blocks'.
6777         * mono-debug.c (mono_debug_add_method): Don't compute lexical
6778         blocks here; the debugger now does this internally.
6780 2008-02-27  Martin Baulig  <martin@ximian.com>
6782         * object.c (mono_runtime_exec_main): Call
6783         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
6784         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
6786 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6788         * verify.c (verify_type_compatibility_full): Allow native int to be converted
6789         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
6791 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6793         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
6794         ldftn with a virtual method.
6796 2008-03-13  Geoff Norton  <gnorton@novell.com>
6798         * decimal.c:  Only include memory.h if the platform has it.
6800 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
6802         * assembly.c, class.c, metadata-internals.h: make sure public key
6803         tokesns are compared in a case-insensitive way. Also, all
6804         the lookups in the GAC use a lowercase public key token
6805         (gaacutil already does the lowercasing on install). Fixes
6806         bug #369541.
6808 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
6810         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
6811         and return value.
6813 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
6815         * image.c: when someone loads a mscorlib from a file, return the
6816         currently loaded mscorlib (fixes bug #369253).
6818 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
6820         * class.c: handle types with no parents by forcing them to have
6821         System.Object as a parent and marking them as broken (this currently
6822         allows the first part of bug #369173 to work as well, likely because
6823         we don't check for typeload exceptions everywhere yet).
6825 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
6827         * class.c: more complete check that types belong to corlib
6828         (fixes second part of bug #369173).
6830 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
6832         * generic-sharing.c:  Including glib.h for the MSVC builds to define
6833           "inline" to "__inline" before including mono-membar.h.
6834           
6835         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
6836           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
6837           MSVC builds.
6839         Contributed under MIT/X11 license.
6841 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
6843         * verify.c (do_invoke_method): Remove return type validation.
6845         * verify.c (do_ret): Do return type validation at return site instead of
6846         call site.
6848 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
6850         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
6852         * verify.c: Some todos cleaned and improved a few error messages.
6854 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
6856         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
6858 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
6860         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
6861         system types correctly.
6863         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
6864         function.
6866 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6868         * assembly.c (build_assembly_name): Fix a warning.
6870 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6872         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
6873         the called function takes an object type argument. Fixes storing or
6874         valuetypes across remoting as well as reducing memory usage.
6875         * image.c, metadata-internals.h: remove now unused ldfld_remote and
6876         stfld_remote wrapper caches.
6878 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
6880         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
6881         is not found.
6883         * reflection.c (mono_image_register_token): New helper function to save
6884         a token->object mapping.        
6886         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
6887         managed code.
6889         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
6890         one dimension arrays. Fixes #367670.
6891         (mono_reflection_get_type_internal): Ditto.
6893 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6895         * marshal.c: mono_load_remote_field_new() always returns object.
6896         so use the proper signature (fixes bug #366445).
6898 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6899         
6900         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
6901         add an 'inline_failure' flag instead.
6903 2008-03-04  Mark Probst  <mark.probst@gmail.com>
6905         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
6906         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
6907         contains the location of "this", used for exception handling.
6909 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
6911         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
6912         their size on all platforms for perf reasons.
6914 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6916         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
6917         object-internal.h
6919         * object-internal.h: Same.
6921 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6923         * reflection.h: Fix the build I just broke.
6925 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6927         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
6928         Test if a token is valid, this remove explicit usage of 
6929         MonoDynamicImage::tokens from the verifier code.
6931         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
6933         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
6934         instead of direct access to MonoDynamicImage::tokens.
6936 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6938         * verify.c (token_bounds_check): Fix the build I just broke.
6940 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6942         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
6944         * verify.c (verifier_load_method): Fixed the errors message.
6946         * verify.c (mono_method_verify): Fixed a debug message.
6948 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
6950         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
6951         mono-perfcounters.h, class-internals.h: support for predefined
6952         writable counters, query of categories and counters, bugfixes.
6954 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
6956         * verify.c (do_refanytype): Verify the refanytype opcode.
6958         * verify.c (mono_method_verify): Use do_refanytype.
6960 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
6962         * verify.c (do_mkrefany): Verify the mkrefany opcode.
6964         * verify.c (mono_method_verify): Use do_mkrefany.
6966 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
6968         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
6969         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
6970         implementation.
6972 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
6974         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
6975         the type load exception.
6977 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6979         * verify.c: Added a few FIXME for method signatures
6981         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
6982         of mono_method_get_signature and get vararg call working. Removed unused
6983         checks for return value.
6985         * verify.c (do_refanyval): Verify the refanyval opcode.
6987         * verify.c (mono_method_verify): Implemented verification of arglist and
6988         use do_refanyval.
6990 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
6992         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
6993         vtypes to marshal.c.
6995         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
6996         it works for AOT as well.
6998 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
7000         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
7001         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
7002         the system time is adjusted.
7004 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
7006         * icall.c, icall-def.h: use the new time functions (fixes the
7007         non-monotonic behaviour of TickCount).
7009 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
7011         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
7012         it breaks the build.
7013         
7014         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
7015         cattr is not finished yet.
7017 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
7019         * verify.c: Proper token validation for field, method and type.
7021 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
7023         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
7025         * loader.c (method_from_memberref): Generate type load error instead of method missing
7026         if the type is not found.
7028 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
7030         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
7031         some of the conversions caused the generation of a marshal directive exception.
7033 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
7035         verify.c: Report which exception should be thrown by the JIT.
7036         Added a lot of FIXME notes.
7038 2008-02-22  Mark Probst  <mark.probst@gmail.com>
7040         * generic-sharing.c: Runtime generic context slots are not
7041         instantiated on init anymore.  Instead, provide function to do the
7042         instantiating on demand.
7044         * class-internals.h: Added vtable to runtime generic context.
7045         Macros for encoding direct and indirect slot offsets in one
7046         guint32.
7048 2008-02-21  Mark Probst  <mark.probst@gmail.com>
7050         * object.c, generic-sharing.c: Moved some generic sharing code
7051         from object.c to generic-sharing.c.
7053         * generic-sharing.c: Added support for extensible runtime generic
7054         context.
7056         * metadata-internals.h: Two new hash tables in MonoImage for
7057         extensible runtime generic context support.
7059         * domain.c: Unregister generic vtables upon domain unloading.
7061         * image.c: Destroy new hash tables upon image unloading.
7063         * metadata.c: Unregister generic subclasses upon image unloading.
7065         * class-internals.h: New data structure for runtime generic
7066         context template.  New fields in the runtime generic context for
7067         extensible part.
7069         * Makefile.am: Added generic-sharing.c.
7071 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
7073         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
7074         there is a pending loader exception, raise it.
7076         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
7077         same.
7079         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
7080         same.
7082         Fixes #363450.
7084 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
7086         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
7088         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
7089         
7090         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
7091         ref-only requests for compatibility with MS.
7093 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
7095         * reflection.c (mono_custom_attrs_from_method): Don't silently
7096         return an empty list for generic method instances.
7097         (mono_custom_attrs_from_param): Likewise.
7099 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
7100             Raja R Harinath  <harinath@hurrynot.org>
7102         Fix #354757
7103         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
7104         * class.c (mono_class_inflate_generic_method_full): Initialize it
7105         when a fully-open method is instantiated.
7106         * metadata.c (inflated_method_equal, inflated_method_hash): Update
7107         to new field.
7108         * reflection.c (inflate_mono_method): Don't create a temporary context.
7110 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
7112         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
7113         Compute correct value, to prepare for imethod->reflection_info going away.
7115 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
7117         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
7119 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7121         * verify.c: Implement skip visibility flag.
7123 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7125         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
7126         which contains an extra field to tell the kind of exception that should be thrown.
7128         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
7130 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
7132         * loader.c (mono_method_get_param_names): Initialize 'klass' after
7133         'method' is updated.
7135 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
7137         * class.c (mono_class_layout_fields): Set class->min_align for classes using
7138         explicit layout as well. Fixes #360375.
7140 2008-02-11  Geoff Norton  <gnorton@novell.com>
7142         * loader.c: Guard and dereference against inflated generic methods
7144 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
7146         * class.c: Include Retargetable spec in assembly name.
7147         * assembly.c: Always include PublicKeyToken spec in assembly name
7148         (with value "null" if assembly is not signed), and include
7149         Retargetable spec.
7150         * icall-def.h: Added icall for Assembly.get_fullname.
7151         * icall.c: Added icall returning the fullname of an assembly.
7153 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
7155         * class.c (mono_class_setup_vtable_general): Add a missing call to
7156         mono_class_setup_methods () which is needed in the AOT case.
7158 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
7160         * verify.c (mono_type_get_stack_name): Added. Return the name for the
7161         stack type of the given MonoType.
7163         * verify.c (verify_type_compatibility_full): Handle the void type.
7165         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
7166         way stack merging works.
7168         * verify.c (store_local): Improved verification message.
7170         * verify.c (do_branch_op): If the merging is invalid, the method
7171         is unverifiable and not invalid. Improved error message.
7173         * verify.c (merge_stacks): Properly merge a boxed valuetype and
7174         a reference type diferent than System.Object. Improved error
7175         message.
7177 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
7179         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
7181         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
7182         type of an enum even if the argument is byref.
7184         * verify.c: Replace all explicit uses of enumtype and enum_basetype
7185         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
7187         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
7189         *verify.c (verify_type_compatibility_full): Make enum types
7190         compatible with their base types.
7192         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
7193         types are compatible for the special case of a boxed valuetype and
7194         System.Object.
7196         * verify.c (verify_stack_type_compatibility): The function
7197         is_compatible_boxed_valuetype was extracted from here.
7199         * verify.c (push_arg): Only set ctx->has_this_store if the method
7200         is not static.
7202         * verify.c (do_ldelem): Fixed a typo in an error message and added
7203         strict check for mixing int32 and native int as the array type
7204         and ldelem type.
7206         * verify.c (merge_stacks): Consider boxed valuetypes in the
7207         compatibility checks.
7209 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
7210         * profiler.h: (MonoGCEvent): Added start-stop the world events.
7212 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
7213         *class.c: use_new_interface_vtable_code: renamed the env var to have
7214         a "MONO_" prefix, and fix the logic to enable it by default.
7216 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
7217         *class.c:
7218         mono_class_setup_vtable_general: rewrote the way in which interface
7219         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
7220         makes the code more maintainable.
7221         For now the old code is still there, and can be activated setting
7222         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
7224 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
7226         * verify.c: guarded some debug functions around and #ifdef.
7228         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
7230 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
7232         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
7233         changes for now since they seem to break too many things.
7235 2008-02-05  Mark Probst  <mark.probst@gmail.com>
7237         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
7238         mono_marshal_find_nonzero_bit_offset): Added macro and function
7239         for finding the byte- and bit-offset of a bitfield within a
7240         struct.
7242 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
7244         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
7245         (mono_marshal_get_struct_to_ptr): Ditto.
7247         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
7248         cctor_signature.
7250 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
7252         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
7253         between methods for non-corlib types.
7255 2008-02-02  Geoff Norton  <gnorton@novell.com>
7257         * loader.c (mono_method_get_param_names): Populate the parameter name for 
7258         generic parameters as well. (Fixes #342536)
7260 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
7262         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
7264         * verify.c (do_invoke_method): Fix for calling with byref structs.
7266         * verify.c (do_cast): push a boxed value type based on the type token and not
7267         the type of stack.
7269 2008-01-31  William Holmes  <billholmes54@gmail.com>
7271         * process.c (process_module_string_read): Check the size returned form 
7272           VerQueryValue to avoid out of memory exception. 
7274 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
7276         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
7277         Handle properly modules which are not in the moduleref table. Fixes
7278         #356938.
7280 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
7282         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
7283         the dynamic case which is now in managed code.
7284         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
7286         * marshal.c (mono_string_to_bstr): Fix a warning.
7287         (init_com_provider_ms): Ditto.
7289         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
7291         * exception.c (mono_get_exception_out_of_memory): New helper function.
7293 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
7295         * marshal.c: Add support for BSTR marshalling
7296         using other COM systems.
7298         Code is contributed under MIT/X11 license.
7300 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
7302         * object.c (mono_runtime_invoke_array): reverted previous
7303         commit as it breaks the build.
7305 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
7307         * object.c (mono_runtime_invoke_array): Verify arguments for
7308         invalid types. Fixes #348522.
7310 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
7312         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
7313         non-final virtual calls using call. 
7315         * verify.c (do_invoke): fixed some TODOs.
7317         * verify.c (push_arg): set has_this_store for "ldarga 0".
7319 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
7321         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
7322         which belong to an inflated class. Fixes #356531.
7324 2008-01-26  Robert Jordan  <robertj@gmx.net>
7326         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
7327         which resort to FindFirstFile when a certain error condition
7328         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
7329         Code is contributed under MIT/X11 license.
7331 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
7333         * marshal.c (emit_marshal_string): Fix out string marshalling
7334         to use specified encoding. Fixes #323900.
7336         Code is contributed under MIT/X11 license.
7338 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
7340         * class.c (mono_class_inflate_generic_method_full): Don't modify
7341         iresult->context after cache check.
7343 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
7345         * class.c (mono_class_inflate_generic_method_full): Change the
7346         struct assignments to memcpy for better visibility and add some comments.
7348 2008-01-23  Dick Porter  <dick@ximian.com>
7350         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
7351         procedure, and make it work on windows.
7353 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
7355         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
7356         a MonoReflectionTypeBuilder since it is always of that type.
7358         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
7360         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
7362         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
7363         
7364         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
7366         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
7368         * reflection.c (mono_reflection_create_runtime_class): Remove already created
7369         instantiations from the type cache.
7371 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7373         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
7375         * verify.c (do_unbox_value): push a controled mutability managed pointer.
7377 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7379         * verify.c (do_ldstr): added, verifies if the #US token is valid.
7381         * verify.c (mono_method_verify): removed old TODO
7383 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7385         * verify.c (do_newobj): add visibility check.
7387 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7389         * verify.c (do_load_function_ptr): add visibility check.
7391 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
7392         *class.c:
7393         mono_generic_class_get_class: hook profiler events.
7394         mono_field_get_offset: added to support heap-shot in the new profiler.
7395         *class.h: exported mono_field_get_offset.
7396         * reflection.c:
7397         mono_reflection_setup_internal_class: hook profiler events.
7399 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
7401         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
7402         argument here too and use it to avoid checking for pending exceptions if 
7403         possible.
7405 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
7407         * assembly.c (build_assembly_name): add arg for passing the assembly
7408         flags. Do not consider a PublicKey with value "null" valid.
7409         (mono_assembly_name_parse_full): added boolean argument that will be
7410         set if the assembly name contains a PublicKeyToken spec. Added support
7411         for the Retargetable spec for which only Yes or No are allowed as valid
7412         value. Consider assembly name invalid if Retargetable spec is set, but
7413         either version, culture or public key (token) are not specified.
7414         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
7415         with implementation in assembly.c.
7416         * icall.c (fill_reflection_assembly_name): also copy assembly flags
7417         from MonoAssemblyName.
7418         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
7419         introduced argument for mono_assembly_name_parse_full to know if the
7420         assembly name has a PublicKeyToken spec, and if it has instruct
7421         fill_reflection_assembly_name to use default value for keyToken (if
7422         PublicKeyToken is null).
7424 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7426         * verify.c (mono_method_verify): fixed ovf ops with
7427         float values. They are unverifiable now.
7429 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
7431         * class.c (set_failure_from_loader_error): add BadImageException to the
7432         list of exceptions that can cause a type to fail to load.
7434         * class.c (mono_class_get_exception_for_failure): same.
7436 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
7438         * verify.c (in_any_exception_block): added, check if offset
7439         is part of any exception handling clause.
7441         * verify.c (get_stack_type): added VAR and MVAR types.
7443         * verify.c (do_stobj): better error messages.
7445         * verify.c (do_cpobj): added, check cpobj.
7447         * verify.c (do_initobj): added, check initobj.
7449         * verify.c (do_sizeof): added, check sizeof.
7451         * verify.c (do_localloc): added, check localloc.
7453         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
7455 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
7457         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
7458         save_lmf/restore_lmf opcodes.
7460         * threads.c (mono_threads_install_notify_pending_exc): New function to
7461         install a callback notifying the JIT there is a pending exception on a thread.
7462         (mono_thread_request_interruption): Call the new callback.
7463         (mono_thread_get_and_clear_pending_exception): New function to return the
7464         exception pending on a thread.
7466         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
7467         to turn off checking for pending exceptions.
7468         (mono_marshal_get_native_wrapper): Ditto.
7470 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7472         * threads-types.h: Get rid of the unnecessary extern declarations.
7474 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
7476         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
7477         return field from parent class if not private.
7478         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
7479         returns fields from parent class if they are not private.
7480         (method_nonpublic): added function to determine if a given method
7481         should be considered non-public. Returns false for private methods
7482         on parent class, and internal methods from parent on the 1.0 profile.
7483         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
7484         use method_nonpublic function to determine whether method should be
7485         returned.
7486         (property_accessor_public): use newly introduced method_nonpublic
7487         function to determine whether accessor is non-public. 
7488         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
7489         event from parent class if not private. Only return static event if
7490         Static flag is set, and only return static event from parent class if
7491         FlattenHierarchy flag is set.
7492         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
7493         include non-private events from parent class.
7495 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
7497         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
7498         warning.
7500 2008-01-16  Wade Berrier <wberrier@novell.com>
7502         * security.c: Add assembly.h header to appease some warnings
7504 2008-01-16  Dick Porter  <dick@ximian.com>
7506         * process.c (process_module_string_read): Remove trailing null
7507         when saving string.
7509 2008-01-16  Mark Probst  <mark.probst@gmail.com>
7511         * class-internals.h: A new data structure describing the layout of
7512         a runtime generic context (MonoRuntimeGenericContextTemplate).
7514         * metadata-internals.h: Added a hash table to MonoDomain that maps
7515         from open generic classes to their runtime generic context
7516         templates.
7518         * object.c: Building of the runtime generic context, including
7519         proper handling of generic type arguments of superclasses.
7520         Building of the runtime generic context according to the template.
7522 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
7524         * class.c (mono_class_setup_fields): Set field.count for generic instances.
7525         Fixes #350856.
7527         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
7528         mono_portability_find_file (). Fixes #325466.
7529         (mono_image_get_public_key): Fix a warning.
7531 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
7533         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
7534         Fixes #353550.
7535         (mono_class_from_name_case): Ditto.
7537 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
7539         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
7540           common storage for the tables used in the System/NumberFormatter class.
7542 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
7544         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
7546 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
7548         * verify.c (get_boxable_mono_type): check if the token is valid.
7550         * verify.c (set_stack_value): changed to add an error if an
7551         invalid type is set on stack. Changed all callers due to signature change.
7553         * verify.c (do_stobj): implement stobj validation.
7555 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
7557         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
7558         set container->is_method, it was set earlier.
7560         * metadata.c (type_in_image): Handle MVARs which belong to not finished
7561         generic methods.
7563         * reflection.c (mono_reflection_initialize_generic_parameter): Set
7564         is_method of the generic container to TRUE for methods.
7566 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7568         * metadata.c (type_in_image): Handle type parameters properly.
7570         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
7571         memory ownership of this structure.
7573 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
7575         * verify.c (get_boxable_mono_type): make typedref types been just
7576         unverifiable. check for void type.
7578         * verify.c (do_unbox_any): added, verify opcode unbox.any.
7580         * verify.c (do_load_function_ptr): accept method spec tokens.
7582 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
7584         * marshal.c (mono_class_native_size): Always set *align even if this is called
7585         recursively.
7587 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
7589         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
7590         out-of-date.
7592 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
7594         * verify.c: removed some old unused tables. A huge bunch of small fixes
7595         to things found while testing the verifier with mono basic.
7597         * verify.c (dump_stack_value): dump null literal flag to.
7599         * verify.c (verify_type_compatibility_full): fix comparison
7600         for types that have a generic super type.
7602         * verify.c (verify_stack_type_compatibility): fix compatibility
7603         between null literals and reference types. fix compatibility between
7604         boxed valuetypes and object. fix corner case test for enums.
7606         * verify.c (do_cmp_op): proper verification of cgt.un in case
7607         of reference types.
7609         * verify.c (do_invoke_method): fix error message.
7611         * verify.c (do_store_indirect
7613         * verify.c (check_is_valid_type_for_field_ops): proper verification
7614         of managed pointers to valuetypes and boxed valuetypes. proper verification
7615         of null literals.
7617         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
7618         allow token to be a reference type.
7620         * verify.c (do_cast): proper handling of boxes valuetypes.
7622         * verify.c (do_stelem): proper handling of storing a boxed valuetype
7623         in object[].
7625         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
7626         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
7627         fixed the decoding of unbox_any
7629 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
7631         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
7633 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
7635         * verify.c (do_newobj): do delegate verification.
7637         * verify.c (verify_delegate_compatibility): perform delegate
7638         verification.
7640         * verify.c (verify_ldftn_delegate): perform tests related to
7641         ldftn delegates.
7643         * verify.c (mono_delegate_signature_equal): perform the
7644         slightly diferent signature comparison required by delegates.
7646         * metadata.c (mono_metadata_type_equal_full): added and exported
7647         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
7648         allows signature only comparison.
7650         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
7651         as MONO_INTERNAL.
7653 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
7655         * verify.c: added a bunch of stack_slot_* functions to
7656         make access to stack slot type easier. This is required to
7657         allow optional flags, like null literal, boxed value and
7658         this pointer.
7659         All access paths to IlStackDesc::stype have been changed 
7660         to use these new funcions.
7661         Removed a bunch of unused functions and cleared all warnings.
7662         This patch introduces the usage of the this pointer and 
7663         boxed value flags.
7665 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
7667         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
7669 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
7671         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
7672         match managed version.
7674         * appdomain.c: Bump corlib version.
7675         
7676         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
7677         argument.
7679 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
7681         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
7682         Set public key token to zero-length byte array if assembly is not
7683         strongnamed.
7685 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7687         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
7688         writing a vtype array elem.
7690 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7692         * assembly.c (build_assembly_name): return FALSE if length of token is
7693         not 16 (if not "null").
7694         (mono_assembly_name_parse_full): return FALSE if value of version,
7695         culture, token or key is 0.
7696         * icall.c (fill_reflection_assembly_name): add boolean arguments to
7697         specify whether public key and public key token must be set to default
7698         value (zero-length byte array) if not available. Set versioncompat to
7699         SameMachine. If public key is available or the default is set, then
7700         set PublicKey flag.
7701         (ves_icall_System_Reflection_Assembly_FillName): if no public key
7702         is available, use empty byte array as default value. On the 2.0
7703         profile, use default value for public key token if not set.
7704         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
7705         profile, use default value for public key if not set. On the 2.0
7706         profile, use default value for public key token if not set.
7707         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
7708         default values for public key and public key token.
7710 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
7712         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
7713         field to keep it in synch with the managed object.
7715         * marshal.c (emit_marshal_object): Add support for byref marshalling of
7716         delegates. Fixes #351520.
7718         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
7719         contains defined memory.
7720         
7721         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
7723         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
7724         
7725         * sgen-gc.c (check_consistency): New helper function to do a consistency check
7726         of the GC data structures.
7728         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
7730         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
7731         
7732         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
7733         barrier.
7734         (mono_array_clone_in_domain): Ditto.
7735         (mono_array_clone_in_domain): Ditto.
7737         * threads.c (start_wrapper): Register the thread start argument as a GC root.
7738         (cache_culture): Use a write barrier.
7740         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
7741         (ves_icall_get_property_info): Ditto.
7743         * object.h (MONO_STRUCT_SETREF): New macro.
7745         * class-internals.h (MonoStats): Add some GC statistics.
7747         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
7749 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
7751         * exception.c (mono_exception_from_name_two_strings):
7752         Break from loop after method is found.
7754 2008-01-04  Dick Porter  <dick@ximian.com>
7756         * process.c (process_module_string_read): Rename variable to
7757         reflect correct usage, after fixing bug 345972.
7759 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
7761         * verify.c (mono_type_create_fnptr_from_mono_method): 
7762         created a MonoType function pointer instance to be used during
7763         verification. The verifier releases this memory at end.
7765         * verify.c (mono_method_is_constructor): extracted repeated
7766         checks for constructor into a single class.
7768         * verify.c (do_push_field): use new extracted method
7769         for constructor check.
7771         * verify.c (do_newobj): same.
7773         * verify.c (do_ldftn): renamed to do_load_function_ptr
7774         and make it verify ldvirtftn too.
7776         * verify.c (mono_method_verify: proper verification
7777         of ldvirtftn. release created MonoMethod instances.
7779 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
7781         * verify.c (token_bounds_check): added.
7783         * verify.c (do_ldftn): added.
7785         * verify.c (mono_method_verify): proper verificartion of ldftn.
7787 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
7789         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
7790         than the table row count. It's the resposibility of the caller to
7791         make the bounds check and raise the correct error.
7793         * metadata.c (mono_metadata_decode_row_col): Same.
7795         * loader.c (mono_get_method_from_token): perform bounds check
7796         on token for methoddef table.
7798 2007-12-29  Miguel de Icaza  <miguel@novell.com>
7800         * icall.c
7801         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
7802         assert into a negative result, the managed code already coped with
7803         that.
7805         Some folks on Windows reported this error. 
7807 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
7809         * appdomain.c: Bump corlib version.
7810         * icall.c:
7811         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
7812         CultureInfo.CreateCulture to create CultureInfo for name.
7813         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
7814         create CultureInfo for name. Fixes bug #347174.
7816 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
7818         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
7819         flags.
7821         * verify.c (is_valid_branch_instruction): allow branching to the
7822         first instruction of the protected block.
7824         * verify.c (is_valid_cmp_branch_instruction): same.
7826         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
7827         avoid double initialization.
7829         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
7830         detect which cases the eval stack should just be copied.
7832         * verify.c (mono_method_verify): check if the eval stack
7833         is empty when entering a protected block.
7835 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
7837         * verify.c: added is_clause_in_range, is_clause_inside_range,
7838         is_clause_nested and verify_clause_relationship. They perform
7839         the verifications stated in P1 12.4.2.7.
7841         * verify.c (mono_method_verify): remove some unused variables,
7842         add the new exception clause checks, add instruction border
7843         checks for protected block start/end, improved some error 
7844         messages and fixed a bug in the way invalid instruction access
7845         is detected.
7847 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
7849         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
7850         from GC 7.0 if available.
7852         * object.c: Remove an unused define.
7853         
7854         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
7856         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
7858         * null-gc.c (mono_gc_make_descr_for_array): Implement.
7860         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
7862         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
7863         to take the same arguments as the other make_descr functions.
7865         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
7867         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
7868         directly.
7870         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
7871         mini.c.
7873         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
7874         call to boehm-gc.c.
7876         * boehm-gc.c (mono_gc_register_root): Fix a warning.
7878         * null-gc.c (mono_gc_register_root): Fix a warning.
7880         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
7882         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
7883         (mono_gc_base_init): Call GC_init ().
7885         * null-gc.c: Define mono_gc_register_root () as a no-op.
7887         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7889 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
7891         * verify.c: add prototype for merge_stacks at top
7893         * verify.c (do_switch): added.
7895         * verify.c (merge_stacks): on some cases the stack merging
7896         was not happening properly. Unequal stack sizes at merge
7897         points should be invalid.
7899         * verify.c (mono_method_verify): added more debug info on stack state.
7900         verify switch properly.
7902 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
7904         * method-builder.h: New file, moved the mono_mb_ declarations here from 
7905         marshal.h.
7907         * boehm-gc.c marshal.c: Include method-builder.h.
7909         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
7911         * marshal.c: Remove some code which is now in method-builder.c.
7913 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
7915         * method-builder.c: New file, extraction of the method builder functionality 
7916         from marshal.c.
7918         * marshal.c: Move the mb functions into method-builder.c.
7920         * marshal.h marshal.c: Export some mono_mb_... functions.
7922         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
7924         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
7925         the caller.
7927         * class.c (mono_class_get_full): Check the token type in the dynamic case.
7929         * loader.c (mono_field_from_token): Ditto.      
7931         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
7932         type as well.
7933         
7934         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
7935         Fixes #342565.
7937         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
7938         a helper function for setting it.
7940         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
7942         
7943         * assembly.c: Significally simplify code now that referenced assemblies are 
7944         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
7946         * threads.h: Don't include  the internal threads-types.h header file. Fixes
7947         #349952.
7949 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
7951         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
7952         instructions that were target of branches or are at protected block boundaries.
7954         * verify.c (in_same_block): handle filter clauses.
7956         * verify.c (is_valid_branch_instruction): added. checks the target of
7957         instructions br or brtrue/false.
7959         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
7960         binary branch instructions such as beq and bge.
7962         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
7963         and made it pin the instruction as been part of the exception block.
7965         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
7966         of in_same_block.
7968         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
7969         of in_same_block.
7971         * verify.c (do_ret): ret from a protected block is unverifiable and
7972         not invalid.
7974         * verify.c (do_static_branch): verify br and br.s instructions.
7976         * verify.c (merge_stacks): add extra param to support detection
7977         of branches in the middle of instructions.
7978         
7979         * verify.c (mono_method_verify): verify branches and exception blocks
7980         that target the middle of instructions. Proper verification of br and br.s.
7982 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
7984         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
7985         skip_visibility field.
7986         (reflection_methodbuilder_from_dynamic_method): Ditto.
7988         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
7989         registrations. Fixes #348193.
7991         * threads.h: Move the internal mono_thread_get_pending_exception () to
7992         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
7994 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
7996         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
7997         icall registration. Fixes #348193.
7999         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
8000         for corlib classes into object. Fixes #349621.
8002 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
8004         * icall.c (property_accessor_nonpublic): new function to determine
8005         whether an accessor allows a property to be considered non-public.
8006         Returns false for private accessor(s) from parent class, and internal
8007         accessor(s) from parent on 2.0 profile (and higher).
8008         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
8009         to determine whether property should be included if NonPublic flag
8010         is set. Fixes bug #349078.
8012 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
8014         * verify.c (init_stack_with_value): added.
8016         * verify.c (mono_method_verify): extracted common
8017         code for exception initialization into init_stack_with_value.
8019         * verify.c (mono_method_verify): initialize the exception
8020         for handler clauses as well.
8022         * verify.c (mono_method_verify): fix the exception clause
8023         ordering rules, it should use handler end offset and not
8024         start offset.
8026 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
8028         * rawbuffer.c: remove useless warning.
8030 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
8032         * threads.h, threads-types.h: move functions to the correct header
8033         (fixes bug#349952).
8035 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
8037         * verify.c (mono_method_verify): proper verification
8038         of exception handling clauses ranges and fallthru in
8039         and out of protected blocks.
8041 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
8043         * verify.c (mono_method_verify): fixed compilation issue.
8045 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
8047         * verify.c (mono_method_verify): a printf slipped in, changed
8048         to use verifier debug macro.
8050 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
8052         * verify.c (is_correct_leave): check for filter clauses.
8054         * verify.c (do_filter): added.
8056         * verify.c (mono_method_verify): property verification of leave.
8059 2007-12-18  Mark Probst  <mark.probst@gmail.com>
8061         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
8062         Win32 build, until we figure out how to do the proper thing on
8063         Win32.
8065 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
8067         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
8068         by the previous patch.
8069         
8070         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
8071         the assembly resolve handler for refonly assemblies.
8073 2007-12-17  Mark Probst  <mark.probst@gmail.com>
8075         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
8076         Make sure only one thread is allowed to commence shutdown, and
8077         don't allow new threads to be started once shutdown is in
8078         progress.
8080 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
8082         * verify.c (is_correct_endfilter): added.
8084         * verify.c (is_unverifiable_endfilter): added.
8086         * verify.c (do_endfilter): added.
8088         * verify.c (mono_method_verify): property verification of endfilter
8089         and fixed a corner case or endfinally.
8091 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
8093         * verify.h: new flags to support fail fast of unverifiable code and
8094         do non-strict verification. Non-strict verification is required to
8095         have MS runtime compatibility. There are a huge amount of unverifiable
8096         code that it accepts as verifiable. The strict mode verifies the code
8097         as the specs says.
8098         Non-strict mode will be required in cases where code needs to be
8099         accepted as verifiable but fails under strict mode.
8101         * pedump.c: added support to fail fast and non-strict verification.
8103         * verify.c: added support for both fail fast and non-strict verification.
8105 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
8107         * verify.c (is_correct_endfinally): added.
8109         * verify.c (mono_method_verify): property verification of endfinally.
8111 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
8113         * verify.c (in_any_block): check for filter clauses.
8115         * verify.c (is_correct_rethrow): added.
8117         * verify.c (mono_method_verify): property verification of rethrow.
8119         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
8121 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
8123         * verify.c (do_throw): added.
8125         * verify.c (mono_method_verify): property verification of throw
8127 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
8129         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
8130         assemblies. Fixes #346425.
8132 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
8134         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
8135         FieldBuilders.
8137         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
8139         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
8140         prevent asserts when this is called with a token which might not be valid.
8142         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
8143         lookup_dynamic_token_class with valid_token == FALSE.
8145         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
8147         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
8149         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
8150         
8151 2007-12-10  Mark Probst  <mark.probst@gmail.com>
8153         * gc.c: Don't delay threadpool thread finalization unless Mono is
8154         shutting down.
8156 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
8158         * threads.c: turn an assert into a non-fatal warning.
8160 2007-12-09  Robert Jordan  <robertj@gmx.net>
8162         * icall.c (GetVirtualMethod): Add missing argument validation.
8164 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
8166         * verify.c (do_cast): added.
8168         * verify.c (mono_method_verify): property verification of castclass and isinst.
8171 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
8173         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
8175         * verify.c (do_stelem): added.
8177         * verify.c (mono_method_verify): property verification of stelem.X.
8179 2007-12-07  Mark Probst  <mark.probst@gmail.com>
8181         * class.c, class-internals.h: Introduce an environment variable
8182         (MONO_GENERIC_SHARING) through which the extent of generic code
8183         sharing can be controlled (share all classes, share only corlib
8184         classes, or share nothing).
8186         * object.c: Only create runtime generic context for classes for
8187         which sharing is enabled.
8189 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
8191         * verify.c (do_ldelem): refactor it to work with ldelem.any.
8193         * verify.c (mono_method_verify): property verification of ldelem.any.
8195 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
8197         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
8198         added ldelem.X opcodes.
8200         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
8202         * verify.c: proper verification of ldelem.X 
8204 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
8206         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
8208 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
8210         * verify.c (mono_method_verify): null literal requires special handling,
8211         the value pushed on stack need to be flagged as so.
8213         * verify.c (do_ldelema): Verify ldelema properly.
8215 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
8217         * verify.c: Verify ldlen properly.
8219 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
8221         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
8222         to the target object's type. Fixes #346160.
8224 2007-12-05  Dick Porter  <dick@ximian.com>
8226         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
8227         Solaris needs the same workaround as BSD-derived systems.  Fixes
8228         bug 323524, patch by Burkhard Linke
8229         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
8231 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
8233         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
8234         handle to use when error dialog is shown; otherwise, update mask
8235         to show no error dialog when an error occurs.
8237 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
8239         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
8241         * class.c (mono_class_get_field_default_value): New helper function to initialize
8242         field->def_type and field->data.
8244 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
8246         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
8247         the general one.
8249         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
8251         * marshal.c: Avoid depending on delegate->method_info being set.
8253         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
8254         
8255         * object.c (mono_delegate_ctor): Set delegate->method.
8257         * object-internals.h (struct _MonoDelegate): Add 'method' field.
8259         * appdomain.c: Bump corlib version.
8261 2007-11-27  Raja R Harinath  <harinath@gmail.com>
8263         * metadata.c (mono_generic_inst_equal_full): Short-circuit
8264         equality check if we're comparing canonicalized MonoGenericInsts.
8266 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
8268         * class.c (generic_array_methods): Call mono_class_setup_methods () before
8269         accessing class->methods.
8271 2007-11-22  Dick Porter  <dick@ximian.com>
8273         * threads.c: Ensure that the synch_cs is set before trying to use
8274         it.
8276 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
8278         * profiler.c: r89126 broke the statistial profiler, unbreak.
8280 2007-11-22  Martin Baulig  <martin@ximian.com>
8282         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
8284         * mono-debug.c
8285         (mono_debug_debugger_version): Bump to 3.
8286         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
8287         -> mono_debugger_class_initialized().
8289         * mono-debug-debugger.c
8290         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
8292         * class.c
8293         (mono_debugger_start_class_init_func): Removed.
8294         (mono_debugger_class_loaded_methods_func): Added.
8295         (mono_class_setup_methods): Call it here.
8297 2007-11-22  Martin Baulig  <martin@ximian.com>
8299         * mono-debug.c
8300         (mono_debug_add_delegate_trampoline): New public method.
8301         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
8303         * mono-debug.h
8304         (MonoSymbolTable): Added `global_data_table'.
8305         (MonoDebuggerTypeKind): Removed.
8307 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
8309         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
8310         these methods.
8312         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8313         
8314 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
8316         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
8318 2007-11-20  Martin Baulig  <martin@ximian.com>
8320         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
8322         * mono-debug-debugger.c
8323         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
8324         (mono_debugger_remove_breakpoint): Likewise.
8325         (mono_debugger_check_breakpoints): Likewise.
8326         (mono_debugger_register_class_init_callback): New public method.
8327         (mono_debugger_remove_class_init_callback): Likewise.
8328         (mono_debugger_add_type): Likewise.
8330         * mono-debug-debugger.h
8331         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
8333 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
8335         * class.c: more interface implementations needed for the
8336         array enumerator (fixes bug #341112).
8338 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
8340         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
8341         fix ParamName of ArgumentNullExceptions.
8343 2007-11-17  Miguel de Icaza  <miguel@novell.com>
8345         * reflection.c (mono_reflection_encode_sighelper): Generate the
8346         modopts and modreqs.   I have a useless test that crashes monodis,
8347         but that shows the code working.
8349 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
8351         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
8352         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
8354 2007-11-15  Dick Porter  <dick@ximian.com>
8356         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
8357         When joining a thread, it's the thread that's calling Join that
8358         gets WaitSleepJoin state not the target.  Fixes the standalone
8359         test case in bug 334740, and hopefully the whole bug too.
8361 2007-11-15  Dick Porter  <dick@ximian.com>
8363         * process.c: Read file version info from the files pointed at by
8364         process modules, not the current process.  Fixes bug 315969.
8366         Use windows typedef names in some places to fix warnings on the
8367         windows build.
8369 2007-11-15  Mark Probst  <mark.probst@gmail.com>
8371         * image.c, metadata-internals.h: Added a generic_class_cache hash
8372         to MonoImage for looking up generic classes when sharing generics.
8374 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8376         * sgen-gc.c: warning cleanups.
8378 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
8380         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
8381         inherited properties.
8383 2007-11-14  Mark Probst  <mark.probst@gmail.com>
8385         * object.c, class-internals.h: Added more information to the
8386         runtime generic context.
8388 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
8390         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
8391         instead of just the target method. Generalize the abstract method handling to
8392         handle any non-static method.
8394         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
8395         mono_marshal_get_delegate_invoke () signature change.
8397 2007-11-13  Mark Probst  <mark.probst@gmail.com>
8399         * class.c, class-internals.h: Made
8400         mono_type_get_basic_type_from_generic () public.  Fixed member
8401         access check for shared generics.
8403         * loader.c: Don't insert field into field cache if it's part of a
8404         non-inflated generic class.
8406         * domain.c, domain-internals.h: The generic sharing context is now
8407         part of the jit info data structure.  Added two accessor
8408         functions.
8410 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
8412         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
8413         the array Get/Set/Address methods, since the JIT inlines them.
8415         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
8417         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
8418         (mono_image_init): Initialize runtime_invoke_direct_cache.      
8420         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
8421         mono_marshal_get_delegate_invoke signature change.
8423         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
8424         an additional argument. Add support for invoking abstract methods.
8426         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
8428         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
8430 2007-11-09  Mark Probst  <mark.probst@gmail.com>
8432         * class.c: Do field layout for open generic classes as well.
8434 2007-11-09  Mark Probst  <mark.probst@gmail.com>
8436         * gc.c, gc-internal.h: Don't finalize threadpool threads with
8437         other objects, because the threadpool is still around.  Put them
8438         in a list instead and after finalizing all other objects in the
8439         root domain shut down the thread pool and then finalize the
8440         threads.  Fixes bug #337383.
8442         * threads.c, thread-types.h: New mono_thread_create_internal()
8443         function for marking a thread with the threadpool flag before it
8444         started.  Set synch_cs to NULL after freeing it.
8446         * threadpool.c: Mark threadpool threads before they start.
8448 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8450         * reflection.h, reflection.c: don't export random functions
8451         and lazy load dbnull and missing objects.
8453 2007-11-07  Jonathan Chambers <joncham@gmail.com>
8455         * class.c: Initialize COM types if COM interfaces
8456         are present (not just COM classes).
8457         
8458         Code is contributed under MIT/X11 license.
8460 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8461         * reflection.c:
8462         create_dynamic_mono_image: hook module profiler events (dynamic case).
8463         mono_image_basic_init: hook assembly profiler events (dynamic case).
8465 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
8466         * profiler.c:
8467         simple_appdomain_unload: completely terminate the profiler
8468         instead of only processing the statistical samples.
8469         simple_shutdown: make sure this is really called exactly once,
8470         even in multithreaded applications, and always listen to
8471         appdomain events.
8472         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
8473         here, the "[un]load" functions will do it.
8474         Fixes bugs #333791 and #325261.
8476 2007-11-07  Geoff Norton  <gnorton@novell.com>
8478         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
8479         rather than depend on __APPLE__.
8481 2007-11-07  Mark Probst  <mark.probst@gmail.com>
8483         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
8485 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
8487         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
8488         UTF16 MonoString. Fix the crash from bug #335488
8490 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
8492         * marshal.c: Correct (for non-Win32 OS) length != size in 
8493         mono_string_from_bstr. Fix #339530.
8495 2007-11-06  Geoff Norton  <gnorton@novell.com>
8497         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
8498         to succeed
8500 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
8502         * process.c: Added run-time GetProcessId API detection for Windows.
8504 2007-11-04  Miguel de Icaza  <miguel@novell.com>
8506         * reflection.c  (mono_param_get_objects): If a parameter has the
8507         attribute [System.Runtime.InteropServices.Optional] we should
8508         set the DefaultValue of the ParameterInfo to be
8509         System.Reflection.Missing instead of DBNull.
8511         See bug #339013.
8513         (mono_get_reflection_missing_object): New method,
8514         returns the System.Reflection.Missing.Value singleton instance.
8516 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
8518         * culture-info-table.h : regenerated.
8520 2007-11-02  Jonathan Chambers <joncham@gmail.com>
8522         * icall.c: Use GetEnvironmentStrings on windows
8523         so we are using the same environment block as 
8524         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
8525         #333740.
8526         
8527         Code is contributed under MIT/X11 license.
8529 2007-10-31  Martin Baulig  <martin@ximian.com>
8531         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
8533         * mono-debug-debugger.h
8534         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
8536 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
8538         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
8539         classes.
8541 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
8543         * culture-info-table.h : regenerated.
8545 2007-10-30  Robert Jordan  <robertj@gmx.net>
8547         * icall-def.h, icall.c:
8548         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
8550         Code is contributed under MIT/X11 license.
8552 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
8554         * class.c (mono_class_setup_vtable): Find the inflated methods in the
8555         inflated class instead of inflating them again.
8556         
8557         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
8558         dynamic case.
8560         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
8561         Call setup_supertypes () after klass->parent is set.
8562         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
8564         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
8565         for inflated instances of not yet created dynamic generic classes.
8566         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
8567         times from inflated_method.
8568         (methodbuilder_to_mono_method): Ditto.
8570 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
8572         * gc.c: code cleanup and removed old untested option of not creating the
8573         finalizer thread.
8575 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
8577         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
8578         creating a jump trampoline for dynamic methods.
8580 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
8582         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
8583         generic TypeBuilders when called from another method of the same type (bug #335131).
8586 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
8588         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
8589         doesn't seem to work perfectly.
8590         
8591         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
8592         called multiple times.
8593         (methodbuilder_to_mono_method): Ditto.
8594         (resolve_object): Inflate FieldBuilder's.
8596 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8598         * string-icalls.c, string-icalls.h, appdomain.c: patch from
8599         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
8600         RemoveEmptyEntries in the string.Split implementation (bug #322375).
8602 2007-10-26  Dick Porter  <dick@ximian.com>
8604         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
8605         Thread initialisation changes
8607 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
8609         * verify.c: fix compatibility check between arrays and System.Array
8611 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
8613         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
8614         too. Fixes #336999.
8616 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
8618         * object.c (mono_value_box): Use typed allocation here.
8620 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
8622         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
8623         trampoline instead of compiling the method right away.
8625         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
8627 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
8629         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
8630         related fields for dynamic classes. Fixes #334493.
8632 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
8634         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
8635         
8636         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
8638         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
8639         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
8641         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
8643         * reflection.c (create_generic_typespec): Initialize klass->generic_container
8644         if needed.
8645         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
8647 2007-10-18  Jonathan Chambers <joncham@gmail.com>
8649         * marshal.c: Use correct key when removing item
8650         from ccw_hash.
8651         
8652         Code is contributed under MIT/X11 license.
8654 2007-10-17  William Holmes  <billholmes54@gmail.com>
8656         *marshal.c: Adding a case to marshal booleans to U1
8658         Code is contributed under MIT/X11 license.
8660 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
8662         * class.c (mono_class_from_name): Search the modules compromising dynamic
8663         assemblies. Fixes #331601.
8665 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
8667         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
8668         exception if the type name contains an assembly component. Fixes #334203.
8670         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
8671         modules inside dynamic assemblies. Fixes #334200.
8672         
8673         * reflection.c: Set image->public_key and image->public_key_length;
8675         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
8676         fields.
8678         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
8679         
8680 2007-10-16  Mark Probst  <mark.probst@gmail.com>
8682         * metadata.c: Implemented correct comparing of generic classes.
8683         An inflated generic class can be equal to a non-inflated one if it
8684         is inflated with generic type variables as type arguments.  Fixes
8685         bug #333798.
8687 2007-10-15  Dick Porter  <dick@ximian.com>
8689         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
8690         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
8691         81646.
8693         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
8694         instead of a monitor lock.  This means that monitor_try_enter and
8695         co can set the thread state safely.
8696         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
8697         thread_interrupt_requested, so interrupt actually works.
8699         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
8700         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
8701         state accessor function
8703 2007-10-15  Martin Baulig  <martin@ximian.com>
8705         * mono-debug.h
8706         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
8707         the debugger with the current runtime.
8709 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
8711         * object.c, object-internals.h: added the ability to set a single
8712         trampoline for all the slots in a vtable.
8714 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8716         * marshal.c: deal with a possible race condition during multicast
8717         delegate invocation.
8719 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8721         * class.c: ensure value type methods don't have the synchronized
8722         flag set.
8724 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8726         * string-icalls.c, string-icalls.h: reverted unapproved patch that
8727         breaks the build.
8729 2007-10-11  Joel Reed  <joelwreed@comcast.com>
8731         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
8732         to take an options parameter so that empty entries can be removed during
8733         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
8735 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8737         * marshal.c: make sure we don't store the signature from a dynamic
8738         method into the runtime invoke cache (bug #327189).
8740 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8742         * marshal.c: make sure the wrapper methods are properly initialized.
8744 2007-10-11  Mark Probst  <mark.probst@gmail.com>
8746         * metadata.c, metadata-internals.h: Generalized
8747         mono_type_stack_size() to mono_type_stack_size_internal() which
8748         takes an additional argument specifying whether it allows open
8749         types.
8751 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8753         * verify.c (do_invoke_method): handle typedbyref params
8754         correctly and check for unverifiable return values.
8756         * verify.c (do_newobj): fix a warning.
8758 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8760         * verify.c: don't tread typedbyref as allways unverifable,
8761         so uses, like (ld/st)loc.0 are valid. verify for the cases
8762         that it matters, like boxing related operations.
8764 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8766         * verify.c: add verification of the newobj opcode. verification
8767         of delegate instantation still missing due ldftn and virldftn not
8768         pushing the function type on stack
8770 2007-10-08  Mark Probst  <mark.probst@gmail.com>
8772         * class-internals.h: Runtime generic context data structure
8773         definition.
8775         * object.c: Initialization of runtime generic context at runtime
8776         vtable creation time.
8778 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
8779         * class.c (mono_class_create_from_typedef,
8780         mono_class_from_generic_parameter, mono_ptr_class_get,
8781         mono_fnptr_class_get, mono_bounded_array_class_get)
8782         * domain.c (mono_domain_create, mono_domain_free)
8783         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
8784         * image.c (do_mono_image_load, mono_image_close):
8785         Hooked up load-unload profiler events.
8787 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8789         * domain.c: track statistics about the actual amount of native code
8790         allocated.
8792 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8794         * class.c: the valuetype enumerators don't have the additional
8795         supertypes interfaces.
8797 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8799         * class.c: need more interfaces setup for the IEnumerator<T>
8800         object created for arrays (tests/ienumerator-interfaces.2.cs).
8802 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
8804         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
8806 2007-10-05  Alp Toker  <alp@atoker.com>
8808         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
8809         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
8810         #315863.
8812 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
8814         * verify.c (verify_type_compatibility_full): verification of
8815         compatibility improved, validates correctly non-strict checks between
8816         native int and I4 types different than (unsigned)int32.
8818         * verify.c (do_store_indirect): added, do all verification of
8819         ldind.X opcodes. 
8821         * verify.c (get_load_indirect_mono_type): renamed to
8822         get_indirect_op_mono_type, as it now returns the MonoType for 
8823         ldind.X and stind.X opcodes.
8825 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
8827         * reflection.c: Fix the encoding of generic type definition for
8828         TypeBuilders.
8830         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
8831         mono_image_typedef_or_ref but allows to specify if typespec lookups should
8832         be made. Typespec check is done prior to typeref cache lookup.
8834         * reflection.c (mono_image_typedef_or_ref): now just delegate to
8835         mono_image_typedef_or_ref_full.
8837         * reflection.c (encode_generic_class): encode the generic class
8838         directly instead of calling encode_type.
8840         * reflection.c (encode_type): encode the generic type definition
8841         MonoClass as a generic instantiation.
8843         * reflection.c (create_typespec): cache typespec tokens in
8844         the assembly->typespec cache. Don't create typespec for a generic
8845         instance MonoClass. Create typespec for the generic type defintion.
8847         * reflection.c (create_generic_typespec): encode the generic
8848         class directly instead of calling encode_type.
8850         * reflection.c (mono_image_create_token): encode the generic
8851         type definition not using a typespec for MonoType instances.
8854 2007-10-04  Raja R Harinath  <rharinath@novell.com>
8856         Fix #328812
8857         * class.c (mono_image_init_name_cache): Don't return nested
8858         'protected internal' classes.
8859         (mono_class_from_name_case): Likewise.
8861 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
8863         * icall-def.h, icall.c : get_bundled_machine_config() is now the
8864           common function used by both DefaultConfig in System.dll and
8865           InternalConfigurationHost in System.Configuration.dll.
8867 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8869         * class.c: automatically add to vectors only a few essential explicit
8870         generic interfaces. The rest of the interfaces that arrays should
8871         provide are currently implicitly added (but still not lazily, see the
8872         design in the discussion of bug#325495 for the details of what is
8873         needed for that). Additionally, implicit interfaces are assigned the
8874         same vtable slot as the explicit interfaces (as they are compatible):
8875         this enables huge memory savings since we don't need to instantiate
8876         as many memthods and as large vtables anymore. Also, Since
8877         GetEnumerator<T> returns an instance of a type that is required to
8878         support a similarly large set of interfaces as arrays, we add
8879         implicit interfaces and interface offset sharing support to those
8880         types, too. This change adds all the required interfaces so that
8881         the anonarray.cs test case in the bug report works (we don't add
8882         all the interfaces to arrays of arrays 3-level deep and more because
8883         of the memory requirements explained in the bug and since they are much
8884         less common: the lazy-loading support will enabled them to work, too).
8886 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
8888         * verify.c (merge_stacks): major clean up, all type compatibility
8889         checks are done by verify_type_compatibility. This fix my earlier lack
8890         of understanding of the CLR type system and merge_stacks no longer looks
8891         scary.
8893         * verify.c: fixed some bad spelling.
8895 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
8897         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
8898         a given stack slock.
8899         
8900         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
8901         verify_type_compatibility_full. This removed a near indentical function and fixed
8902         handling of Int32 and IntPtr across all opcodes.
8904 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8906         * class.c: only vectors have the additional generic interfaces.
8908 2007-10-01  Jonathan Chambers <joncham@gmail.com>
8910         * mono-config.c: Use g_strcasecmp instead of
8911         strcasecmp like everywhere else to fix
8912         compilation with MSVC.
8913         
8914         Code is contributed under MIT/X11 license.
8916 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8918         * object.c, object-internals.h: refactored the IMT code to enable
8919         building a single slot at a time and lazily creating the IMT trampolines
8920         and thunks.
8922 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
8924         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
8926         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
8927         Fixes #328501.
8928         
8929 2007-09-29  Raja R Harinath  <harinath@gmail.com>
8931         * loader.c (method_from_methodspec): Rearrange to avoid
8932         un-necessary exposition.  Don't assert out if the method's
8933         declaring type is a generic type definition.
8935 2007-09-28  Martin Baulig  <martin@ximian.com>
8937         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
8939 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
8941         * class-internals.h: optimize field layout of MonoClass to
8942         requires less cachelines at runtime and save a few bytes on 64 bit
8943         systems.
8945 2007-09-28  Jb Evain  <jbevain@novell.com>
8947         * reflection.c: when encoding type names in custom attributes,
8948         if the type is a closed generic type, its generic arguments
8949         have to be serialized as AssemblyQualifiedName, so that when
8950         they are deserialized, it's possible to re-create them properly.
8951         Fixes #329450.
8954 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8956         * object.c, class-internals.h: added delegate-creation counter.
8958 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8960         * class.c: cleanup of the code that synthetizes interfaces for
8961         arrays in 2.0: saves quit a bit of corlib mempool memory.
8962         Code to fix bug #325495 ifdeffed out for now until the issues
8963         with memory usage and O(n^2) behaviour are fixed.
8965 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8967         * marshal.c: when possible, do not duplicate the name of the methods
8968         in the method builder and in the generated MonoMethod.
8970 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
8971         * verify.c: added support for type checking ldind_* opcodes.
8973 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
8975         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
8976         which is used to distinguish the fully open instantiation of a TypeBuilder
8977         with the rest. This temporary hack is required to restore the property that
8978         the fully open instantiation is the same type of the generic type definition.
8980         * class-internals.h (mono_generic_class_is_generic_type_definition):
8981         new function as part of the internal API.
8983         * class.c (inflate_generic_type): return NULL when the generic inst is
8984         fully open. The fully open generic type is now the same as the generic type
8985         definition for non TypeBuilder types.
8987         * class.c (mono_generic_class_get_class): removed assert since it is
8988         no longer valid, gklass->cached_class can point to the generic type definition.
8990         * class.c (mono_generic_class_is_generic_type_definition): new.
8992         * metadata.c (mono_generic_class_hash): added is_tb_open field
8993         to the hash calculation.
8995         * metadata.c (free_generic_class): if the generic class is associated
8996         with the generic type definition, its field will come from the mempool and
8997         must not be freed.
8999         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
9000         new, this function identifies the corner case of a TypeBuilder fully open
9001         instantiation.
9003         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
9004         for lookup. Set gclass->cached_class to be the container class in case of
9005         the fully open instantiation of non TypeBuilder types.
9007         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
9008         to compare generic classes.
9010         * reflection.c (method_encode_methodspec): remove assert that
9011         no longer is valid.
9013         * reflection.c (mono_reflection_generic_class_initialize): add
9014         an aditional assert to ensure the proper type is used.
9016 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
9018         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
9019         to enjoy it.
9021 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
9023         * verify.c (push_arg): Fixed support for ldarga
9024         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
9025         MonoType used as first arg in case of instance calls.
9027 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
9029         * verify.c: Support for verifying VAR and MVAR types, 
9031 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
9033         * icall.c (ves_icall_get_property_info): Set the reflected type of the
9034         accessors correctly.
9036 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
9038         * threads.c: support OSX and other systems in
9039         mono_thread_get_stack_bounds (bug #328026).
9041 2007-09-25  Martin Baulig  <martin@ximian.com>
9043         * mono-debug.h
9044         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
9046 2007-09-24  Martin Baulig  <martin@ximian.com>
9048         * mono-debug.h
9049         (MonoDebugClassEntry): Moved the definition of this struct into
9050         mono-debug.c to make it private.
9052         * mono-debug.c
9053         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
9054         type table per symbol file, we don't need to store the symfile id
9055         any longer.
9057 2007-09-24  Martin Baulig  <martin@ximian.com>
9059         Create one type table per symbol file, since a `MonoClass *' gets
9060         invalid when its image is unloaded.
9062         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
9063         (MonoDebugHandle): Added `type_table'.
9065 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
9067         * mempool.c, mempool.h: added mono_mempool_new_size () API
9068         to be able to specify a smaller initial size for the pool.
9069         Adjusted the code to slowly increase pool size before using
9070         the previous default size.
9071         * image.c: use a small initial size for image mempools.
9073 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
9075         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
9076         Fixes ##320990.
9078         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
9079         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
9081 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
9083         * metadata.c (mono_type_create_from_typespec): Remove an invalid
9084         free. Fixes #327438.
9086 2007-09-21  Raja R Harinath  <harinath@gmail.com>
9088         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
9089         generic instantiations, etc.
9090         <MONO_TYPE_ARRAY>: Likewise.
9092 2007-09-21  Martin Baulig  <martin@ximian.com>
9094         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
9095         these structs were never defined.
9096         (MonoDebugHandle): Removed the `_priv' field, it was never used.
9098 2007-09-21  Martin Baulig  <martin@ximian.com>
9100         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
9102 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
9104         * image.c: removed the guid hash tables: we can get the same info
9105         without the additional memory usage hit (partially fixes also bug #327052).
9107 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
9109         * profiler.h, profiler-private.h, profiler.c: add a new profiler
9110         event to handle unloading methods. After the event is called, the
9111         corresponding MonoMethod* must be considered invalid.
9112         * loader.c (mono_free_method): call the new mono_profiler_method_free
9113         event.
9115 2007-09-20  Mark Probst  <mark.probst@gmail.com>
9117         * domain-internals.h: New flag in MonoJitInfo which marks shared
9118         generic methods.  New hash table (shared_generics_hash) in
9119         MonoDomain to keep track of shared generic methods.  Prototypes
9120         for functions to register and lookup shared generic methods.
9122         * domain.c: Support for registering and looking up shared generic
9123         methods via a hash table (shared_generics_hash) in MonoDomain.
9125         * class-internals.h: New exception to signal failure of shared
9126         compilation of a generic method.  New counters for generics
9127         sharing in MonoStats.
9129 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
9131         * image.c, metadata-internals.h: don't keep a file descriptor open
9132         for loaded assemblies (bug#325988).
9134 2007-09-19  Raja R Harinath  <rharinath@novell.com>
9136         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
9137         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
9138         use the corresponding datatypes.
9139         (type_in_image): Update to changes.
9140         (CleanForImageUserData): Simplify.
9141         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
9142         Avoid quadratic behaviour in handling the "stolen" list by
9143         separating the filter predicate out, and by prepending the stolen
9144         items rather than appending them.
9145         (steal_ginst_in_image): Likewise.
9146         (mono_metadata_clean_for_image): Update to changes.
9148 2007-09-19  Martin Baulig  <martin@ximian.com>
9150         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
9152 2007-09-19  Martin Baulig  <martin@ximian.com>
9154         * mono-debug.c (mono_debug_cleanup): Don't call
9155         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
9157 2007-09-19  Raja R Harinath  <harinath@gmail.com>
9159         Fix crash on 'make run-test' in mcs/errors
9160         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
9161         Avoid more potential allocations in mono_class_from_mono_type.
9162         (ginst_in_image): Update to changes.
9163         (gclass_in_image): Rearrange slightly.
9165 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
9167         * class.c (mono_class_init): Move the code that sets up class->methods to 
9168         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
9170         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
9171         canonical instance of an inflated generic signature.
9172         (mono_type_create_from_typespec): Remove an invalid free.
9174         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
9176 2007-09-18  Marek Habersack  <mhabersack@novell.com>
9178         * domain-internals.h: added a declaration of the
9179         mono_assembly_load_full_nosearch internal function.
9181         * assembly.c (mono_assembly_load_with_partial_name): use
9182         mono_try_assembly_resolve return value properly.
9183         (mono_assembly_load_full_nosearch): copied the function body from
9184         mono_assembly_load_full, without the code to invoke assembly
9185         search hooks.
9186         (mono_assembly_load_full): calls the above new function and if the
9187         assembly is not resolved, invokes the search hooks.
9189         * appdomain.c (mono_runtime_init): restore the global postload
9190         assembly search handlers.
9192 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
9194         * class.c (mono_class_init): Make sure class->methods and class->properties
9195         are never NULL in the generics case.
9197         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
9199 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
9201         * metadata.c (free_generic_class): Disable some code to fix the build.
9203         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
9205         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
9206         from the image mempool.
9208         * metadata.c (free_generic_class): Free more data from the inflated class.
9210         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
9212         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
9213         mempool.
9214         (mono_type_create_from_typespec): Ditto.
9216         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
9217         MonoImage to the caller.
9218         (mono_init_internal): Save the opened image in a global variable.
9219         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
9221         * reflection.c (resolve_object): Fix a leak.
9223         * metadata.c: Fix the freeing of data in the generics caches.
9224         
9225         * metadata.c (free_generic_inst): Comment this out to fix the build.
9226         (free_generic_class): Ditto.
9228         * metadata.c: Free cached generic methods, instantinations and classes when
9229         they are removed from the caches.
9230         (mono_metadata_free_type): Free the type itself.
9232         * class.c: Free the result of mono_class_inflate_generic_type () in a few
9233         places.
9235 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
9237         * boehm-gc.c: restrict managed allocs to __thread supporting
9238         architectures.
9240 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
9242         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
9243         (mono_generic_class_get_class): Fix a leak.
9245         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
9246         mono_metadata_free_type ().
9247         (mono_metadata_inflate_generic_inst): Fix a leak.
9249 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
9251         * mono-debug.c (free_header_data): Fix a leak missed earlier.
9253         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
9254         mempool.
9256         * mono-debug.c (mono_debug_close_image): Fix call to 
9257         g_hash_table_remove ().
9259 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
9261         * icall-def.h: redirect all the string ctor to the managed
9262         CreateString () methods.
9263         * string-icalls.c, string-icalls.h: removed dead code for string
9264         ctors and icalls.
9266 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
9268         * mono-debug.c: Fix memory leaks.
9270 2007-09-14  Jonathan Chambers <joncham@gmail.com>
9272         * threads-types.h: Implement mono_hazard_pointer_set and 
9273         mono_hazard_pointer_clear macros using do/while(0) to fix
9274         compilation with MSVC.
9275         
9276         Code is contributed under MIT/X11 license.
9278 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
9280         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
9281         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
9283 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
9285         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
9286         icalls.
9288 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
9290         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
9291         managed-code allocated as well.
9293 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
9295         * class.c (mono_class_is_assignable_from): Add support for generic variance.
9297 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
9299         * boehm-gc.c: fixed the build after the AOT changes.
9301 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
9303         * wrapper-types.h: Add an ALLOC wrapper type.
9305         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
9306         reference managed allocator methods.
9308 2007-09-12  Marek Safar  <marek.safar@gmail.com>
9310         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
9311         of Type array and not MonoType, a fix suggested by Hari.
9312         
9313 2007-09-12  Jonathan Chambers <joncham@gmail.com>
9315         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
9316         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
9317         
9318         Code is contributed under MIT/X11 license.
9320 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
9322         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
9324 2007-09-12  Marek Habersack  <mhabersack@novell.com>
9326         * image.c (do_mono_image_open): if assembly file fails to open and
9327         MONO_IOMAP is in effect, try to find the path in a
9328         case-insensitive way.
9330         * appdomain.c (mono_runtime_init): do not install postload hooks -
9331         tests show that MS.NET doesn't use anything of that sort to
9332         trigger the AppDomain.AssemblyResolve event.
9333         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
9334         made non-static.
9335         (mono_runtime_init): init portability helpers here.
9337         * assembly.c (mono_assembly_load_with_partial_name): if other   
9338         attempts fail, trigger the AppDomain.AssemblyResolve event handler
9339         to resolve the assembly.
9341         * domain-internals.h: added mono_try_assembly_resolve and marked
9342         it as internal.
9344 2007-09-11  Jb Evain  <jbevain@novell.com>
9346         * object-internals.h (MonoReflectionDynamicMethod): add
9347         a `MonoReflectionType *owner` field. The owner is used
9348         * reflection.c:
9349         (mono_reflection_create_dynamic_method): use the owner of the dynamic
9350         method as the class declaring the dynamic method.
9351         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
9352         dynamic method to the declaring type of the methodbuilder.
9354 2007-09-11  Mark Probst  <mark.probst@gmail.com>
9356         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
9357         rules for calling methods via reflection.
9359 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
9361         * reflection.c (resolve_object): Add support for MonoGenericClass. 
9362         Inflate MonoType's.
9364 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9366         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
9367         provide a managed method that does fast allocations without needing
9368         a managed->unmanaged transition. Boehm GC implementation currently
9369         enabled for ptrfree objects on sane architectures.
9371 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
9373         * marshal.c, marshal.h: exported a couple of useful functions and
9374         added mono_mb_get_label () to easily handle backward branches.
9376 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
9378         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
9380 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
9382         * loader.c (find_method): Fixed the regression introduced while
9383         fixing bug #81466.
9385 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
9387         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
9388         well.
9389         
9390         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
9391         icall.c reflection.c: Pass a MonoGenericContext argument to 
9392         mono_lookup_dynamic_token ().
9394         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
9395         #82744.
9396         
9397 2007-09-09  Robert Jordan  <robertj@gmx.net>
9399         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
9400         for generic methods.
9402         * object.c (mono_object_get_virtual_method): Handle generic methods.
9403         Fixes bug #78882.
9405         Code is contributed under MIT/X11 license.
9407 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
9409         * image.c: fix locking in mono_image_load_file_for_image ().
9411 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
9413         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
9414         used only as a cache: added an icall to fill it.
9416 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
9418         * reflection.h: exposed mono_reflection_free_type_info
9419         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
9420         since mono_reflection_bind_generic_parameters makes a copy of it.
9421         * reflection.c (free_type_info): subinfos should be freed.
9422         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
9423         made non static.
9424         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
9425         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
9426         this fixes #82695 and #81726.
9427    
9429 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
9431         * process.h, process.c:  added support for user profile/info in
9432           ProcessStartInfo. For now only Windows works.
9434 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9436         * metadata.c: consider the generic arguments when comparing
9437         signatures (bug #82614).
9439 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
9441         * cil-coff.h, image.c: updated assembly loader to cope with the
9442         PE32+ 64 bit file format.
9444 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
9446         * assembly.c, class.c, domain.c, loader.c: remove useless
9447         inclusion of cil-coff.h.
9449 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
9451         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
9452         if interface is marked with CoClassAttribute. 
9453    
9454         Code is contributed under MIT/X11 license.
9456 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
9458         * sgen-gc.c: ensure no object from the to space is copied again or finalized
9459         if it's seen twice in major collections.
9461 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
9463         * sgen-gc.c: big objects are not copied to the gray area, but they
9464         need to be considered for scanning, too, if they are brought alive
9465         by an object ready for finalizations or a survived one.
9467 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
9469         * sgen-gc.c: properly account the number of disappearing links when
9470         they are nullified.
9472 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
9474         * sgen-gc.c: share the code to scan the registered roots between the
9475         different types of collections.
9477 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
9479         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
9481 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
9483         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
9484         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
9486 2007-08-28  Mark Probst  <mark.probst@gmail.com>
9488         * security-manager.c (mono_security_manager_get_methods):
9489         LinkDemandSecurityException now has 2 arguments instead of 3.
9491 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
9493         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
9494         platforms which need it.
9496 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9498         * sgen-gc.c: unregister thread data structures with a pthread_key_t
9499         dtor.
9501 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
9503         * threads.c: free the thread static data on thread exit.
9505 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
9507         * class.c: walk the hierarchy to find the generic definition for
9508         a class (fixes runtime part of bug #82498).
9510 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
9512         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
9513         ...
9515         * image.c (mono_image_close): Here. Hopefully fixes #82510.
9517 2007-08-24  Mark Probst  <mark.probst@gmail.com>
9519         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
9521 2007-08-24  Robert Jordan  <robertj@gmx.net>
9523         * appdomain.c: don't perform the ':'->';' substitution on Win32.
9525 2007-08-24  Jb Evain  <jbevain@novell.com>
9527         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
9528         for byref types.
9530 2007-08-24  Mark Probst  <mark.probst@gmail.com>
9532         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
9533         #82286.
9535 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
9537         * assembly.c: Fix a warning.
9538         
9539 2007-08-23  Marek Habersack  <mhabersack@novell.com>
9541         * appdomain.c: parse the <runtime> section looking for the probing
9542         element with the 'privatePath' attribute, which sets additional
9543         directories in which the runtime should look for assemblies.
9545 2007-08-23  Robert Jordan  <robertj@gmx.net>
9547         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
9548         Fixes #82499.
9550 2007-08-23  Martin Baulig  <martin@ximian.com>
9552         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
9553         _mono_debug_init_corlib() and remove it from the header file.
9555 2007-08-23  Martin Baulig  <martin@ximian.com>
9557         * mono-debug-debugger.c
9558         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
9559         don't notify the debugger about it.
9561         * mono-debug-debugger.h
9562         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
9564 2007-08-23  Robert Jordan  <robertj@gmx.net>
9566         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
9567         Code is contributed under MIT/X11 license.
9569 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9571         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
9573 2007-08-22  Martin Baulig  <martin@ximian.com>
9575         * mono-debug.c: Store debugging info on a per-domain basis and
9576         free it on domain unload.  Add support for unloading symbol files.
9578         * mono-debug.h
9579         (MonoDebugList): New typedef.
9580         (MonoSymbolTable):
9581         - add `data_tables and `type_table'.
9582         - replace 'symbol_files' and `num_symbol_files' with a
9583           `MonoDebugList *'.
9584         (mono_debug_data_table): Removed.
9585         (mono_debug_list_add): New public function.
9586         (mono_debug_list_remove): New public function.
9587         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
9588         (mono_debug_init_2_memory): Renamed into
9589         mono_debug_open_image_from_memory().
9590         (mono_debug_close_image): New public function.
9591         (mono_debug_domain_create): Likewise.
9592         (mono_debug_domain_unload): Likewise.
9593         (MONO_DEBUGGER_VERSION): Bump to 60.
9595         * mono-debug-debugger.h
9596         (MonoDebuggerEvent):
9597         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
9598         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
9599         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
9600         - rename `THREAD_CREATED' and `THREAD_EXITED' into
9601           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
9602         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
9603           meaning.
9604         (mono_debugger_add_symbol_file): Removed.
9605         (mono_debugger_add_type): Removed.
9606         (mono_debugger_lookup_type): Removed.
9607         (mono_debugger_lookup_assembly): Removed.
9609         * domain.c
9610         (mono_domain_create): Call mono_debug_domain_create().
9611         (mono_init_internal): Call mono_debug_init_corlib().
9613         * assembly.c
9614         (mono_assembly_close): Call mono_debug_close_image().
9616 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
9618         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
9619         mmap call.
9621 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
9623         * sgen-gc.c: ensure section->pin_queue_end is initialized
9624         correctly when non pinning objects in the section have been found.
9626 2007-08-22  Marek Habersack  <mhabersack@novell.com>
9628         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
9629         containing a list of directories separated by ':'. MSDN docs say
9630         the directories should be separated with ';'. Part of a bugfix for
9631         bug #81446
9633 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
9635         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
9636         it should MonoType and not MonoClass.
9638 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
9640         * culture-info-table.h : regenerated.
9642 2007-08-20  William Holmes  <billholmes54@gmail.com>
9644         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
9645          to call ReplaceFile Kernel32 on windows or in io-layer.
9646         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
9647         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
9648          as an internal call.
9650         Code is contributed under MIT/X11 license.
9652 2007-08-20  Jb Evain  <jbevain@novell.com>
9654         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
9655         and MONO_EXCEPTION_FIELD_ACCESS.
9657         * debug-helpers.[c|h]: new mono_field_full_name function.
9659 2007-08-20  Mark Probst  <mark.probst@gmail.com>
9661         * class.c: Removed class_security_level() and moved it to
9662         security-core-clr.c.
9664         * security-core-clr.c, security-core-clr.h: class_security_level()
9665         is now public and renamed to mono_security_core_clr_class_level().
9666         It also looks for security attributes in the classes a class is
9667         nested in.
9669 2007-08-20  Mark Probst  <mark.probst@gmail.com>
9671         * security-core-clr.c, security-core-clr.h: CoreCLR security
9672         utility functions.
9674         * Makefile.am: Added security-core-clr.[ch].
9676         * security-manager.c, security-manager.h: Functions and enum for
9677         setting and getting the security mode.
9679         * class.c: CoreCLR security checks.
9681 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
9683         * icall-def.h, process.c, process.h: implemented icall to get
9684         user/system processor times.
9686 2007-08-17  Mark Probst  <mark.probst@gmail.com>
9688         * domain.c, threads.c, class-internals.h, domain-internals.h: New
9689         reader-lock-free jit_info_table.
9691 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
9693         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
9695         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
9697         * object-internals.h (MonoException): Add missing _data member.
9699 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
9701         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
9702         checking that only methods with matching qname or fqname are picked
9703         from implemented interfaces.
9705 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9707         * verify.c (do_newarr):added, do type verification of
9708         newarr ops, push the right value on the eval stack.
9709         * verify.c (mono_method_verify): use do_newarr
9712 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9714         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
9715         factored the common code into get_boxable_mono_type, which
9716         is now using mono_type_get_full, this fixed byref related tests.
9718 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9720         * class.c: added mono_type_get_full, this function has the same
9721         behavior of mono_class_get_full but the returned MonoType has
9722         all metadata of the associated token in case of a typespec token.
9723         * class.c: added mono_type_retrieve_from_typespec, used by 
9724         mono_type_get_full to retrieve the token type.
9725         * class.c (mono_class_create_from_typespec): changed to use
9726         mono_type_retrieve_from_typespec.
9727         * class.c (mono_ldtoken): changed to use mono_type_get_full
9728         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
9729         * class-internals.h: exported mono_type_get_full for internal use.
9731 2007-08-16  Jb Evain  <jbevain@novell.com>
9733         * domain.c (supported_runtimes): add entry for
9734         the 'moonlight' runtime version.
9736 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9738         * verify.c (mono_method_verify): small typo sliped in.  
9740 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9742         * verify.c (do_unbox_value): added, do type verification of
9743         unboxing ops
9744         * verify.c (mono_method_verify): use do_unbox_value
9747 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9749         * verify.c (dump_stack_value): fixed typo, was printing string
9750         instead of object on stack.
9751         * verify.c (do_box_value): moved the byref check up as it leads
9752         to invalid code and should be done earlier.
9753         * verify.c: improved error messages for and ldobj
9755 2007-08-15  William Holmes  <billholmes54@gmail.com>
9757         * marshal.c (emit_marshal_custom): Omit the call to 
9758           marshal_native_to_managed when calling native to managed 
9759           and the argument is specified as an out argument.
9761         Code is contributed under MIT/X11 license.
9763 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
9765         * verify.c: fixed the type checks for generics, function pointers and vectors.
9766         Added type verification for ldobj and ldtoken. The verifier
9767         would segfault if header or signature of a method contained references
9768         to non-existant types.
9770 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
9772         * marshal.c (cominterop_get_ccw): Patch from
9773         Bill Holmes to no walk up interface hierarchy. 
9774         All parent methods should be present in the interface for COM.
9775    
9776         Code is contributed under MIT/X11 license.
9778 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
9780         * marshal.c (emit_marshal_com_interface): Patch from
9781         Bill Holmes to handle COM Interfaces as return values
9782         for native->managed calls.
9783    
9784         Code is contributed under MIT/X11 license.
9786 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
9788         * marshal.c (cominterop_get_idispatch_for_object): Implement
9789         for runtime callable wrappers.
9790    
9791         Code is contributed under MIT/X11 license.
9793 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
9795         * pedump.c (main): changed from mono_init to mono_init_from_assembly
9796         so 2.0 types are accessible
9799 2007-08-13  Miguel de Icaza  <miguel@novell.com>
9801         * domain.c (mono_init_internal): Call mono_assembly_load_friends
9802         once we load mscorlib.   Due to the order in which we initialize,
9803         the mono_assembly_load_full routine that loads mscorlib did not
9804         load friends.   We now load it once we load the
9805         mono_defaults.internals_visible_class class. 
9807         * assembly.c: Expose the mono_load_friend_assemblies method.
9809 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
9811         * verify.c: improved the handling of boxing, better
9812         type checking for unary ops and conversion. Fix bug
9813         regarding managed pointer compatibility checking
9815 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
9817         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
9819         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
9821 2007-08-09  Raja R Harinath  <rharinath@novell.com>
9823         * reflection.c (dup_type): Remove.
9824         * class.c (dup_type): Remove.
9825         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
9826         instead of the dodgy 'dup_type'.
9827         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
9828         handle the case where 'dup_type' needed the second argument.
9830 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
9832         * domain.c: Fix a warning.
9834 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
9836         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
9837         checking that methods with the same fqname are not overridden
9838         with a method from an ancestor.
9840 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
9842         * threads.c (free_thread_static_data_helper): Avoid a crash if
9843         thread->static_data is not yet set.
9845 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
9847         * marshal.c: Use correct image when emitting
9848         native wrapper for COM calls.
9849    
9850         Code is contributed under MIT/X11 license.
9852 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
9854         * icall-def.h, security.c, security.h :
9855           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
9857 2007-08-07  Martin Baulig  <martin@ximian.com>
9859         * mono-debug-debugger.h
9860         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
9862         * domain.c (mono_domain_free): Call
9863         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
9865 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
9867         * verify.c (check_underflow, check_overflow): error message now returns IL offset
9868         * verify.c (in_same_block): code should test if either offset is inside the clauses
9869         * verify.c (mono_method_verify): push the exception into the eval stack of exception
9870         and filter blocks
9872 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
9874         * image.c (mono_image_close): Fix a leak.
9876         * object.c (mono_runtime_invoke_array): Avoid using alloca.
9878         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
9880 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9882         * domain.c, threads.c, threads-types.h: fix memory retention issue
9883         with thread static variables not being cleared on domain unload.
9884         Reuse thread static slots after domain unload.
9886 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
9888         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
9889         nullable type.
9891         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
9892         now done in mono_runtime_invoke_array.
9894         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
9895         receiver is a nullable type.
9897         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
9898         generic parameter.
9900 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
9902         * marshal.c: Implement COM Objects as return type for 
9903         managed->unmanaged calls. Added Release calls for COM Object
9904         out/return values in managed->unmanaged calls.
9906         Code is contributed under MIT/X11 license.
9908 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
9910         * threads.h, threads-type.h: move the hazard pointer declarations
9911         to the private header.
9913 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9915         * file-io.c, appdomain.c: memory leak fixes.
9917 2007-08-02  Dick Porter  <dick@ximian.com>
9919         * socket-io.c
9920         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
9921         SO_REUSEADDR setting into io-layer/sockets.c.
9923 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
9925         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
9926         from Object when called on a generic parameter. Fixes #82211.
9928 2007-08-01  Dick Porter  <dick@ximian.com>
9930         * file-io.c (convert_share): Test FileShare values bit-by-bit.
9931         Fixes bug 79250 yet again.
9933 2007-07-30  Martin Baulig  <martin@ximian.com>
9935         Merged the `debugger-dublin' branch.
9937         * mono-debug.h
9938         (MonoDebugDataTable): New typedef.
9939         (MonoDebugMethodAddressList): New typedef.
9940         (MonoDebugWrapperData): Removed.
9941         (MonoDebugSymbolTable): Removed `current_data_table',
9942         `current_data_table_size', `current_data_table_offset'.
9943         (MonoDebugDataItemType): Moved into mono-debug.c.
9944         (MonoDebugMethodJitInfo): Remove `address'.
9945         (mono_debug_data_table): New global variable.
9946         (mono_debug_lookup_method_addresses): New public function.
9947         (mono_debug_find_method): Take a `MonoMethod *', not a
9948         `MonoDebugMethodInfo *'.
9950         * mono-debug.c: Drop support for the old symbol tables.
9952 2007-06-28  Martin Baulig  <martin@ximian.com>
9954         * mono-debug.c (mono_debug_debugger_version): New public variable.
9956 2007-07-31  William Holmes  <billholmes54@gmail.com>
9958         * metadata.c Changed mono_type_create_from_typespec to not insert
9959           the type into the hash map until after
9960           do_mono_metadata_parse_type has completed.
9961         Fixes Bug #82194
9962         Code is contributed under MIT/X11 license.
9964 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
9966         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
9967         generic parameter. Fixes #82211.
9969 2007-07-27  Jb Evain  <jbevain@novell.com>
9971         * pedump.c (dump_metadata, dump_metadata_header): dump
9972         versions contained in the metadata header.
9974 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
9976         * threads.c: register small_id_table with the GC.
9978 2007-07-27  Mark Probst  <mark.probst@gmail.com>
9980         * threads.c, threads.h, class-internals.h, object-internals.h:
9981         Hazard pointers, to be used by lock-free parallel algorithms.
9983 2007-07-26  Dick Porter  <dick@ximian.com>
9985         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
9986         routine on non-windows platforms, as I've not managed to think of
9987         a non-kludgy way of doing this.  Finishes off bug 78739.
9989 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
9991         * object.c: properly setup interface_bitmap in proxy vtables.
9993 2007-07-25  Marek Habersack  <mhabersack@novell.com>
9995         * appdomain.c (get_shadow_assembly_location): do not use TickCount
9996         to create unique shadow copy target directories, use the domain's
9997         serial number instead. Each domain gets a unique target directory
9998         that way.
10000         * domain.c (mono_domain_create): added code to increment domain
10001         shadow copy serial number and cache the value in the current
10002         domain structure.
10004         * domain-internals.h (struct _MonoDomain): added a new field -
10005         shadow_serial to hold the serial number used in generation of
10006         shadow-copy directories. This is to make sure that the directory
10007         name is unique for each and every domain created. We avoid a race
10008         condition with overriding assemblies already in use by other app
10009         domains.
10011 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
10013         * class.c (mono_bounded_array_class_get): fixed memory leak when 
10014         binding generic parameters.
10016 2007-07-24  Raja R Harinath  <rharinath@novell.com>
10018         * metadata.c (do_mono_metadata_parse_generic_class): Use
10019         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
10020         error.
10022 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
10024         * loader.c, class-internals.h, reflection.c: removed the per-method
10025         generics hashtable: we use the global one through the call of
10026         mono_class_inflate_generic_method ().
10028 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
10030         * class.c, metadata.c, class-internals.h: introduce yet another
10031         generics global cache for inflated methods (fixes 98% of the perf
10032         issue in bug #81806).
10034 2007-07-23  Raja R Harinath  <rharinath@novell.com>
10036         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
10037         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
10038         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
10039         return a MonoGenericInst containing (a copy) of those types.
10040         (mono_metadata_inflate_generic_inst): Update to changes.
10041         (mono_metadata_parse_generic_inst): Likewise.
10042         (mono_get_shared_generic_inst): Likewise.
10043         * reflection.c (mono_class_bind_generic_parameters): Likewise.
10044         (mono_reflection_bind_generic_method_parameters): Likewise.
10045         * metadata-internals.h: Likewise.
10046         * icall.c (free_generic_context): Kill.
10047         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
10049         * reflection.c (reflection_methodbuilder_to_mono_method): Use
10050         mono_metadata_type_dup.
10051         * marshal.c (mono_mb_create_method): Likewise.
10053         * metadata.c (mono_metadata_type_dup): Rename from
10054         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
10055         MonoImage.  Handle a few more cases, esp. when no mempool is given.
10056         * marshal.c, metadata-internals.h: Update to changes.
10058 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
10060         * class.c: fixed a small leak for array classes and removed warning.
10062 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
10064         * loader.c (mono_method_get_param_token): Make this work on generic methods.
10065         Return 0x8000000 for return parameters. Fixes #82161.
10067 2007-07-21  Marek Habersack  <grendello@gmail.com>
10069         * appdomain.c (get_shadow_assembly_location): append the current
10070         ticks value to the path. Avoids overwriting the same assemblies by
10071         several threads at the same time.
10073 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
10074         and Raja R Harinath  <rharinath@novell.com>
10076         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
10077         Simplify slightly.
10078         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
10079         property for testing if a method is a generic method definition.
10081 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
10083         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
10085 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10087         * verify.c: used function from private branch, reverted to the one in class.h 
10089 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10091         * verify.c: a typo slipped in and the code wont compile
10093 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10095         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
10096         disabled box instruction as it is doing the wrong thing
10097         improved stack dump messages, now it is easier to debug type related issues
10100 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
10102         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
10104 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10106         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
10107         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
10108         grouped with class and valuetype. This change will simply 
10109         the code as it should be handled just like unmanaged pointers.
10111 2007-07-19  Mark Probst  <mark.probst@gmail.com>
10113         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
10115 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
10117         * verify.c: several stack merge issues fixed, reference comparisons now
10118         check the type size. strict type check now works correctly.
10119         added more uses of IS_MANAGED_POINTER macro.
10120         fixed issues pointed by running the test suite against .net.
10121         
10123 2007-07-19  Mark Probst  <mark.probst@gmail.com>
10125         * class.c, loader.c, class-internals.h: Removed the
10126         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
10127         defines.
10129         * icall.c: Better error checking in some internal reflection
10130         methods.
10132 2007-07-18  William Holmes  <billholmes54@gmail.com>
10134         * filewatcher.c : removed unused variable 'filename' in 
10135           ves_icall_System_IO_FSW_SupportsFSW
10137 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
10139         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
10140         obsolete, removed.
10142 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
10144         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
10145         
10146         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
10148 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
10150         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10151         Implement generics support.
10152         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
10154         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
10155         type_args and method_args arguments.
10156         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
10157         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
10158         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
10160 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
10162         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
10163           It adds a rootimage parameter to mono_reflection_get_type_internal,
10164           adds new function mono_reflection_get_type_with_rootimage and use
10165           the rootimage to resolve the types instead of the current image
10167 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10169         * culture-info-table.h: Forgot to update after r78304.
10171 2007-07-13  Raja R Harinath  <rharinath@novell.com>
10173         * class.c (mono_class_is_open_constructed_type)
10174         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
10176 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
10178         * class.c (mono_bounded_array_class_get):  method fails if used with
10179         an incomplete TypeBuilder enum (no basetype field), fixed it by 
10180         avoiding calculating the size for such array as it cannot be instantiated.
10181         Fix bug #82015
10183 2007-07-12  Raja R Harinath  <rharinath@novell.com>
10185         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
10186         field.
10187         * metadata.c, reflection.c: Update to changes.
10189 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
10191         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
10192         mono_class_is_valid_enum, they are used to valide a enum when loading.
10193         * reflection.c: used new functions to throw TypeLoadException when and
10194         invalid enum is build with TypeBuilder. Fixes #82018
10195   
10196 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
10198         * object.c: forgot commit of mono_class_setup_methods () to access
10199         iface->methods.
10200         * object-internals.h: added a few more handy fields to
10201         MonoIMTCheckItem.
10203 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
10205         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
10206         iface->methods.
10208 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
10210         * class-internals.h, object-internals.h, object.c: IMT-based
10211         interface invocation core from Massimiliano Mantione
10212         (massi@ximian.com) with a reworked arch-specific interface,
10213         bsearch implementation and a few bugfixes and memory savings by me.
10215 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
10217         * class.c (mono_class_create_from_typedef): mono would segfault if 
10218         an enum did not have a __value field. It now throws a TypeLoadException
10219         for such cases. Fix bug #82022
10221 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
10223         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
10225 2007-07-09  Mark Probst  <mark.probst@gmail.com>
10227         * class.c (mono_class_init): If a class is already inited but has
10228         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
10230 2007-07-09  Mark Probst  <mark.probst@gmail.com>
10232         * class.c: Properly handle the case of an unimplemented interface
10233         method.  Fixes: 81673.
10235 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
10237         * class-internals.h, object.c: cleanup patch from massi: use
10238         MonoVTable->interface_bitmap since the vtable interfaces offset array
10239         is going away.
10241 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
10243         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
10244         GetMDStreamVersion icall instead.
10246 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
10248         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
10249         not use mono_dl_build_path() with a full library name: makes
10250         fallbacks to libgaim and libfam work.
10252 2007-07-06  William Holmes  <billholmes54@gmail.com>
10254         * assembly.c: Added a continue statement in probe_for_partial_name when
10255          parse_assembly_directory_name fails.  Fixes : 82002
10257 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
10259         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
10260         and added a verification  for TYPEDBYREF.
10261         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
10262         make native int interchangeable with int32 and some small cleanup and formating.
10263         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
10264         handle byref of byref.
10265         * verify.c (push_local): handle byref of byref.
10266         * verify.c (do_binop): invalid mix of values is unverifiable
10267         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
10268         added visibility checks
10269         * verify.c (field related method): added visibility checks
10270         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
10272 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
10274         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
10275         string.
10277 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
10279         * profiler.c (mono_profiler_load): Fix an off-by-one error.
10281         * marshal.c (emit_marshal_string): When returning a string from managed code,
10282         allways make a copy even for unicode strings. Fixes #81990.
10284 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
10286         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
10287         of byref generic inst types (bug #81997).
10289 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
10291         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
10292         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
10294 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
10296         * marshal.c (emit_marshal_string): Add support for unicode strings in
10297         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
10299 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
10301         * verify.c: field load/store are now verified, missing only access checks now
10303 2007-06-28  Martin Baulig  <martin@ximian.com>
10305         * mono-debug.c (mono_debug_debugger_version): New public variable.
10307 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
10309         * locales.c: When constructing DateTimeFormat or NumberFormat for
10310         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
10311         MonoCultureInfo contructed from the current locale is always
10312         read-only and has UseUserOverride set to true. All MonoCultureInfo
10313         instances returned for GetCultures have both IsReadOnly and
10314         UseUserOverride set to true. Fixes part of bug #81930.
10316 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
10318        * icall-def.h: Update System.__ComObject icalls
10319        * marshal.c: Avoid managed transition (and object creation)
10320        when looking up COM interface in RCW.
10321        * marshal.h: Ditto.
10322        
10323        Code is contributed under MIT/X11 license.
10325 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
10327         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
10328         to avoid crashes during assembly unloading.
10330 2007-06-22  Raja R Harinath  <rharinath@novell.com>
10332         Fix MethodInfo.IsGenericMethodDefinition
10333         * reflection.c (mono_reflection_bind_generic_method_parameters):
10334         Rearrange code to ensure we always uses a generic method definition.
10335         * class.c (mono_class_inflate_generic_method_full): Set
10336         'generic_container' field only for generic method definitions.
10337         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
10338         Use presense of 'generic_container' field as indication of being a
10339         generic method definition.
10341 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
10343         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10345         * object-internals.h: Reflect changes in the layout of the managed Delegate
10346         class.
10347         
10348         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
10349         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
10350         runtime memory used by the dynamic method. Fixes #77146.
10352 2007-06-21  Dick Porter  <dick@ximian.com>
10354         * file-io.h: 
10355         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
10356         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
10357         81767.
10359 2007-06-21  Raja R Harinath  <rharinath@novell.com>
10361         * reflection.c (method_encode_methodspec): Add a tripwire.
10362         * class.c (inflate_generic_type): The fully open generic type is
10363         not the same as the generic type definition.
10365 2007-06-21  Martin Baulig  <martin@ximian.com>
10367         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
10369         * mono-debug-debugger.h
10370         (MonoDebuggerBreakpointInfo): Removed.
10371         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
10372         (mono_debugger_remove_breakpoint): Likewise.
10373         (mono_debugger_breakpoint_callback): Likewise.
10374         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
10376 2007-06-21  Raja R Harinath  <rharinath@novell.com>
10378         * metadata.c (mono_metadata_lookup_generic_class): The fully open
10379         generic type is not the same as the generic type definition.
10380         * class.c (mono_generic_class_get_class): Likewise.
10382 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
10384         * icall.c: The second argument to 
10385         System.Reflection.MethodBase.GetMethodFromHandleInternalType
10386         is a MonoType not a MonoClass.
10388 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
10390         * verify.c: support for function pointers in the verifier
10392 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
10394         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
10396 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
10398         * assembly.c: removed Mono.Data.SqliteClient from the list of
10399         forward-compatible assemblies as it breaks the ABI (bug #81899).
10401 2007-06-19  Raja R Harinath  <rharinath@novell.com>
10403         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
10404         lookup/update with the loader lock.
10405         * reflection.c (mono_class_bind_generic_parameters): No need to
10406         protect mono_metadata_lookup_* with the loader lock.
10407         * class.c (inflate_generic_type): Likewise.
10408         
10409         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
10410         on a generic instantiated type.
10412 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
10414         *verify.c: produce meanfull error messages on verification error
10415         *verify.c: fixed some cases of verification errors reported as validation errors
10416         *pedump.c: fixed the error name array, now it shows validation errors properly
10417         *verify.h: fixed the contant that should be used for verification errors
10419 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
10421         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
10422         for bug #77596, 81858 and 80743 (generics data structures on domain
10423         unload).
10425 2007-06-15  Raja R Harinath  <rharinath@novell.com>
10427         Avoid allocating 'MonoGenericContext' on the heap.
10428         * class-internals (_MonoMethodInflated::context): Make field
10429         inline, not a pointer.
10430         * loader.c (method_from_methodspec): Allocate 'new_context' on the
10431         stack.  Use the context embedded within the inflated method as the
10432         hash key, rather than 'new_context'.
10433         * class.c (inflate_generic_context): Simplify.  Return a struct
10434         rather than allocating on the heap.
10435         (mono_class_inflate_generic_method_full): Update to changes.  Now,
10436         doesn't salt away a copy of the context -- simplifying the
10437         lifetime rules of a 'MonoGenericContext *'.
10438         (mono_method_get_context): Return pointer to embedded context.
10439         (setup_generic_array_ifaces): Allocate temporary context on stack.
10440         * reflection.c (inflate_mono_method): Likewise.
10441         (mono_reflection_bind_generic_method_parameters): Likewise.
10442         Use the context embedded within the inflated method as the hash key.
10444         Avoid a source of allocation of 'MonoGenericContext'.
10445         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
10446         and 'cached_context' fields into embedded 'MonoGenericContext' field.
10447         * class.c: Update to changes.
10448         (mono_generic_class_get_context): Simplify drastically.  Now just
10449         returns a pointer to the field.
10450         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
10451         argument as a const pointer.
10452         (mono_metadata_generic_context_equal): Likewise.
10453         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
10454         Update to changes.
10456 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
10458         * verify.c improved the handling of brtrue/brfalse, factored out common code
10460 2007-06-14  Raja R Harinath  <rharinath@novell.com>
10462         Kill MonoGenericMethod.
10463         * class-internals.h (MonoGenericContext::method_inst): Rename from
10464         'gmethod' and convert to a MonoGenericInst.
10465         (MonoGenericMethod): Remove.
10466         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
10467         * loader.c (method_from_methodspec): Update to changes.  Use a
10468         MonoGenericContext as the key to the hashtable.
10469         * metadata.c (mono_metadata_generic_context_equal): Rename from 
10470         'mono_metadata_generic_method_equal' and take MonoGenericContext.
10471         (mono_metadata_generic_context_hash): Likewise from
10472         'mono_metadata_generic_method_hash'.  Change hash function.
10473         (mono_metadata_load_generic_params): Update to changes.
10474         (mono_get_shared_generic_method): Remove.
10475         * metadata-internals.h (mono_get_shared_generic_method): Remove.
10476         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
10477         (inflate_generic_context): Likewise.
10478         (mono_class_inflate_generic_method_full): Likewise.
10479         (setup_generic_array_ifaces): Likewise.
10480         (mono_class_create_from_typespec): Likewise.
10481         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
10482         (method_encode_methodspec): Update callsite.
10483         (reflection_methodbuilder_to_mono_method): Update to changes.
10484         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
10485         MonoGenericContext as the key to the hashtable.
10486         (inflate_mono_method): Update to changes.
10488         * class-internals.h (MonoGenericMethod::container): Remove.
10489         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
10491 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
10493         * profiler-private.h, profiler.c, profiler.h: added API to profile
10494         exception events.
10496 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
10498         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
10500 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
10502         * verify.c: method invocation is now validated, now we verify parameter types on stack.
10503         Fixed overflow and underflow not aborting the verification process.
10505 2007-06-13  Mark Probst  <mark.probst@gmail.com>
10507         * class-internals.h (MonoStats): Added stats entries for dynamic
10508         code allocations.
10510 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
10512         * loader.c (mono_free_method): Free header->locals and header->clauses.
10514         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
10515         dynamic case.
10517         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
10519         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
10521 2007-06-12  Raja R Harinath  <rharinath@novell.com>
10523         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
10524         the tables.
10526 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10528         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
10530 2007-06-11  Raja R Harinath  <harinath@gmail.com>
10532         MonoGenericMethod on a diet
10533         * class-internals.h (_MonoMethodInflated::reflection_info): Move
10534         here ...
10535         (_MonoGenericMethod::reflection_info): ... from here.
10536         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10537         Update to changes.
10538         * reflection.c (inflate_mono_method): Likewise.
10539         (mono_reflection_bind_generic_method_parameters): Likewise.
10541 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10543         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
10544         *verify.c: factored long ldarg forms to share code with short forms
10546 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
10548         *verify.c: fixed code formating factored some duplicate code
10549         into a new function
10551         *verify.h: fixed binary incompatibility introduced earlier
10553         *pedump.c: fixed formating
10555 2007-06-11  Raja R Harinath  <harinath@gmail.com>
10557         Fix assertion when disassembling Mono.C5.dll
10558         * loader.c (method_from_methodspec): Avoid inflating a method
10559         twice with the same context.  If the methodref is inflated, use
10560         the declaring method instead.
10562         * class.c (mono_class_from_generic_parameter): Fix case similar to
10563         bug #81830 handled below, but for method containers.
10565 2007-06-10  Raja R Harinath  <harinath@gmail.com>
10567         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
10568         get_shared_generic_class.  Directly inflate the instance.
10569         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
10570         (inflate_generic_class): Delete.
10571         (get_shared_generic_class): Delete.  Move setting of
10572         'cached_class' and 'cached_context' ...
10573         * metadata.c (mono_metadata_lookup_generic_class): ... here.
10575         * metadata.c (mono_metadata_lookup_generic_class): Change
10576         signature to take the components of a MonoGenericClass rather than
10577         an allocated MonoGenericClass.  Change semantics to be intern-like.
10578         * reflection.c (mono_class_bind_generic_parameters): Update to
10579         changes.  Make locking region tighter.
10580         * class.c (inflate_generic_class): Update to changes.
10581         (get_shared_generic_class): Likewise.
10582         * metadata-internals.h: Likewise.
10584         * reflection.c (mono_class_bind_generic_parameters): Take and
10585         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
10586         (mono_reflection_bind_generic_parameters): Use
10587         'mono_class_bind_generic_parameters' rather than duplicate the code.
10588         * class.c (mono_bounded_array_class_get): Update to changes.
10589         * object-internals.h: Likewise.
10591         * reflection.c (mono_class_bind_generic_parameters): Only support
10592         parameterizing generic type definitions.  Remove support for other
10593         open types.
10595 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
10597         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
10599         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
10600         in the dynamic case.
10602 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
10604         * threads.c: When cleaning up thread, reset the Background bit.
10605         Fixes bug #81720.
10607 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
10609        * metadata.c: Move variable declarations to top of scope.
10610        * verify.c: Move variable declarations to top of scope.
10612        Code is contributed under MIT/X11 license.
10614 2007-06-08  Raja R Harinath  <rharinath@novell.com>
10616         * reflection.c (mono_class_bind_generic_parameters): Replace
10617         open-coded loop with mono_metadata_inflate_generic_inst.
10619         * class.c (get_shared_generic_class): Don't call
10620         mono_get_shared_generic_inst.  Use the container's own
10621         'class_inst'.
10623         * metadata.c (mono_metadata_load_generic_params): Move
10624         initialization of 'context' field here from ...
10625         * class.c (mono_class_create_from_typedef): ... here, and ...
10626         * loader.c (mono_get_method_from_token): ... here.
10628         * class.c (get_shared_generic_class): Rename from
10629         mono_get_shared_generic_class and make static.
10630         (mono_get_shared_generic_inst): Move to metadata.c.
10631         * loader.c (mono_get_shared_generic_method): Likewise.
10632         * class-internals.h, metadata-internals.h: Update to changes.
10634         Fix #81830
10635         * class.c (mono_class_from_generic_parameter): Don't assume a
10636         generic container owner exists.  Generic containers from monodis
10637         don't have any.
10639 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
10641         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
10642         * verify.h: new typedefs to returns the non-verifiable status
10643         * verify.c: initial implementation of generics, stack merging and object compatibility check
10645 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10647         * class.c, image.c, class-internals.h (MonoImage): class_cache is
10648         a MonoInternalHashTable again (fixed bug in internal hash table
10649         code).
10651 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10653         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
10654         MonoInternalHashTable again (fixed bug in internal hash table
10655         code).
10657 2007-06-06  Mark Probst  <mark.probst@gmail.com>
10659         * class.c, image.c, class-internals.h, domain.c,
10660         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
10661         changes.  Have to figure out what makes them break the SWF
10662         regression.
10664 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10666         * class.c, image.c, class-internals.h (MonoImage): class_cache is
10667         a MonoInternalHashTable now.
10669 2007-06-04  Mark Probst  <mark.probst@gmail.com>
10671         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
10672         MonoInternalHashTable now.
10674 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
10676         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
10677         invoke_impl code.
10679         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
10681         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
10682         dependent trampoline.
10684         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10686         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
10688 2007-05-29  Robert Jordan  <robertj@gmx.net>
10690         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
10692 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
10694         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
10696 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
10698        * marshal.c: Fix interface lookup loops for
10699        cominterop_get_com_slot_for_method and 
10700        cominterop_get_method_interface. Only need to lookup
10701        if type is a class, else use interface type method is on.
10703        Code is contributed under MIT/X11 license.
10705 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
10707         * reflection.c: HasSecurity can be present even if no specially 
10708         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
10709         SecurityAttribute). Fix CAS regression tests on buildbot.
10711 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
10713        * appdomain.c: Add configure checks for header files.
10714        * image.c: Add configure checks for header files.
10715        * file-io.c: Add configure checks for header files.
10716        * debug-mono-symfile.c: Add configure checks for header files.
10717        * threadpool.c: Add configure checks for header files.
10718        * console-io.c: Add configure checks for header files.
10719        * profiler.c: Add configure checks for header files.
10720        * rawbuffer.c: Add configure checks for header files.
10721        * icall.c: Add configure checks for header files.
10722        * rand.c: Add configure checks for header files.
10723        * socket-io.c: Add configure checks for header files.
10725        Code is contributed under MIT/X11 license.
10727 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
10729         * reflection.c (mono_custom_attrs_from_builders): Remove the 
10730         assertion as it breaks the build.
10731         
10732         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
10734         * reflection.c (lookup_custom_attr): Make a copy here too.
10736         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
10737         dynamic images.
10739         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
10740         images.
10742         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
10743         info.
10745 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
10747         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
10748         (load_cattr_value): Ditto.
10750 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
10752         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
10754 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
10756         * threads.c: In "start_wrapper", set apartment_state to MTA if
10757         apartment_state is Unknown and we're running on 2.0 profile or
10758         higher.
10759         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
10760         to main method, then set apartment_state to Unknown on 1.0 profile,
10761         and MTA on 2.0 profile.
10763 2007-05-16  Jb Evain  <jb@nurv.fr>
10765         * class-internals.h (MonoDefaults): Add an attribute_class and
10766           customattribute_data_class.
10767         * domain.c (mono_init_internal): Populate them.
10768         * reflection.c: Use them to remove duplicates. Make a vew
10769         MonoClass variables `static'.
10771 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
10773         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
10774         step in implementing IMT, so that all isinst checks now can go
10775         through the bitmap.
10776         This was needed because vtables for TransparentProxy need to look
10777         like the vtable of the "target" class, so they need to point to
10778         its interface bitmap directly.
10780         * object.c: inside "mono_class_create_runtime_vtable" and
10781         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
10783 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10785         * object-internals.h
10786           culture-info.h : added territory field in MonoCulture and
10787           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
10788         * locales.c : fill territory field above too.
10789         * culture-info-table.h : regenerated.
10791 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
10793         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
10794         Fixes #81599.
10796 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
10798         * object.c: Always initialize apartment, even if 
10799         there is no custom attributes on entry point.
10800         
10801         Code is contributed under MIT/X11 license.
10803 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
10805         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
10806         * metadata.c: If no encoding is set, check for unicode
10807         on class.
10808         
10809         Code is contributed under MIT/X11 license.
10811 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
10813         * threads.c: Handle if mono_thread_current returns NULL 
10814         
10815         Code is contributed under MIT/X11 license.
10817 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
10819         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
10820         in start_wrapper. Added mono_thread_init_apartment_state and
10821         mono_thread_cleanup_apartment_state.
10822         * object.c: Initialize thread apartment state on main thread
10823         by checking for STAThreadAttribute on entry point.
10824         * object-internals.h: Add apartment_state field to MonoThread.
10825         * threads-types.h: Add unmanaged definition of 
10826         System.Threading.ApartmentState, MonoThreadApartmentState.
10827         
10828         Code is contributed under MIT/X11 license.
10829         
10830 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
10832         * class.c: Fix windows build.
10833         * class-internals.h: Fix windows build.
10834         
10835         Code is contributed under MIT/X11 license.
10837 2007-05-08  Robert Jordan  <robertj@gmx.net>
10839         * process.c (CreateProcess_internal):
10840         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
10841         .CreateNoWindow was specified. Fixes #81496.
10843 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
10845         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
10846         step in implementing IMT, replaced it with two compact arrays
10847         (interfaces_packed and interface_offsets_packed) and a bitmap that
10848         is used for isinst checks (interface_bitmap).
10850         * class.c: (compare_interface_ids): compare function to pass to
10851         bsearch when looking for an interface with a given id.
10852         (mono_class_interface_offset): reimplemented using bsearch on
10853         interfaces_packed, getting the offset from interface_offsets_packed.
10854         (print_implemented_interfaces): utility debugging function.
10855         (setup_interface_offsets): reworked to initialize interfaces_packed,
10856         interface_offsets_packed and interface_bitmap.
10858         * object.c: replaced all accesses to "MonoClass.interface_offsets"
10859         with uses of interfaces_packed and interface_offsets_packed.
10861 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
10863         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
10864         mono_class_interface_offset prototype to wrap all accesses to
10865         "MonoClass.interface_offsets".
10867         * class.c: Implemented mono_class_interface_offset, and wrapped all
10868         accesses to "MonoClass.interface_offsets".
10870         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
10871         "MonoClass.interface_offsets".
10873 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
10875         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
10876         GetMethodFromHandle overloads (bug #78637).
10878 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
10880         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
10881         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
10883 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
10885         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
10886         #81498.
10888         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
10889         gracefully.
10890         (mono_custom_attrs_from_index): Ditto.
10892         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
10893         Fixes #81501.
10895 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
10897         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
10898         is now allocated from a mempool.
10900 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
10902         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
10903         caller holds threads_lock, leading to deadlocks. Fixes #81476.
10905 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
10907         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
10908         mono_loader_clear_error () too late. Fixes #81463.
10910 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
10912         * culture-info-table.h : regenerated.
10914 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
10916         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
10917         is missing.
10919 2007-04-25  Dick Porter  <dick@ximian.com>
10921         * Makefile.am: Put the mingw enforced-optimisation back into the
10922         PLATFORM_WIN32 section.
10924 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
10926         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
10927         patch.
10929         * image.c (mono_image_load_module): New API function to load a module reference.
10931         * image.c (load_modules): Load modules lazily. Fixes #80812.
10933         * class.c (mono_class_from_typeref): Use mono_image_load_module.
10934         
10935         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
10937         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
10938         to mono_image_load_module_dynamic.
10940 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
10942         * marshal.c: Fix calling convention for CCW on non-windows
10943         platforms. STDCALL on windows, CDECL everywhere else to work 
10944         with XPCOM and MainWin COM.
10945         
10946         Code is contributed under MIT/X11 license.
10948 2007-04-23  Martin Baulig  <martin@ximian.com>
10950         Fix #80969.
10952         * loader.c
10953         (method_from_memberref): Added `gboolean *used_context' argument.
10954         (mono_get_method_from_token): Likewise.
10955         (mono_get_method_full): Don't insert the method in the cache when
10956         `used_context' is true.
10958 2007-04-23  Raja R Harinath  <rharinath@novell.com>
10960         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
10962         * reflection.c (mono_reflection_bind_generic_parameters): Don't
10963         create new MonoTypes for returned types.
10964         * class.c (mono_generic_class_get_class): Export mono-internal.
10965         * class-internals.h: Update to changes.
10967 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
10969         * threadpool.c, threadpool.h, icall-def.h: patch from
10970         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
10972 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
10974         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
10975         
10976         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
10978         * threads.c (mono_thread_get_stack_bounds): New helper function.
10980         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
10981         Correctly compute stack bounds when attaching. Fixes #81394.
10983 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
10985         * reflection.c: fix handling of doubles in custom attributes
10986         for the arm-fpa format (bug #81368).
10988 2007-04-18  Raja R Harinath  <rharinath@novell.com>
10990         * reflection.c (assembly_add_win32_resources): Mildly relax an
10991         bounds check to let the end pointer point just past the end of the
10992         allocated buffer.  (may fix #81384)
10994 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
10996         * culture-info-table.h : regenerated.
10998 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
11000         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
11001         the thread is aborted early.
11003 2007-04-05  Dick Porter  <dick@ximian.com>
11005         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
11006         FindFirstFile()/FindNextFile() to find entries.  This lets the
11007         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
11008         81038.
11010         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
11011         the parameters of
11012         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
11014 2007-04-04  Martin Baulig  <martin@ximian.com>
11016         * debug-helpers.c
11017         (mono_method_desc_full_match): Add support for nested classes.
11019 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
11021         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
11023 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
11025         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
11026         waiting for too many threads.
11028 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
11030         * environment.c: Fix return value check on uname so we can get the 
11031         executing version on Solaris operating systems.
11033 2007-03-28  Jb Evain  <jbevain@gmail.com>
11035         * class.c (mono_type_get_name_recurse): Complete the
11036         fix for the creation of assembly qualified names for
11037         pointer types. Fixes #81208.
11039 2007-03-27  Dick Porter  <dick@ximian.com>
11041         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
11042         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
11043         changed.
11045         * threads.c
11046         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
11047         the value of ReleaseMutex().
11049 2007-03-27  Dick Porter  <dick@ximian.com>
11051         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
11052         in little-endian order, not network endian, so must be converted
11053         to host endian here.  Fixes bug 80593.
11055 2007-03-22  Jb Evain  <jbevain@gmail.com>
11057         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
11058         qualified names for pointer types. Fixes #81208.
11060 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
11062         * marshal.c: Add support for PreserveSigAttribute. 
11063         
11064         Code is contributed under MIT/X11 license.
11066 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
11068         * process.c: Fix endianness issues. Fixes #81126.
11070         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
11071         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
11073         * image.c (mono_image_lookup_resource): Make this work on big-endian
11074         machines.Change API contract so the caller needs to free the return value.
11075         
11076         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
11077         API change.
11078         
11079 2007-03-14  Martin Baulig  <martin@ximian.com>
11081         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
11082         mono_type_get_desc() as well.
11084 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
11086         * icall.c:  Fix environ access in VS.  
11087         
11088 2007-03-13  Alp Toker  <alp@atoker.com>
11090         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
11091         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
11092         #63841.
11094 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
11096         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
11097         circular references among dynamic methods. Fixes #81091.
11099         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
11101 2007-03-09  Martin Baulig  <martin@ximian.com>
11103         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
11105 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
11107         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
11108         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
11109         
11110         Code is contributed under MIT/X11 license.
11111         
11112 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
11114         * loader.c: Reapply patch for bug #79424.
11116 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
11118         * metadata.c (mono_type_to_unmanaged): Only convert object to
11119         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
11121 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
11123         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
11124         (and incorrectly set) is_reference field from MonoGenericInst.
11126 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
11128         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
11129         a little earlier.
11131         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
11133         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
11135 2007-03-05  Miguel de Icaza  <miguel@novell.com>
11137         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
11138         FileOptions.1 value to mean "temporary", map that to
11139         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
11141         Fixes 80688
11143 2007-03-03  Marek Habersack  <mhabersack@novell.com>
11145         * appdomain.c: implement MS .Net style shadow copying. Copies of
11146         the assemblies are made in a subdirectory of the dynamic base
11147         directory, the assembly names are preserved.
11148         Copy .mdb and .config files along with the assemblies being shadowed.
11150 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
11152         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
11153         (emit_marshal_handleref): Ditto.
11155         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
11156         on Visual C++. Fixes #80671.
11158 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
11160         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
11161         for clone operations.
11163 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
11165         * marshal.c: Fix warnings.
11167 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
11169         * loader.c: allow case-insensitive matching of the dll name
11170         in dllmap handling when prefixed with "i:".
11172 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
11174         * threads.c: Fix #ifdef for dummy_apc function for VS.
11176 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
11178         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
11180 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
11181         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
11182         giving precedence to the methods with a fully qualified name
11183         (InterfaceName.MethodName) when building the interface sections
11184         of the vtable.
11186 2007-02-16  Dick Porter  <dick@ximian.com>
11188         * threadpool.c (append_job): Fix fast-path array handling, so it's
11189         less likely the array will grow exponentially when the load is
11190         heavy.
11192 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11194         * metadata-internals.h, loader.c: fix dllmap lookup order
11195         for non-function maps, too, and prepare for fallback code.
11197 2007-02-12  Robert Jordan  <robertj@gmx.net>
11199         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
11200         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
11201         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
11202         GlobalFree. Fixes a part of bug #77075.
11204 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
11206         * loader.c: implemented typedef parent in field memberref.
11208 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
11210         * marshal.c: Fix warnings and remember to call Release on
11211         IUnknown of RCW.
11212         
11213         Code is contributed under MIT/X11 license.
11215 2007-02-10  Miguel de Icaza  <miguel@novell.com>
11217         * class-internals.h: Add MonoHandleRef definition, and
11218         handleref_class to mono_defaults. 
11220         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
11221         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
11223         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
11224         (do nothing on this stage)
11225         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
11226         (emit_marshal_handleref): New method, used for argument handling
11227         of HandleRefs. 
11229 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
11231         * class.c (mono_class_setup_parent): Lazily init com types.
11232         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
11233         init com types.
11234         * object.c (mono_remote_class_vtable): Lazily init com types.
11235         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
11236         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
11237         * domain-internals.h: Expose mono_init_com_types.
11238         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
11239         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
11240         Add support for COM Callable Wrapper marshalling.
11241         * marshal.h: Add icall definitions.
11242         * gc.c: Handle freeing of CCWs in finalizer code.
11243         
11244         Code is contributed under MIT/X11 license.
11246 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
11248         * reflection.c: changed all the signature encoding code to use
11249         a variable-sized buffer.
11251 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11253         * marshal.c: locking fixes: never take the loader lock
11254         or other runtime locks when holding the marshal lock
11255         (fixes bug#80664).
11257 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
11259         * marshal.c: make the delegate function pointer mapping
11260         work for the moving GC.
11262 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
11264         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
11265         for bug #80618.
11267 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11269         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
11270         gmodule.
11272 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
11274         * threadpool.c: made the code moving-GC safe.
11276 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11278         * assembly.c, boehm-gc.c, class-internals.h, class.c,
11279         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
11280         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
11281         warning cleanup.
11282         * reflection.c: warning cleanup, some threading and moving GC fixes.
11284 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
11286         * class.c, loader.c: create the needed Set/Get/Address array methods
11287         as well as the .ctors in mono_class_init (), fixes bug #80567.
11289 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
11291         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
11292         we doesn't decrease its alignment. Should fix the sparc build.
11294 2007-01-24  Dick Porter  <dick@ximian.com>
11296         * socket-io.c
11297         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11298         Create the returned object if we need to ignore an unsupported
11299         socket option.  Fixes a segfault reported by Atsushi.
11301 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11303         * class.c, object.c: restrict GC-tracked fields to
11304         UIntPtr fields used inside corlib, so we provide better
11305         type info to the GC and also allow broken packing as in
11306         bug #80580.
11308 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
11310         * sgen-gc.c: removed duplicated function.
11312 2007-01-19  Miguel de Icaza  <miguel@novell.com>
11314         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
11315         value that means that the value is not supported, but that we
11316         should not return a failure, but instead report this as a
11317         successful operation.
11319 2007-01-19  Raja R Harinath  <rharinath@novell.com>
11321         Fix tests/bug79956.2.il
11322         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
11323         (mono_generic_class_get_class): If the generic definition in an
11324         enum, copy over other fields related to it.
11326 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
11328         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
11329         genericinst enums (bug #79215).
11331 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
11332         * class.c: Fix bug 80307.
11334 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
11336         * image.c: if the file table is not present, try to load
11337         all the modules, since we don't have info about them
11338         having or not metadata (bug #80517).
11339         * assembly.c: allow mono_assembly_load_references () to
11340         work for netmodules.
11342 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11344         * image.c, metadata-internals.h, object.c: execute module
11345         cctors when running on the 2 runtime if present (bug #80487).
11347 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11349         * icall.c: optimized InitializeArray() on bigendian.
11351 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
11353         * icall.c: fix for the broken ARM FPA double format.
11355 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
11357         * icall.c: handle endian issues for r4 and r8 types, too, in
11358         the InitializeArray() icall.
11360 2007-01-15  Miguel de Icaza  <miguel@novell.com>
11362         * loader.c (mono_loader_error_prepare_exception): Clear the error
11363         once we have extracted the information from it, do this before we
11364         call into the JIT's class loading mechanisms.
11366         * object.c (mono_class_create_runtime_vtable): Do not clear the
11367         loader error before calling mono_class_get_exception_for_failure
11368         as the loader error is needed inside
11369         mono_class_get_exception_for_failure to throw the error (thinko).
11371         Fixes #80521
11372         
11373 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
11375         * reflection.c: align fields rva data so it's faster to load at
11376         runtime.
11378 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11380         Prepare to simplify GenericMethod handling.
11381         * class-internals.h (mono_method_get_context): New accessor function.
11382         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
11383         rather than directly accessing '->context' field.
11385         * class-internals.h (_MonoGenericParam.method): Move ...
11386         (_MonoGenericContainer): ... here.  Add into union with klass field.
11387         * class.c, icall.c, loader.c, metadata.c, reflection.c:
11388         Update to changes.
11390 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
11392         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
11393         the wrapper type enum and reduce relocations.
11395 2007-01-12  Raja R Harinath  <rharinath@novell.com>
11397         * reflection.c (inflate_mono_method): Reuse method instantiation
11398         from the generic method, if available.
11400 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11402         * marshal.c (emit_marshal_variant): Fix conv_arg
11403         type in last commit, based on whether parameter is byref.
11404         
11405 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11407         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
11408         marshalling.
11409         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
11410         MONO_TYPE_OBJECT back for VARIANT support.
11412 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
11414         * marshal.c, marshal.h, icall-def.h: Implement 
11415         Marshal.ReAllocCoTaskMem.
11417 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
11419         * marshal.c: memory retention fixes: use the proper
11420         image cache for runtime_invoke method lookups.
11422 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
11424         * mempool.c: added code to help debug mempool allocations.
11426 2007-01-11  Dick Porter  <dick@ximian.com>
11428         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
11429         support (experimenting with faking it with IP_MTU_DISCOVER for
11430         systems that don't have IP_DONTFRAGMENT.)
11431         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
11432         icall.
11434         * icall-def.h: new System.Net.Sockets.Disconnect icall.
11436         * socket-io.h: Add new fields to MonoSocketAsyncResult
11437         corresponding to the new ones in Socket.cs.
11439 2007-01-11  Raja R Harinath  <rharinath@novell.com>
11441         Fix IronPython regression mentioned in #80249
11442         * metadata.c (do_mono_metadata_parse_generic_class): Clear
11443         'cached_context' field, since it may have been initialized as a
11444         side-effect of metadata parsing.
11446         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
11447         (_MonoGenericClass.cached_class): Move here and rename from lone
11448         remaining field of ...
11449         (_MonoInflatedGenericClass): ... this.  Remove.
11450         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
11451         to changes.
11453         Fix mcs/tests/test-128.cs regression.
11454         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
11455         2007-01-10 change below.
11456         [MONO_TYPE_OBJECT]: Recurse into array case.
11458 2007-01-11  Raja R Harinath  <harinath@gmail.com>
11460         * class-internals.h (mono_get_inflated_generic_class): Remove.
11461         * class.c (mono_get_inflated_generic_class): Remove.
11462         (mono_generic_class_get_class): Rename from
11463         mono_class_create_generic.
11464         (mono_class_from_mono_type) [GENERICINST]: Use it.
11465         * reflection.c, metadata.c: Update to changes.  Use
11466         'mono_class_from_mono_type'.
11468 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
11470         * reflection.c: use passed type when encoding an array element
11471         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
11473 2007-01-09  Robert Jordan  <robertj@gmx.net>
11475         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
11476         result arguments (someDelegate.EndInvoke (unrelatedAres)).
11477         Fixes bug #80392.
11479 2007-01-09  Raja R Harinath  <rharinath@novell.com>
11481         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
11483         * object.c (set_value): Avoid aliasing between type->data.klass
11484         and type->data.generic_class.
11486         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
11488 2007-01-08  Raja R Harinath  <rharinath@novell.com>
11490         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
11491         between type->data.klass and type->data.generic_class.
11493 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
11495         * marshal.c: In MS.NET, StringBuilder objects are not copied by
11496         value in out parameters.
11498 2007-01-08  Raja R Harinath  <rharinath@novell.com>
11500         Simplify invariant for MonoGenericClass::klass field.
11501         * class.c (mono_class_create_generic): Verify 'klass' is null.
11502         * metadata.c (do_mono_metadata_parse_generic_class): Don't
11503         initialize 'klass' field.
11505 2007-01-05  Raja R Harinath  <rharinath@novell.com>
11507         Ongoing work to avoid redundant data and simplify invariants.
11508         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
11509         'generic_class', and change type to a GenericInst.
11510         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
11511         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
11513 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
11515         * class.c : skip io-layer under PLATFORM_WIN32.
11517 2007-01-03  Tor Lillqvist  <tml@novell.com>
11519         Fix #80305: In a bundled executable, look in the bundled exe
11520         assembly to determine the runtime version. Add the possibility to
11521         bundle also the machine.config file.
11522         
11523         * assembly.c (mono_assembly_open_from_bundle): Make
11524         non-static. Allow being called even if we have no bundled
11525         assemblies, and return NULL right away in that case.
11527         * domain-internals.h: Declare mono_assembly_open_from_bundle()
11528         here.
11530         * domain.c (app_config_parse): Take an assembly exe file name as
11531         parameter instead of a config file name. Check for a bundled
11532         config file for that assembly by calling
11533         mono_config_string_for_assembly_file() (see below) before looking
11534         for one in the file system.
11535         (get_runtimes_from_exe): Corrsponding change to call of
11536         app_config_parse().
11537         (get_runtimes_from_exe): Check for bundled assembly exe file first
11538         by calling mono_assembly_open_from_bundle(). If no bundled
11539         assembly exe file is found, call mono_image_open() as before to
11540         look it up in the file system.
11542         * mono-config.c: Add variable bundled_machinec_onfig.
11543         (mono_config_string_for_assembly_file): New function.
11544         (mono_config_for_assembly): Move code snippet that looks for a
11545         bundled assembly .config file into the above new function. Call
11546         it.
11547         (mono_register_machine_config, mono_get_machine_config): New
11548         functions to set and retrieve
11550         * assembly.h: Declare mono_register_machine_config().
11552         * mono-config.h: Declare mono_get_machine_config() and
11553         mono_config_string_for_assembly_file().
11555         * icall.c: No declaration of environ necessary on Win32. It is
11556         declared (as a macro expanding to a function call) in stdlib.h.
11557         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
11558         New internal mono function. Returns the value of
11559         mono_get_machine_config() as a Mono string.
11561         * icall-def.h: Add get_bundled_machine_config().
11563 2007-01-04  Raja R Harinath  <rharinath@novell.com>
11565         Remove redundant field
11566         * class-internals.h (_MonoGenericContext.container): Remove field.
11567         * loader.c (mono_method_get_signature_full): Don't parse a
11568         "container" for a signature parse when the signature is inflated
11569         immediately.
11570         (method_from_methodspec): Likewise, for a generic_inst.
11571         * class.c, metadata.c, reflection.c: Update to changes.
11573 2006-01-04  Raja R Harinath  <rharinath@novell.com>
11575         * class-internals.h (_MonoGenericClass): Rename 'context' field to
11576         'cached_context', and change semantics -- it starts off NULL, and
11577         is initialized on demand.
11578         * class.c (mono_generic_class_get_context): New accessor to
11579         replace 'context' field accesses.
11580         (mono_class_get_context): New helper.
11581         (*): Update to changes.
11582         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
11584 2007-01-03  Miguel de Icaza  <miguel@novell.com>
11586         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
11587         before the memcpy.   Fixes Marshal2 regression.
11589 2007-01-02  Jb Evain  <jbevain@gmail.com>
11591         * blob.h: add a MONO_TYPE_ENUM definition
11592         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
11593         fix the encoding of arrays of enums in custom attributes.
11595         Fixes #79666.
11597 2007-01-01  Miguel de Icaza  <miguel@novell.com>
11599         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
11600         string is null terminated, but only cut the string short if it
11601         overflows the buffer.   
11602         
11603         (mono_string_to_byvalstr): Also fix this routine.   The code here
11604         was not properly terminating a string (it was only terminated
11605         because of the previous catch-all memset). 
11607         I left the memset, because I do not know if applications expect
11608         the runtime to clear this region. 
11610         Fixes #79944.
11612         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
11613         Clear the error before returning to unmanaged code to prevent the
11614         runtime from being confused later on (fixes  80420).
11615         (ves_icall_type_from_name): Always call mono_loader_clear_error
11616         after parsing a type that could have failed.
11617         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
11619         * loader.c (mono_loader_clear_error): Fix indentation.
11621 2006-12-28  Martin Baulig  <martin@ximian.com>
11623         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
11625 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11627         * reflection.c: patch from Rolf Bjarne Kvinge to fix
11628         getting a token for an EnumBuilder.
11630 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
11632         * reflection.c: be more careful in case resource generation
11633         fails to create the data array.
11635 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11637         * sgen-gc.c: write barrier for clone and fix unregister handles.
11639 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11641         * reflection.c: some fixes needed in the generics code for the moving GC.
11643 2006-12-22  Robert Jordan  <robertj@gmx.net>
11645         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
11646         account. Fixes bug #80299.
11648 2006-12-21  Raja R Harinath  <rharinath@novell.com>
11650         Fix WaitHandle usage in delegates.
11651         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
11652         * object.c (mono_wait_handle_new): Use the property set method to
11653         initialize the handle.
11654         (mono_wait_handle_get_handle): New.
11655         * threadpool.c (mono_async_invoke): Use it.
11656         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
11657         Likewise.
11658         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
11660 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
11662         * marshal.c (emit_marshal): Call emit_marshal_variant and
11663         emit_marshal_com_interface when applicable.
11664         (emit_marshal_variant, emit_marshal_com_interface): Add
11665         methods for this case and remove if's from emit_marshal_object.
11666         
11667 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
11669         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
11671 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
11673         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
11674         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
11675         and GlobalFree on Windows. Remove FIXME.
11677 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11679         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
11680         implementation for managed objects.
11682 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
11684         * object.c: implemented code to be used for checking
11685         that no reference field overlaps with non-references.
11687 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11689         * threadpool.c: fix queue code to be compatible with the
11690         moving GC.
11692 2006-12-18  Miguel de Icaza  <miguel@novell.com>
11694         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
11695         in structures by throwing ArgumentNullException.
11697         (emit_marshal_safehandle): Also when they are null parameters.
11699         (emit_marshal_safehandle): Add support for ref
11700         SafeHandles parameters
11702 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11704         * profiler.c: updated to use the mono-dl API instead of
11705         gmodule.
11707 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11709         * profiler.c: updated to use the mono-dl dynamic loading
11710         API instead of gmodule.
11712 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11714         * profiler.c: use readlink, older versions of glib don't have
11715         g_file_read_link ().
11717 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11719         * profiler.c: try to detect the path to mono if libc fails to provide
11720         a useful name (bug #80286).
11722 2006-12-16  Raja R Harinath  <rharinath@novell.com>
11724         Fix #80242
11725         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
11726         instance, use the generic type definition instead.
11727         (ves_icall_Type_GetNestedTypes): Likewise.
11728         * class.c (mono_class_create_generic): Always set the
11729         nested_classes of a generic instance to NULL, even if the generic
11730         type definition has nested types.
11732 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
11734         * marshal.c (mono_string_from_bstr): Revert previous Windows change
11735         and fix on Linux.
11736         
11737 2006-12-15  Miguel de Icaza  <miguel@novell.com>
11739         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
11740         my arguments were in the wrong order.   I also fixed the Windows
11741         version which seems to have had the same issue.
11743         (mono_free_bstr): On Unix, this is g_free.
11744         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
11745         conversions (for the tests in corlib to pass).
11747 2006-12-14  Miguel de Icaza  <miguel@novell.com>
11749         * marshal.c (emit_ptr_to_object_conv): For now, ignore
11750         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
11751         exception if a ref SafeHandle in a struct has changed).
11752         
11753         (emit_struct_conv): Do not perform layout checks for classes
11754         derived from SafeHandle, as those are specially handled. 
11756         (emit_object_to_ptr_conv): Add support for
11757         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
11759         (emit_marshal_safehandle): Implement conversion of return values
11760         of safehandles (MARSHAL_ACTION_CONV_RESULT).
11761         
11762         * threads.c: WaitHandle now is compiled with two different handles
11763         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
11764         for 2.0.
11765         
11766         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
11767         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
11768         these routines to cope with both kinds of fields.
11770 2006-12-12  Miguel de Icaza  <miguel@novell.com>
11772         * metadata.c (mono_type_to_unmanaged): Handle the case where
11773         type->data.klass is a SafeHandle, and in that case, return the
11774         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
11775         MONO_MARSHAL_CONV_SAFEHANDLE. 
11777 2006-12-11  Miguel de Icaza  <miguel@novell.com>
11779         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
11780         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
11781         calling emit_marshal_object.
11783         (emit_marshal_safehandle): Implement marshalling of
11784         SafeHandle parameters (no ref support yet).
11786         (MarshalAction): Document the defines as I implement
11787         them for SafeHandle.
11789         (emit_marshal_object): indentation police.
11791         * class-internals.h: Define MonoSafeHandle.
11792         Add safehandle_class to MonoDefaults type.
11794         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
11795         list of classes to check for fields. 
11797         * domain.c (mono_init_internal): Add SafeHandle to the list of
11798         mono_defaults loaded.
11800 2006-12-15  Raja R Harinath  <rharinath@novell.com>
11802         Fix #80253
11803         * reflection.c (mono_reflection_bind_generic_parameters): If the
11804         generic type definition is a type builder, ensure that it is fully
11805         initialized before instantiating it.  Kill some dead code.
11807 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11809         * object.c: clear the loader_error () before loading
11810         more metadata stuff (bug #80258).
11812 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
11814         * icall.c, icall-defs.h: type modifiers icalls for
11815         parameters and properties.
11817 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
11819         * object.c, icall.c: fixed warnings.
11821 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11823         * marshal.c: fixed a couple of leaks and coding style in a few places.
11825 2006-12-08  Dick Porter  <dick@ximian.com>
11827         * process.c: Cope with NULL ProcessStartInfo arguments on windows
11828         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
11829         80173.
11831 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11833         * process.c: ProcessStartInfo may have only filename set and
11834         arguments can be NULL.
11836 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
11838         * icall.c: fix leak found by Robert Jordan.
11840 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
11842         * marshal.c, marshal.h: generate managed method to access an element
11843         of a multi-dimensional array.
11845 2006-11-30  Paolo Molaro (lupus@ximian.com)
11847         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
11849 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
11851         * icall.c: back out GetFields () fix until the serialization code is
11852         fixed to not depend on the incorrect behaviour.
11854 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11856         * profiler.c: provide defaults if none are set.
11858 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11860         * Makefile.am, attrdefs.h: new public header file with
11861         constants for attributes for use by embedders.
11863 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11865         * icall.c: GetFields () fix for bug #80064.
11867 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
11869         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
11870         removed long unused icalls.
11872 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
11873   
11874         * marshal.c: 
11875                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
11876                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
11877                 can be generated without a delegate class.
11878                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
11879         
11880         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
11882 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11884         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
11885         #80069.
11887 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
11889         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
11890         icall-def.h: added icalls needed by System.GC.
11892 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
11894         * loader.c: ensure the class in catch clauses is handled
11895         correctly for generics methods (fixes bug#79980).
11897 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
11899         * monitor.h, monitor.c: added mono_locks_dump () function
11900         to help debug deadlocks involving managed locks.
11902 2006-11-13  Dick Porter  <dick@ximian.com>
11904         * file-io.c (get_file_attributes): If the file is a symlink try
11905         and get the stat data for the target, but also add the
11906         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
11907         the specs for the windows symlink support, but will probably have
11908         to be reworked when I have test data from a vista machine.  Fixes
11909         bug 79887.
11911 2006-11-13  Dick Porter  <dick@ximian.com>
11913         * gc.c (mono_domain_finalize): 
11914         * marshal.c (mono_delegate_begin_invoke): 
11915         * threadpool.c (socket_io_init, mono_thread_pool_init)
11916         (mono_thread_pool_finish): 
11917         * monitor.c (mono_monitor_try_enter_internal): 
11918         * threads.c (mono_thread_resume, mono_thread_init)
11919         (mono_thread_suspend_all_other_threads)
11920         (mono_thread_execute_interruption): 
11921         * appdomain.c (mono_domain_unload): Check for NULL error returns
11922         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
11923         75733.
11925 2006-11-11  Miguel de Icaza  <miguel@novell.com>
11927         * process.c
11928         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
11929         Only close the handle if the value of the handle is not
11930         INVALID_HANDLE_VALUE.  This just makes the process a bit more
11931         robust.
11933         Improvement for #75733, so that we do not run into this problem. 
11935         
11936         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
11937         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
11938         internal variables.  Fixes #79462 
11939         
11941 2006-11-09  Dick Porter  <dick@ximian.com>
11943         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
11944         Use poll() not select().  Fixes bug 79397.
11946 2006-11-09  Raja R Harinath  <rharinath@novell.com>
11948         Fix #79872
11949         * assembly.c (mono_assembly_load_from_full): Check that the given
11950         image has an assembly manifest.
11952 2006-11-09  Ankit Jain  <jankit@novell.com>
11954         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
11955         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
11956         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
11958 2006-11-07  Dick Porter  <dick@ximian.com>
11960         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
11961         Put the old resolver behaviour back for pre-2.0 profiles.
11963 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
11965         * threadpool.c: precise GC and locking fixes.
11967 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11969         * class.c: don't load types that have an explicit unaligned
11970         managed reference. Provide better info in the TypeLoad exception.
11971         Part of the fix for bug #79744.
11972         * object.c: use the correct check for class type load issues.
11974 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
11976         * class.c: enforce alignment of fields with managed references
11977         even when Pack=1 is forced by the user (bug #77788).
11979 2006-11-03  Dick Porter  <dick@ximian.com>
11981         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
11982         If the address reverse lookup fails, return it as the hostname
11983         anyway.  Fixes bug 79721.
11985 2006-11-03  Dick Porter  <dick@ximian.com>
11987         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
11988         Fix build on Windows.
11990 2006-11-02  Dick Porter  <dick@ximian.com>
11992         * icall-def.h: 
11993         * object-internals.h: 
11994         * exception.c (mono_get_exception_thread_interrupted): 
11995         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
11996         Fixes bug 74525.
11998         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
11999         Check for pending Thread.Interrupt.
12001 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
12002         * loader.c: Fixed bug 79684.
12004 2006-10-27  Dick Porter  <dick@ximian.com>
12006         * file-io.c (get_file_attributes): Force symlinks to directories
12007         to be returned as a regular file.  Fixes bug 79733.
12008 2006-10-26  Dick Porter  <dick@ximian.com>
12010         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
12011         CreateFile to open a directory then we need to set the
12012         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
12014 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
12016         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
12017         friends.
12019 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
12021         * sgengc.c: small cleanup of timer code.
12023 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
12025         * sgen-gc.c: fix some warnings and start adding support for
12026         complete object removal on domain unload.
12028 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
12030         * assembly.c: build_assembly_name should not consider a version
12031         number without build or revision number invalid. Fixes bug #79715.
12033 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
12035         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
12036         call kernel32 function OutputDebugString directly.
12037         
12038         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
12039         
12040 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
12042         * reflection.c: small cleanup, using a function to insert a MonoString
12043         in the string heap.
12045 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
12047         * reflection.c: moving GC fixes.
12049 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
12051         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
12052         all the objects with finalizers belonging to an unloading appdomain.
12054 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
12056         * sgen-gc.c: added ability to allocate even when the nursery is fully
12057         pinned and fixed a couple of bugs.
12059 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
12061         * threads.h: Revert the last change for now.
12063         * threads.h (mono_thread_get_pending_exception): Rename this to
12064         mono_thread_get_undeniable_exception ().
12066 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
12068         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
12069         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
12070         when fname does not refer to valid assembly. This result in a more
12071         meaningful error message.
12072         * exception.c: added mono_get_exception_bad_image_format2 which 
12073         constructs a BadImageFormatException using the ctor taking a custom
12074         message and the file name. Passing in a NULL msg results in a default
12075         message.
12076         * exception.h: define mono_get_exception_bad_image_format2 function.
12077         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
12078         when file name pointed to an invalid IL image. Use 
12079         mono_get_exception_file_not_found2 to construct FileNotFoundException,
12080         as this results in a more meaningful error message.
12082 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
12084         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
12085         #79465.
12087 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
12089         * metadata.c (mono_type_size): Change the align parameter to guint32 for
12090         consistency with the other _size functions.
12091         (mono_type_stack_size): Ditto.
12093         * class.c object.c icall.c: Fix warnings caused by the above change.
12095         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
12097         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
12099         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
12101 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
12103         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
12104         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
12105         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
12106         threadpool.h, threads-types.h: mark more internal functions.
12108 2006-10-11  Dick Porter  <dick@ximian.com>
12110         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
12111         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
12112         reproduce the bug even before applying the fix.)
12114 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
12116         * reflection.c: allow retrieving attributes for arguments in generic
12117         methods (bug #79241).
12119 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
12121         * debug-mono-symfile.c: properly check fopen () result (found by
12122         coverity).
12124 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
12126         * reflection.c: make error message clearer and fixed two
12127         issuelets found by Coverity.
12129 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
12131         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
12133 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
12135         * object-internals.h, gc-internal.h, profiler-private.h:
12136         mark internal functions.
12138 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
12140         * reflection.c: put data in the text section.
12141         * icall.c: recognize more types in type_from_typename ().
12142         * process.c, marshal.c: added some GC FIXMEs.
12144 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
12146         * loader.c: check for NULL before initializing.
12148 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
12150         * gc.c (finalizer_thread): Use a non-alertable wait here.
12152         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
12153         until the correct solution is found.
12155 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
12157         * reflection.c (mono_module_get_object): Avoid an assert when operating on
12158         modules with no metadata. Fixes #79596.
12160         * image.c (load_metadata_ptrs): Put back the error message when
12161         the #- heap is encountered since the support is not complete yet.
12163 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
12165         * gc.c: do not allow the user to SuppressFinalize () a
12166         delegate because it would leak the trampoline if present.
12168 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
12170         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
12171         PropertyPtr table.
12173 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
12175         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
12177         * metadata.c (mono_metadata_get_param_attrs): Ditto.
12179         * row-indexes.h: Add definitions for *Ptr tables.
12181         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
12183         * metadata.c (mono_metadata_translate_token_index): New helper function to
12184         translate table indexes used in uncompressed metadata.
12185         (mono_metadata_decode_table_row): Ditto.
12186         (mono_metadata_decode_table_row_col): Ditto.
12188         * metadata.c: Add table schema for *Ptr tables.
12190         * class.c loader.c: Use the new helper function to access the affected metadata
12191         tables.
12192         
12193         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
12194         #38532.
12195         
12196 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
12198         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
12199         sequences which can be unbounded in size. Fixes #79583.
12201 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
12203         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
12204         static initialization.
12206         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
12208         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
12210         * domain.c (mono_domain_free): Free up type_init_exception_hash.
12212         * object.c (mono_runtime_class_init): Implement correct semantics when a static
12213         ctor fails, i.e. throw the same exception on subsequent accesses.
12214         
12215 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
12217         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
12218         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
12219         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
12220         Handle marshalling of interfaces and VARIANTs contained in structs.
12221         
12222         Code is contributed under MIT/X11 license.
12223         
12224 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
12226         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
12227         
12228         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
12229         mempool.
12231 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12233         * console-io.c: ignore previous SIGINT handler.
12235 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
12237         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
12238         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
12239         #79460, #79461, #79485.
12241         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
12243         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
12244         #79217.
12246 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
12248         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
12249         could be generated from it.
12251 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
12253         * rand.c: fix read loop to correctly handle EINTR.
12255 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
12257         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
12258         internal calls are defined to keep methods closer to the declaring
12259         type and allow a significant reduction in runtime relocations and
12260         memory usage.
12262 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
12264         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
12265         exception message to have FileNotFoundException use the default
12266         assembly load error message. Fixes bug #79426.
12267         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
12269 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12271         * threadpool.c: (start_thread_or_queue) use the root domain when
12272         creating the thread instead of the async object one.
12274 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
12276         * class.c, object.c, class-internals.h, reflection.c:
12277         for arrays, store element_size inside MonoClass (speedup
12278         for array object creation).
12280 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
12282         * icall.c: fixed CodeBase to use the file name and not the module
12283         name (bug #79365).
12285 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
12287         * mono-debug.c, mono-debug.h: export find_method as
12288         mono_debug_find_method ().
12290 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
12292         * debug-helpers.c, class-internals.h: added a few functions useful
12293         when debugging under gdb.
12295 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12297         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
12298         characters that need special handling.
12300 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
12302         * mono-config.c: make the os/cpu specification more flexible,
12303         allowing lists and negation.
12305 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
12307         * marshal.c: COM Interop fixes. Handle case where method->klass.
12308         is interface. Handle BSTR/MonoString when null. Use CDECL as 
12309         calling convention on non-windows platforms. This is for
12310         compatibility with XPCOM and MainWin COM.
12311         
12312         Code is contributed under MIT/X11 license.
12313         
12315 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
12317         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
12318         correctly. Fixes #79217.
12320         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
12322 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
12324         * mono-config.c: allow both an os and cpu attribute for dllmap
12325         and dllentry elemnets to enable a single config file to be used
12326         for multiple architectures.
12328 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
12330         * loader.c: MonoLoaderError was cleared too soon on load failure.
12331         Fixes bug #79424.
12333 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
12335         * icall.c: use the defining class vtable when accessing a
12336         static field, not a pobblibly derived class.
12338 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
12340         * icall.c string-icalls.c: Remove references to unicode.h.
12342         * unicode.h unicode.c Makefile.am: Remove these unused source files.
12344         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
12346         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
12347         indicating the image where custom marshaller types should be looked up.
12348         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
12349         custom marshallers, instead of corlib. Fixes #79425.
12351 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
12353         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
12355 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
12357         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
12358         Implement Environment.ProcessorCount.
12359         
12360         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
12361         Implement Environment.ProcessorCount.
12362         
12363         * icall.c: 
12364         Add Environment.ProcessorCount icall.
12365         
12366         Patch by Jason McFall.
12368 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12370         * assembly.c: don't append .exe/.dll when the filename already contains
12371         one of those extensions.
12373 2006-09-12  Martin Baulig  <martin@ximian.com>
12375         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
12376         to array interfaces.
12378 2006-09-11  Martin Baulig  <martin@ximian.com>
12380         * reflection.c (mono_image_build_metadata): Create the
12381         MethodImpl's after emitting all types and methods, so we don't
12382         need another fixup pass for them.
12384 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
12386         * class.c (mono_class_from_name_case): Fix regression introduced by the last
12387         change.
12389 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
12391         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
12392         unload.
12394 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
12396         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
12397         args is not set. Fixes #78926.
12399 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
12401         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
12403         * image.c (load_class_names): Move this to class.c, and rename it to 
12404         'mono_image_init_name_cache'.
12405         (load_modules): Fix a warning.
12407         * class.c icall.c image.c: Initialize image->name_cache lazily.
12409         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
12410         on its name using information in the AOT file.
12412         * class.c (mono_class_from_name): Use the new hook function.
12414 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
12416         * reflection.c (mono_param_get_objects): Handle enum default parameter values
12417         correctly.
12419         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
12420         Fixes #79289.
12421         
12422 2006-09-06  Martin Baulig  <martin@ximian.com>
12424         * icall.c (mono_lookup_internal_call): Small fix.
12426 2006-09-05  Raja R Harinath  <rharinath@novell.com>
12428         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
12429         double g_free.
12431 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
12433         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
12434         when --debug is specified.
12436 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
12438         * class.c (setup_generic_array_ifaces): Fix a warning.
12440 2006-09-04  Miguel de Icaza  <miguel@novell.com>
12442         * Temporarily remove the patch to assemly.c that checks the
12443         assembly versions as it breaks our gacutil.
12445 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
12447         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
12449         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
12450         a net 1.0 runtime.
12452         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
12453         created using the default ctor. Fixes #79152.
12454         (mono_string_builder_to_utf16): Ditto.
12456 2006-09-01  Martin Baulig  <martin@ximian.com>
12458         Fix handling of the generic array interfaces.
12460         * class-internals.h
12461         (MonoDefaults): Removed `generic_array_class' and added
12462         `generic_ilist' class.
12464         * class.c
12465         (mono_bounded_array_class_get): Add the new generic array interfaces.
12466         (setup_generic_array_ifaces): New static method; create vtable
12467         entries for each method in the generic array interfaces.
12469         * metadata.c
12470         (select_container): Allow "parent-less" generic methods.
12472         * marshal.c
12473         (mono_marshal_get_generic_array_helper): New public method.
12475         * icall.c
12476         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
12477         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
12478         moved the interncall into System.Array.
12480 2006-09-01  Raja R Harinath  <rharinath@novell.com>
12482         A few more cases of avoiding work on types with ->byref set.
12483         Has the real fix for #79238
12484         * icall.c (is_generic_parameter): New helper.
12485         (ves_icall_Type_GetGenericParameterPosition): Use it.
12486         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
12487         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
12488         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
12489         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
12490         reference types.
12491         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
12492         reference types.
12493         (ves_icall_Type_get_IsGenericInstance): Likewise.
12494         (ves_icall_Type_get_IsGenericType): Likewise.
12496 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
12498         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
12499         class if possible.
12501         * mempool.h (mono_mempool_get_allocated): New helper function.
12503         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
12504         change.
12506         * mempool.c: Fix warnings and the calculation of stats.
12508         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
12510         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
12512         * loader.c (mono_get_method_from_token): Update method_count stat.
12514         * class-internals.h (MonoStats): Add some stats.
12516 2006-08-31 Robert Jordan  <robertj@gmx.net>
12518         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
12519         with managed variants.
12520         All code is contributed under the MIT/X11 license.
12521         
12522 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
12524         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
12525         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
12527         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
12529         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
12530         with cycles in classes.
12532         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
12534         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
12535         missing a [MarshalAs] directive. Fixes #79203.
12537         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
12538         klass->marshal_info. Fixes #79217.
12540 2006-08-30  Martin Baulig  <martin@ximian.com>
12542         Committing a patch from Joachim Ante <joe@otee.dk>:
12543         Add support for binary data symbol stores.
12545         * debug-mono-symfile.c
12546         (mono_debug_open_mono_symbol_file): Renamed into
12547         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
12548         arguments.
12550         * mono-debug.c
12551         (mono_debug_open_image): Added `raw_contents' and `size' args.
12552         (mono_debug_init_2_memory): New public function.
12554 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
12556         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
12558 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12560         * appdomain.c: implement support for ShadowCopyFiles.
12562 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
12564         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
12565         when value is NULL (and should remove CID #51).
12567 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12569         * image.c: moved 2 functions to ../utils.
12571 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
12573         * gc.c: cope with the target object of a GC handle being NULL
12574         (bug #78877).
12576 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
12578         * class.c: recursively check parent's explicit implementations
12579         of interface methods (fixes bug #79125).
12581 2006-08-19  Miguel de Icaza  <miguel@novell.com>
12583         * filewatcher.c: Avoid warnings when building, do not redefine
12584         constants that are defined.
12586         Remove warnings.
12588 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12590         * image.c: don't fail when the link points to an absolute path.
12592 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
12594         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
12595         Fix CID #3.
12597 2006-08-17  Miguel de Icaza  <miguel@novell.com>
12599         * image.c (full_path): A new method used to obtain the actual path
12600         of an assembly even in the presence of symbolic links.  
12602         This is necessary for the case where we are running a binary that
12603         has been GACed, but we are using the "published" path name
12604         ($prefix/mono/1.0/blah.exe) which happens to point to the real
12605         file in the GAC.
12607         This was the source of the failure for the `xsp' command with the
12608         recent AppDomain changes, as far as the runtime was concerned,
12609         there were two different assemblies: $prefix/mono/1.0/blah.exe and
12610         $prefix/mono/gac/blah/version/blah.exe.
12612         (do_mono_image_open): use full path
12614 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12616         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
12618 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
12620         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
12621         domain_id is supplied. Fix CID #241 and corlib's unit tests.
12623 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12625         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
12626         small structures. Fixes #78990.
12628 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
12630         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
12632         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
12634 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12636         * appdomain.c:
12637         * marshal.c: don't load all the assemblies from a domain into newly
12638         created ones. The new domains might have different rules and load
12639         assemblies from different locations. Fixes bug #76757.
12641         Patch by Lluis. Conflicts resolved by Brian Crowell.
12643 2006-08-16  Alp Toker  <alp@atoker.com>
12645         * socket-io.c: First half of the fix for #79084.
12646         Set sa_size to the length of the content, not that of the struct.
12647         Don't add NULL suffix to the content, this should be done in
12648         managed code if needed.
12650 2006-08-14  Raja R Harinath  <rharinath@novell.com>
12652         Fix part of #79012
12653         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
12654         mono_metadata_parse_type returns NULL.
12656 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
12658         * normalization-tables.h : new file for string normalization data.
12659         * locales.c, locales.h, icall.c :
12660           added load_normalization_resource() for string normalization,
12661           and icall as well.
12662         * Makefile.am : added normalization-tables.h to the sources.
12664 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
12666         * marshal.c: Add more helper functions to reduce code duplication and use them
12667         everywhere.
12669 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
12671         * marshal.c: Fix non-x86 stdcall warnings.
12672         
12673         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
12674         them everywhere.
12676 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
12678         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
12679         type check on multi-dimensional arrays. Fixes #79000.
12681 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
12683         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
12684         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
12685         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
12686         * class-internals.h: add is_com_object to class structure.
12687         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
12688         null checks to COM object marshalling. Fix .ctor call on RCW.
12689         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
12690         
12691         All code is contributed under the MIT/X11 license.
12693 2006-08-09  Dick Porter  <dick@ximian.com>
12695         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
12696         racing mono_monitor_allocator_lock() somewhere, so don't delete
12697         the critical section for now.  Found by running and exiting
12698         monodevelop.
12700 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
12702         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
12703         (ves_icall_System_ComObject_FindInterface): Ditto.
12704         (ves_icall_System_ComObject_CacheInterface): Ditto.
12706         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
12707         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
12709 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12711         * threadpool.c: treat pipes from process asynchronous reads as sockets
12712         when reading from them, so we get select/poll or epoll to wait for
12713         data.
12715 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
12717         * loader.c: Fix a typo (CID #233) in the null check.
12719 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
12721         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
12722         Hopefully fixes #78949.
12723         
12724         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
12725         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
12726         bytes. Fixes #78972.
12728 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12730         * filewatcher.c: we need to set errno here.
12732 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12734         * filewatcher.c: let Win32Exception get the error value.
12736 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12738         * filewatcher.c: translate errno into win32 errors for Win32Exception
12739         to know what happened.
12741 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
12743         * threadpool.c: Fix more warnings.
12745         * assembly.c (search_loaded): Fix warnings.
12747         * threadpool.c (mono_thread_pool_finish): Fix warnings.
12748         (mono_async_invoke): Ditto.
12750 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
12752         * object.c (mono_remote_class_vtable): Need to create proxy vtable
12753         entries for __ComObject type in addition to ComImport types.
12754         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
12755         about hash table.
12756         
12757         All code is contributed under the MIT/X11 license.
12759 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
12761         * image.c: avoid tentative loading of modulerefs that contain
12762         no metadata (P/Invoke library names).
12764 2006-07-28  Dick Porter  <dick@ximian.com>
12766         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
12767         mono_loader_lock() somewhere, so don't delete the critical section
12768         for now.  Found by running and exiting monodevelop.
12770 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12772         * filewatcher.c: define the inotify syscalls when we're building on
12773         linux and have sys/syscall.h. The build system might not have support
12774         for inotify but the target system might have it.
12776 2006-07-26  Miguel de Icaza  <miguel@novell.com>
12778         * domain.c: Documentation updates.
12780         * loader.c (mono_free_method): Do not release the method
12781         information if we are being profiled, as profilers will use this
12782         information at shut down to present some data to the user.
12784         This is needed so that the profiler does not crash, as the
12785         profiler tends to keep MonoMethods around, and they might become
12786         invalid if we free these.
12788         (mono_get_method_constrained): Return the original CIL stream
12789         method as well, so verification can be performed against it.
12791 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12793         * filewatcher.[ch]: support for inotify file system watcher.
12794         * icall.c: add new internal calls for the inotify file system watcher.
12796 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12798         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
12799         #78888.
12801 2006-07-20  Dick Porter  <dick@ximian.com>
12803         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
12804         warning.
12806 2006-07-20  Dick Porter  <dick@ximian.com>
12808         * threads.c (start_wrapper): Do the thread cleanup while we still
12809         hold a reference to its object.  Fixes bug 78123.
12811 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
12813         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
12814         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
12815           "managed-to-managed".
12816         * icall.c: Redirect string constructors that take sbyte* to
12817           ves_icall_System_String_ctor_RedirectToCreateString.
12818         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
12819           to CreateString () methods with matching signature.
12820         * reflection.c: Use original security informations for
12821           MONO_WRAPPER_MANAGED_TO_MANAGED.
12822         * security-manager.c: Use original security informations for
12823           MONO_WRAPPER_MANAGED_TO_MANAGED.
12824         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
12825           that is a placeholder and only its address should be used.
12826         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
12827           that is a placeholder and only its address should be used.
12829 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
12831         Begin implementing COM Interop.
12832         * appdomain.c: Increment corlib version.
12833         * class.c: Set ComImport classes' parent to __ComObject.
12834         * loader.c: Mark cominterop methods as such.
12835         * domain.c: Add __ComObject class to MonoDefaults structure.
12836         * image.c: Add 2 hashtables to the image for COM Interop related methods
12837         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
12838         using the mempool allocator
12839         
12840         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
12841         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
12842         declaration for mono_metadata_type_dup_mp.
12843         
12844         * debug-helpers.c: Added strings for two additional wrapper types
12845         * object.c: Create proxy objects for ComImport classes
12846         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
12847         and added __ComObject class to MonoDefaults structure.
12848         
12849         * object-internals.h: Finish MonoRealProxy definition, and add definition of
12850         MonoComInteropProxy and MonoComObject.
12851         
12852         * marshal.c: Added support for COM Interop
12853         (signature_cominterop): Converts managed signature to corresponding
12854         unmanaged COM signature.
12855         (cominterop_get_function_pointer): gets unmanaged function pointer via
12856         COM object vtable
12857         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
12858         (cominterop_get_method_interface): returns interface type that method is defined on
12859         (mono_mb_emit_cominterop_call): emits native call to function pointer
12860         gotten from vtable
12861         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
12862         that matches signature of unmanaged function.
12863         (cominterop_get_native_wrapper): wrapper around adjusted method call.
12864         (cominterop_get_invoke): forwards call from proxy to __ComObject
12865         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
12866         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
12867         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
12868         
12869         * marshal.h: Added Marshal icall declarations.
12870         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
12871         so we can access them in finalizer
12872         
12873 2006-07-14  Dick Porter  <dick@ximian.com>
12875         * object.c (mono_type_initialization_cleanup): Fix a race
12876         condition by temporarily commenting out the critical section
12877         deletion.
12879 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
12881         * reflection.c (create_custom_attr): Fix some warnings.
12882         (create_custom_attr_data): Ditto.
12883         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
12884         types. Fixes #78855.
12886 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
12888         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
12890         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
12892 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
12894         * reflection.c (resolve_object): Add support for DynamicMethod.
12896         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
12897         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
12899 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
12901         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
12902         don't leak GPtrArray's pdata has we have no use (nor free) for it.
12904 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
12906         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
12907         Fixes #77888.
12909 2006-06-30  Raja R Harinath  <rharinath@novell.com>
12911         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
12912         slightly: remove a shadow local variable.
12914 2006-06-29  Raja R Harinath  <rharinath@novell.com>
12916         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
12917         definition that introduces the virtual function slot.
12918         Also fix Coverity #105.
12920 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
12922         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
12923         for dynamic assemblies. Fixes #78724.
12925 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
12927         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
12928         Fixes #78722.
12930 2006-06-21  Martin Baulig  <martin@ximian.com>
12932         * reflection.c
12933         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
12934         fixes #76484.
12936 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
12938         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
12940 2006-06-20  Raja R Harinath  <rharinath@novell.com>
12942         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
12943         nor TYPEREFs.
12944         * class.c (mono_class_create_from_typespec): Add 'context' argument.
12945         Inflate result if necessary.
12946         (mono_class_get_full): Remove old version.  Rename from
12947         'mono_class_get' and add 'context' argument.  Pass it to
12948         ..._create_from_typespec.
12949         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
12950         (mono_ldtoken): Revert change below.
12952 2006-06-20  Martin Baulig  <martin@ximian.com>
12954         * class.c (mono_ldtoken): Don't pass the generic context to
12955         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
12957 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
12959         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
12960         and later freeing it. Fixes #78638.
12962 2006-06-15  Miguel de Icaza  <miguel@novell.com>
12964         * icall.c (mono_class_get_throw): Revert over-zealous error
12965         throwing, the caller for mono_class_get_throw will cope with
12966         errors when classes are not properly initialized already.
12968         The code still copes with loader exceptions though.
12970         Fixes the regression in reftype1 and reftype3 from the CAS tests.
12971         
12972 2006-06-14  Miguel de Icaza  <miguel@novell.com>
12974         Fixes the `make run1' version of RuntimeAbort (to be commited,
12975         source is in Bugzilla).
12976         
12977         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
12978         FALSE on class loading failure instead of returning true.
12980         * class.c (mono_class_create_from_typedef): It is possible for
12981         mono_metadata_interfaces_from_typedef_full to fail if a class is
12982         not found, cope with this.
12983         
12985 2006-06-14  Dick Porter  <dick@ximian.com>
12987         * socket-io.c: 
12988         * process.c: Fix a bunch of signed/unsigned warnings from gcc
12989         4.1.1
12991 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
12993         * culture-info-table.h : oops, forgot to make it nsync with r61548.
12995 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12997         * icall.c: Another fix for building mono in Visual Studio.
12999 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13001         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
13002         
13003 2006-06-09  Martin Baulig  <martin@ximian.com>
13005         * debug-mono-symfile.c: Put this back and really fix it this
13006         time. Sorry for all the trouble.
13008 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
13010         * icall.c (mono_class_get_throw): Fix a warning.
13011         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
13012         ReflectionTypeLoadException if needed. Fixes #78606.
13014         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
13015         (mono_class_init): Ditto.
13017         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
13018         ref_only exceptions.
13019         (mono_loader_clear_error): Make this work even if there is no error.
13021 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
13023         * object-internals.h marshal.c marshal.h icall.c: Implement method 
13024         Marshal.GetComSlotForMethodInfo using internal call.
13026 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
13028         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
13029         a function for signalling it.
13031         * class.c (mono_class_from_typeref): Use the new kind of loader error when
13032         a referenced assembly is not found.
13034         * loader.c (mono_loader_error_prepare_exception): Add support for 
13035         LOADER_ERROR_ASSEMBLY. Fix formatting.
13037 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
13039         * domain.c appdomain.c class-internals.h marshal.c: Add support 
13040         for VARIANT marshalling on windows and increment corlib version
13041         since Variant struct was added.
13043 2006-06-03  Miguel de Icaza  <miguel@novell.com>
13045         * debug-mono-symfile.c: Revert Martin's previous patch which broke
13046         stack trace line information:
13048         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
13049         (Martin) when looking up B which is between A and C, return A not C.
13051         Bug is #78573.
13053         Thanks to Alexander Olk for tracking this down.
13055 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
13057         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
13058         
13059         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
13060         avoid clobbering its value.
13061         (mono_string_to_lpstr): Fix a warning on windows.
13063 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
13065         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
13067         * reflection.c loader.c: Removed references to 'dummy' flag.
13069         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
13071         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
13072         it gets GC tracking.
13074         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
13075         GC tracking.
13076         
13077         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
13079         * marshal.c threadpool.c: Update callers of mono_async_result_new.
13081         * appdomain.c: Bump corlib version.
13083 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
13085         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
13086         CEE_STIND_REF when working with object references.
13088 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
13090         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
13091         Fixes #78539.
13093 2006-05-30  Miguel de Icaza  <miguel@novell.com>
13095         * loader.c (method_from_memberref): Fix argument value for
13096         mono_loader_set_error_method_load (I was passing the MonoClass
13097         instead of the class name char *).
13099 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
13101         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
13102         CEE_STIND_REF when working with object references.
13104 2006-05-30  Martin Baulig  <martin@ximian.com>
13106         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
13107         mono_method_full_name() change and replace the ':' with a '.'
13108         here.
13110 2006-05-30  Martin Baulig  <martin@ximian.com>
13112         * debug-mono-symfile.c
13113         (mono_debug_symfile_lookup_location): Fix the algorithm:
13114         when looking up B which is between A and C, return A not C.
13116 2006-05-29  Martin Baulig  <martin@ximian.com>
13118         * mono-debug.h
13119         (MonoDebugMethodInfo): Make the typedef public.
13120         (MonoDebugSourceLocation): New public struct.
13122         * mono-debug.c
13123         (mono_debug_source_location_from_address): Removed.
13124         (mono_debug_source_location_from_il_offset): Removed.
13125         (mono_debug_il_offset_from_address): Removed.
13126         (mono_debug_address_from_il_offset): Removed.
13127         (mono_debug_lookup_method): New public function.
13128         (mono_debug_lookup_source_location): New public function; replaces
13129         the old mono_debug_source_location_from_*() functions; see the
13130         inline documentation.
13131         (mono_debug_free_source_location): New public function.
13132         (mono_debug_print_stack_frame): New public function; see the
13133         inline documentation.
13135         * debug-mono-symfile.c
13136         (mono_debug_find_source_location): Renamed into
13137         mono_debug_symfile_lookup_location(); only take a
13138         `MonoDebugMethodInfo *' and an `offset' argument; added inline
13139         documentation.
13140         (mono_debug_find_method): Renamed into
13141         mono_debug_symfile_lookup_method().
13143 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
13145         * assembly.c (mono_assembly_open_full): Dont overwrite the status
13146         returned by mono_image_open_full ().
13148         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
13149         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
13150         #78517.
13152         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
13153         #78518.
13155 2006-05-27  Miguel de Icaza  <miguel@novell.com>
13157         * class.c (mono_class_from_typeref): handle missing images
13158         earlier, deals with bug #78418.   Refactor code; 
13160         Fix a warning introduced in my previous commit (some stale code
13161         from before I revisited my patch).
13163         * class.c (mono_class_create_from_typedef): On failure, remove the
13164         class from the MonoImage->class_cache as the class is not
13165         initialized;   Fixes the leak pointed out by Paolo.
13167 2006-05-25  Dick Porter  <dick@ximian.com>
13169         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
13170         DeleteCriticalSections until I figure out which one may still be
13171         sometimes locked when mono_thread_cleanup is called.
13173 2006-05-24  Dick Porter  <dick@ximian.com>
13175         * threads.c (mono_thread_cleanup): Move the threading cleanup out
13176         of mono_thread_manage and back into its own function, so it can be
13177         called after the finalizer thread has finished.
13179         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
13181 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
13183         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
13184         Fixes #78495.
13186         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
13187         with non-blittable elements.
13188         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
13190 2006-05-24  Martin Baulig  <martin@ximian.com>
13192         * mono-debug-debugger.h (MonoDebuggerEvent): Added
13193         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
13195         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
13196         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
13197         `mono_debugger_event_handler' to NULL.
13199 2006-05-24  Martin Baulig  <martin@ximian.com>
13201         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
13203 2006-05-24  Martin Baulig  <martin@ximian.com>
13205         * mono-debug-debugger.h
13206         (mono_debugger_create_notification_function): Added
13207         `MonoCodeManager *' argument.
13209 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
13211         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
13213 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
13215         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
13216         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
13217         implementation.
13219 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
13221         * icall.c: precise GC support: objects can't be stored in unmanaged
13222         memory anymore, even if they are kept alive by other references: since
13223         they can move the GC needs to be able to always find them.
13225 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
13227         * object.c: precise GC support for static fields. Support
13228         for moving GCs: write barriers and pinned allocation for interned
13229         strings.
13231 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
13233         * domain.c, domain-internals.h: precise GC support for the MonoDomain
13234         structure.
13236 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
13238         * class.c, gc.c: sgen and precise GC updates.
13240 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
13242         * marshal.h, marshal.c: added write barrier wrapper and precise type
13243         fixes.
13245 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
13247         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
13248         support.
13250 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
13252         * reflection.c: precise and sgen GC updates.
13254 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
13256         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
13258 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
13260         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
13262 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
13264         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
13265         MONO_TYPE_OBJECT. Fixes #78462.
13267 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
13269         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
13270         and blittable types.
13272 2006-05-17  Miguel de Icaza  <miguel@novell.com>
13274         * class.c (mono_class_get_exception_for_failure): Implement parts
13275         of a TODO: if the loader error is set (instead of the class
13276         error), we return a Loader exception that can be properly thrown
13277         elsewhere.
13279         This was exposed by some Winforms 2.0 code that I tried to run
13280         (Atsushi pointed me to it).
13282 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
13284         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
13285         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
13286         
13287         * marshal.c (emit_marshal_vtype): Add limited support for 
13288         UnmanagedType.LPStruct. Fixes #78427.
13290         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
13291         Applied a patch from kangaroo to fix #77523.
13293 2006-05-17  Martin Baulig  <martin@ximian.com>
13295         * threads.c
13296         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
13297         (debugger_thread_created): Removed.
13298         (debugger_thread_exited): Removed.
13300 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
13302         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13304         * object-internals.h (MonoReflectionResource): Sync with managed version.
13306 2006-05-12  Wade Berrier <wberrier@novell.com>
13308         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
13310 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
13312         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
13313         functions try to allocate from the image mempool.
13315 2006-05-12  Dick Porter  <dick@ximian.com>
13317         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
13319 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
13321         * object.c: The FieldGetter and FieldSetter methods require the full
13322         name of the class, not only the name. Fixes bug #78277.
13324 2006-05-11  Miguel de Icaza  <miguel@novell.com>
13326         * loader.c (method_from_memberref): Do not pass the NULL klass to
13327         mono_loader_set_error_() methods.  Pass the non-NULL value
13328         (class). 
13330 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
13332         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
13333         (mono_assembly_close): Null out assembly->image->references after freeing it.
13335         * image.c (mono_image_close): Free image->references.
13336         
13337         * reflection.c (mono_image_basic_init): Fix a small memory leak.
13339 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
13341         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
13342         before checking if it's NULL (g_assert).
13344 2006-05-10  Martin Baulig  <martin@ximian.com>
13346         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
13347         I thought I already killed that two months ago, but now it somehow reappeared.
13349 2006-05-10  Martin Baulig  <martin@ximian.com>
13351         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
13353 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
13355         * reflection.c: Allocate memory for dynamically created methods in the image
13356         mempools.
13358 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
13360         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
13361         don't use the ad pointer before checking if it's NULL (g_assert).
13363 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
13365         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
13366         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
13368         * marshal.c: Allocate all signatures from mempools.
13370         * marshal.c: Allocate some more signatures from mempools.
13372 2006-05-09  Miguel de Icaza  <miguel@novell.com>
13374         * object.c (mono_load_remote_field): The code used to provide a
13375         temporary variable for returning results if the user did not
13376         provide a result pointer.  But our temporary variable was allocted
13377         on the satck.
13379         Fix calling code to always pass a result area.   Coverity ID 103.
13381 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
13383         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
13384         value, not the old. Fixes #78312.
13385         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
13387         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
13388         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
13389         per-image cache.
13391         * assembly.c (mono_assembly_close): Free image->references.
13393         * assembly.c (mono_assembly_names_equal): Fix a warning.
13394         (mono_assemblies_cleanup): Cleanup more global data.
13396         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
13398         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
13399         ptr_cache and image->modules.
13401         * image.c (mono_image_init): Allocate array_cache lazily.
13402         
13403 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13405         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
13406         behavior was changed recently and has bad side effects.
13408 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
13410         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
13411         
13412         * assembly.c (mono_assembly_close): Remove a debug printf.
13414         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
13416         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
13417         to also allow for temporary references between mono_image_open ()/close ().
13419         * domain.c (get_runtimes_from_exe): Add a FIXME.        
13421 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
13423         * marshal.c: Fix support for dynamic methods.
13425         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
13427         * marshal.c (mono_marshal_cleanup): New cleanup function.
13429         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
13430         image mempools.
13432         * class.c (mono_class_init): Fix leaking class->nested_classes.
13434         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
13436         * image.c (mono_image_init): Initialize the new cashes.
13438         * image.c (mono_image_close): Destroy the new cashes.
13440         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
13442         * mempool.c (mono_mempool_strdup): New helper function.
13444         * class-internals.h: Add prototype for mono_loader_unlock ().
13446         * domain.c (mono_jit_info_table_find): Fix a warning.
13447         (mono_debugger_check_runtime_version): Ditto.
13449         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
13450         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
13451         functions to these modules.
13453         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
13454         metadata modules.
13455         
13456         * marshal.c (mono_free_bstr): Fix a warning.
13458         * assembly.c (mono_assembly_open_full): Fix another small leak.
13460         * object.c: Fix some unload leaks in the remoting code.
13462         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
13463         function.
13465         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
13467         * reflection.c: Fix some unload leaks in dynamic assemblies.
13469 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
13471         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
13472         * marshal.h: Add BSTR support on Win32
13473         * icall.c: Add BSTR icalls
13474         * metadata.h: Add BSTR enums
13476 2006-04-28  Miguel de Icaza  <miguel@novell.com>
13478         Work to catch the crash from #76795 and turn it into an
13479         exception.   As I stubbed out pieces of the VisualBasic support,
13480         I found a number of places where the code was failing and I added
13481         checks to those places. 
13482         
13483         * metadata.c (do_mono_metadata_parse_generic_class): Make this
13484         function return a status code.  If we fail to parse the signature
13485         from mono_metadata_parse_generic_inst, return FALSE.
13487         * loader.c (mono_get_method_from_token): If we fail to load the
13488         method (mono_class_get) return NULL.   
13490         * (method_from_memberref): Return NULL if we are unable to parse
13491         the method signature
13493         (mono_loader_error_prepare_exception): Since we now use the
13494         loader_error flag internally to stop processing, and obtaining
13495         exceptions that might be thrown will walk this code path the
13496         proper way of going from a MonoLoaderError into a
13497         MonoException was convoluted.   This new routine encapsulates the
13498         process of turning the error into an exception and *clearing* the
13499         error afterwards.
13500         
13501 2006-04-27  Miguel de Icaza  <miguel@novell.com>
13503         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
13504         with missing assemblies), and to cope with:
13506                 * Missing fieldref from a non-existing assembly.
13507                 * Missing methodref from a non-existing assembly.
13509         The first batch of work to address *some* of the issues from 76661.
13510         
13511         * object.c (mono_class_create_runtime_vtable): If we fail to
13512         initialize the class raise the exception here. 
13514         * metadata.c (mono_class_get_overrides_full): If any methods fail
13515         to load return the failure to the caller.
13517         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
13518         flagging assemblies that failed to load.   
13520         Do not crash if we are unable to load the assembly.
13522         (mono_assembly_close): Do nothing with REFERENCE_MISSING
13523         assemblies. 
13525         * loader.c (mono_loader_set_error_type_load): Change the
13526         convention to always pass unallocated strings, so we make our own
13527         copies (I know our own code had duplicated strings before, but
13528         this keeps the normal conventions).
13529         (method_from_memberref): Call mono_loader_set_error_method_load
13530         for all possible failures of loading the class. 
13531         Remove assert, turn into a loader error.
13533         (mono_loader_error_to_exception): Move this routine from mini
13534         (mini_loader_error_to_exception) there was no need to have that in
13535         mini. 
13537         * class.c (mono_class_from_typeref): If we were not able to load
13538         the assembly with mono_assembly_load_reference, call the
13539         mono_loader_set_error_type_load to register the problem.
13541         (mono_class_setup_fields): If we fail to load the type from
13542         mono_metadata_parse_type_full, call mono_class_set_failure and
13543         break from the loop.
13545         If class->exception_type is set, we do not layout the fields as
13546         that might crash the runtime, and instead return (from breaking
13547         from the previous loop).
13549         (mono_class_setup_vtable): This now returns a boolean indicating
13550         whether the table was properly setup.   The decision is driven by
13551         mono_class_get_overrides_full which might run into non-existing
13552         methods. 
13553         
13554         (mono_class_init): Returns TRUE on success or FALSE if there was a
13555         problem in loading the type (incorrect assemblies, missing
13556         assemblies, methods, etc).
13558         When we call mono_class_setup_fields we also check for a potential
13559         error inside this call (either a class exception or a general
13560         loader exception).
13562         (mono_class_create_from_typedef): If the parent fails to load
13563         (calling mono_class_get_full) return NULL.
13564         
13565         ** Important **
13567         calls to mono_metadata_parse_type_full should be checked
13568         everywhere and set the mono_class_set_failure
13569         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
13571         The current patch checks the places where my manually constructed
13572         tests show the errors are showing up, but we should do it
13573         everywhere. 
13575         ** Important2 **
13577         mono_class_init return values should be tested everywhere, like
13578         the previous case this is something that we should audit
13579         everywhere and not only on the cases exposed by the tests I
13580         created. 
13582 2006-04-26  Miguel de Icaza  <miguel@novell.com>
13584         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
13585         boolean parameter and instead pass the information on `options'
13586         parameter (FileOptions).
13588         * icall.c: Register the new signature for MonoIO.Open.
13590         * debug-helpers.c (dis_one): Trying to understand how coverity
13591         works.  Fix Run 5, item 78.
13593 2006-04-26  Dick Porter  <dick@ximian.com>
13595         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
13596         dereference.
13598 2006-04-25  Martin Baulig  <martin@ximian.com>
13600         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
13602         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
13603         debugger_thread_created().
13604         (debugger_gc_push_all_stacks): Don't handle the main thread in any
13605         special way.
13606         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
13607         (mono_debugger_finalize_threads): New function; undo the effects
13608         of mono_debugger_init_threads().
13609         (mono_debugger_create_all_threads): Removed.
13611 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
13613         * image.c (mono_image_close): Tidy up trace messages.
13615         * assembly.c (mono_assembly_close): Ditto.
13617         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
13618         no longer references an already freed assembly. Fixes #78168.
13620 2006-04-21  Dick Porter  <dick@ximian.com>
13622         * threads.c (mono_thread_detach): Fix reference counting when
13623         detaching threads.
13625 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
13627         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
13628         #78155.
13630 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
13632         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
13633         (mono_type_to_stind): Ditto.
13635         * marshal.c: Use the new helper functions to simplify code.
13637         * image.c (mono_image_close): Add some code for help debug assembly unloading
13638         problems.
13640         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
13641         image mempool.
13643         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
13644         assembly was already loaded in another appdomain. Fixes #78083.
13646 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
13648         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
13649         referenced assemblies.
13650         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
13652         * domain.c (mono_domain_free): Add a trace message.
13654         * appdomain.c (add_assemblies_to_domain): Ditto.        
13656         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
13657         field.  
13659 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13661         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
13663 2006-04-12  Martin Baulig  <martin@ximian.com>
13665         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
13666         `USE_INCLUDED_LIBGC'.   
13668 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
13670         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
13671         the patch contains ../ and a small directory name later. Hopefully fixes
13672         #78035.
13674 2006-04-10  Martin Baulig  <martin@ximian.com>
13676         Clean up the debugger's thread-handling code.
13678         The debugger's thread-handling code has been moved from
13679         ../mini/debug-debugger.c to threads.c.  We now iterate directly
13680         over the `threads' hash, keep track of exiting threads and also
13681         use proper locking.
13683         We can now debug XSP and XSP based applications with the debugger.
13685         * object-internals.h (MonoThread): Added `gpointer end_stack'.
13687         * threads.h
13688         (MonoThreadCallbacks): Removed; this was only used by the debugger.
13689         (mono_install_thread_callbacks): Likewise.      
13691         * threads.c (mono_thread_callbacks): Removed.
13692         (debugger_thread_created, debugger_thread_exited): New static functions.
13693         (start_wrapper): Call debugger_thread_created().
13694         (thread_cleanup): Call debugger_thread_exited().
13695         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
13696         (mono_debugger_init_threads): New public function.
13697         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
13698         iterate directly over the `threads' hash and also use proper locking.
13700         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
13702         * mono-debug-debugger.h
13703         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
13705 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
13707         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
13708         argument type=array. Fixes #78057.
13710 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
13712         * culture-info-table.h : regenerated. Fixed bug #69652.
13714 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
13716         * loader.c metadata.c: Reapply a variant r59116.
13717         
13718         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
13720         * class.c (mono_class_setup_interface_offsets): New internal function.
13722         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
13723         interfaces too. Fixes #77398.
13725         * reflection.c (encode_cattr_value): Add support for 
13726         parameter type=object, argument type=array.
13727         (load_cattr_value): Ditto. Fixes #77916.
13729         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
13730         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
13732         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
13733         a byval char array and CharSet is Ansi.
13735         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
13737 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
13739         * metadata.c: Add some locking comments.
13740         
13741         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
13742         mempool.
13743         (mono_metadata_free_method_signature): Don't free the signature itself.
13745         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
13747         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
13748         reference the same MonoImage.
13749         (mono_assembly_load_from_full): Add an assert.
13751 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
13753         * image.c (mono_image_close): Don't put the image we are about to free into the
13754         loaded_images_guid_hash.
13756         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
13757         to reduce code duplication.
13759         * marshal.c: Register the native functions called by this module as icalls, to
13760         somewhat centralize the creation of MonoMethodSignature's.
13762         * loader.c (mono_method_signature): Add a cache for method signatures.
13764         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
13765         the parameter attributes of a method.
13766         (mono_metadata_parse_method_signature_full): Refactored the computation of
13767         parameter attributes into a separate function. Also avoid one allocation in
13768         most cases.
13770         * assembly.c (mono_assembly_close): Ditto.
13772         * image.c (mono_image_close): Log trace messages with INFO level.
13774         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
13776         * image.c reflection.c: Correct reference counting of image modules.
13777         
13778         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
13779         of this function from the image mempool.
13780         
13781         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
13782         to allow more cached types to be used.
13784         * mono-debug.c (mono_debug_add_method): Appled patch from
13785         David S. Miller  <davem@sunset.davemloft.net>: Access 
13786         minfo->lexical_blocks[] entry elements using read32().
13788 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
13790         * loader.c (mono_free_method): No longer free the method header for non-dynamic
13791         methods as it is allocated from the mempool.
13793         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
13794         image mempool.
13796         * metadata-internals.h: Add comments describing the reference counting scheme
13797         used for MonoImage and MonoAssembly.
13799         * image.c assembly.c reflection.c: Rework reference counting of images and 
13800         assemblies so they are freed when the runtime is shut down. Free some 
13801         additional memory structures when an image is unloaded.
13802         
13803 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
13805         * class.c loader.c reflection.c: Allocate more data structures in
13806         the image mempool.
13808 2006-03-31  Miguel de Icaza  <miguel@novell.com>
13810         * icall.c
13811         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
13812         build on pre glib 2.4 systems.
13814 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
13816         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
13818         * icall.c: Fix some warnings.
13820 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
13822         * culture-info-table.h : regenerated.
13824 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
13826         * threads.c, object-internals.h, verify.c: changed the culture caching
13827         code to use a normal MonoArray for storage so the GC can keep track of
13828         them easily. Fixed bits of the cache logic, too and simplified the
13829         code.
13831 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
13833         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
13834         thread for non-Boehm GCs.
13836 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
13838         * domain.c, object.c, domain-internals.h: reduce the amount of memory
13839         needed to keep track of the data for static fields.
13841 2006-03-29  Raja R Harinath  <rharinath@novell.com>
13843         Fix #75172
13844         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
13845         for interface classes.  Use 'num_methods' instead.
13846         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
13847         before using '->vtable_size' field.
13849 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
13851         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
13852         doesn't contain managed pointers, so use a normal hashtable.
13854 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
13856         * reflection.c, class-internals.h, domain.c: fixed handling of types
13857         used as values for objects in custom attributes (bug #77915):
13859 2006-03-24  Martin Baulig  <martin@ximian.com>
13861         * class.c (mono_class_setup_fields): Added support for generic
13862         instances; fixes #77580.
13864 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13866         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
13868 2006-03-24  Dick Porter  <dick@ximian.com>
13870         * file-io.c (get_file_attributes): More stat macro breakage.
13871         Fixes bug 77759.
13873 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
13875         * profiler.c: added the file=filename option in the default profiler
13876         to output the profile data to filename.
13878 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13880         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
13881         bug #77877.
13883 2006-03-22  Martin Baulig  <martin@ximian.com>
13885         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
13886         allocated `MonoClassField *' in `fb->handle'.
13888 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
13890         * class.c, image.c, metadata-internals.h: implemented new mechanism to
13891         allocate interface ID to save memory and allow better ID reuse on
13892         appdomain unload. setup_generic_vtable () removal from Martin.
13894 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
13896         * object.h, appdomain.c, domain.c, exception.c, icall.c,
13897         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
13898         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
13899         write barriers for reference stores with managed objects accessed with
13900         C structures in the runtime and in embedding programs.
13902 2006-03-20  Raja R Harinath  <rharinath@novell.com>
13904         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
13905         'interface_id' and 'max_interface_id' fields of MonoClasses
13906         representing open generic types.
13908 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
13910         * object.h, object.c, icall.c: added functions to deal with
13911         storing valuetypes that contain references in managed objects.
13912         * reflection.c, string-icalls.c, threads.c, marshal.c: small
13913         fixes and comments around uses of mono_array_addr ().
13915 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
13917         * object.h, icall.c, monitor.c: object.GetHashCode ()
13918         implementation that supports the moving garbage collector.
13920 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
13922         * icall.c, threads-types.h, threads.c: implemented finalizer for
13923         LocalDataStoreSlot.
13925 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
13927         * metadata.c (mono_type_size): Add a fixme.
13928         (mono_type_stack_size): Ditto.
13930         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
13931         'type_forwarders' field.
13933         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
13934         attribute from net 2.0.
13936         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
13937         from class.c.
13939         * class.c (mono_class_setup_fields): Fix a warning.
13940         
13941         * class.c (mono_class_from_name): Add support for assemblyref entries
13942         in the EXPORTEDTYPE table.
13944         * reflection.c: Add support for handling type forwarders under net 2.0.
13946         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
13947         
13948 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
13950         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
13951         overwriting entries in ModuleBuild->types, also clean up the code
13952         a little. Fixes #77774.
13954 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
13956         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
13957         load friend assembly info when present.
13959 2006-03-14  Raja R Harinath  <rharinath@novell.com>
13961         Fix crasher on gtest-158.cs.
13962         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
13963         the return value if the MonoClass we want is yet in an
13964         inconsistent state.
13965         * class.c (mono_class_create_from_typedef): Add an comment
13966         explaining an order dependency between mono_class_setup_parent and
13967         mono_class_setup_mono_type.
13969 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
13971         * class.c: documentation updates and events bug fix.
13973 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
13975         * class.c: some cleanup, locking fixes.
13977 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
13979         * class.c: fix the generics code to setup nested
13980         type info to the instantiated type (bug #77770).
13982 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
13984         * marshal.c: fixed a few type correctness issues.
13986 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
13988         * loader.c: the Set/Get/Addrtess array methods should be public.
13990 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
13992         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
13993         
13994         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
13995         info->wrapper.
13997 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
13999         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
14001         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
14003         * mempool.c (mono_mempool_alloc): Speed this up a bit.
14004         (mono_mempool_alloc0): Ditto.
14006 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14008         * socket-io.c:
14009         (create_object_from_sockaddr): it was allocating 4 extra bytes
14010         for the AF_UNIX data. Fixes bug #77747.
14012 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
14014         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
14016 2006-03-09  Dick Porter  <dick@ximian.com>
14018         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
14019         Fixes bug 76966 again.
14021 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
14023         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
14024         names from r57532
14025         * appdomain.c: Bumped corlib version to 48 (due to r57532)
14027 2006-03-07  Martin Baulig  <martin@ximian.com>
14029         * object.c
14030         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
14032 2006-03-07  Martin Baulig  <martin@ximian.com>
14034         * class.c
14035         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
14036         regression introduced in r56970; see gtest-252.cs.
14038         * loader.c (mono_get_method_constrained): Correctly handle generic
14039         methods; see gtest-253.cs.
14041 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
14043         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
14045 2006-03-04  Martin Baulig  <martin@ximian.com>
14047         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
14048         compute the parent type at runtime, just like we're already doing
14049         it for interfaces.
14051         * reflection.c
14052         (mono_reflection_bind_generic_parameters): Don't compute the
14053         parent type anymore.
14055         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
14057 2006-03-04  Martin Baulig  <martin@ximian.com>
14059         * mono-debug-debugger.h
14060         (mono_debugger_create_notification_function): Allocate memory at
14061         runtime and return a pointer to it.
14063 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
14065         * assembly.c: Fix windows build.
14066         
14067         * assembly.c: Fix build.
14069         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
14071         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
14072         
14073 2006-03-03  Dick Porter  <dick@ximian.com>
14075         * process.c
14076         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
14077         Check parameters before dereferencing them.  Fixes Aaron's part of
14078         bug 77393.
14080 2006-03-03  Raja R Harinath  <rharinath@novell.com>
14082         Fix performance regression.
14083         * loader.c (find_method_in_class): Add 'from_class' argument.
14084         Rename 'klass' argument to 'in_class'.  The signature is compared
14085         against the method in 'in_class', and the corresponding method is
14086         returned from 'from_class'.
14087         (find_method): Walk both 'in_class' and 'from_class' in parallel.
14088         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
14089         type definition and generic instantiation in parallel.
14090         (mono_get_method_constrained): Update to changes.
14092 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
14094         * threads.c: make sure the domain is correct, too when doing
14095         mono_thread_attach ().
14097 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
14099         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
14100         windows. Fixes #77683.
14102 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
14104         * object.h, *: introduced specific way to set elements of an array
14105         of references to be used as write barrier. Still need to audit the
14106         uses of mono_array_addr.
14108 2006-03-01  Miguel de Icaza  <miguel@novell.com>
14110         * object-internals.h: New field to cache the assmebly name, patch
14111         from Tambet Ingo (tambet@ximian.com)
14113 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
14115         * decimal.h, class-internals.h, metadata-internals.h,
14116         file-io.h: mark a few function declarations as internal, to
14117         reduce the number of PLT entries.
14119 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14121         * file-io.c: fix typo in warning message.
14123 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
14125         * loader.c: on unix, lookup the "*A" version of a function
14126         if charset is auto as a second option before failing.
14128 2006-02-28  Raja R Harinath  <rharinath@novell.com>
14130         * class.h (mono_class_inflate_generic_method): Revert to two
14131         argument version.
14132         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
14133         (mono_class_inflate_generic_method_full): Add.
14134         * class.c (mono_class_inflate_generic_method_full): Rename from
14135         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
14136         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
14137         * loader.c, reflection.c: Update to changes.
14139 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
14141         * icall.c: const fixes and small improvements.
14143 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14145         * threadpool.c: for asynchronous connect(), enable the same workaround
14146         for BSD 6 as for the Mac. Fixes bug #77637.
14148 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
14150         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
14151         formatted classes. Fixes #77524.
14153 2006-02-24  Raja R Harinath  <rharinath@novell.com>
14155         * class.c (inflate_generic_type): Add a couple more
14156         micro-optimizations.
14157         (inflate_generic_context): Don't use the 'gmethod' from
14158         'inflate_with'.
14159         (mono_class_inflate_generic_method): If the method has generic
14160         parameters, but the passed-in context doesn't have a 'gmethod',
14161         create one.  Use the possibly simplified generic instantiation
14162         from the declaring class instead of the one passed in.
14164 2006-02-24  Raja R Harinath  <harinath@gmail.com>
14166         Make generic method signature and method header handling lazy.
14167         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
14168         (inflate_generic_header): Likewise.
14169         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
14170         parameter to avoid inflating types.
14171         (mono_get_inflated_method): Empty out.
14172         * class.h (mono_class_inflate_generic_method): Update to changes.
14173         * loader.c (mono_get_method_from_token): Don't parse signature for
14174         generic methods, nor methods of generic classes.
14175         (mono_method_signature): Rename from 'mono_method_signature'.
14176         Inflate signature on demand.
14177         (mono_method_get_header): Inflate method header on demand.
14178         * reflection.c: Update to changes.
14180 2006-02-23  Raja R Harinath  <rharinath@novell.com>
14182         * metadata.c (mono_metadata_inflate_generic_inst): If the
14183         instantiation is closed, don't bother expanding it in the new
14184         context.
14185         * class.c (inflate_generic_class): If the generic instantiation
14186         doesn't change after inflation, return the argument itself.
14187         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
14188         Add bounds checks.
14189         (inflate_generic_context): If neither the generic class nor the
14190         generic method instantiations change, return the original context.
14191         * reflection.c (mono_method_get_object): Do
14192         'mono_get_inflated_method' before accessing the ->klass field.
14193         (inflate_mono_method): Don't create a MonoGenericMethod unless
14194         necessary.
14195         (inflate_method): Don't pass a constructed type as the declaring
14196         type of a methodbuilder.
14198 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
14200         * object.c: fix memory overwrite.
14202 2006-02-22  Dick Porter  <dick@ximian.com>
14204         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
14205         it doesn't work any more.
14206         (mono_threads_request_thread_dump): Fix unused variable warnings.
14208 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
14210         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
14211         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
14212         the public header file.
14214 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
14216         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
14218 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
14220         * class-internals.h, object.c: reduce the size of MonoVTable
14221         and store the interface_offsets array at negative offsets.
14223 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
14225         * metadata.c: tweak table descriptors data structures to reduce
14226         size and runtime relocations.
14228 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14230         * marshal.c: fix some types and opcodes to be type-safe
14231         in marshaling wrappers.
14233 2006-02-21  Ankit Jain  <jankit@novell.com>
14235         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
14237 2006-02-21  Raja R Harinath  <rharinath@novell.com>
14239         * metadata.c (get_constraints): Relax debugging checks for monodis.
14241 2006-02-21  Ankit Jain  <jankit@novell.com>
14243         * metadata.c (mono_metadata_load_generic_params): Move the code
14244         checking for ambiguous generic params from here to mono/dis/get.c
14245         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
14247 2006-02-21  Raja R Harinath  <harinath@gmail.com>
14249         Fix assertion triggered when compiling nemerle.
14250         * class.c (mono_get_shared_generic_inst): Rename from
14251         get_shared_inst and make non-static.
14252         * loader.c (mono_get_shared_generic_method): New.  Used to create
14253         the MonoGenericContext-equivalent of a MonoGenericContainer.
14254         (mono_get_method_from_token): Initialize the 'context' field of
14255         the created MonoGenericContainer.
14256         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
14257         * metadata.c (get_constraints): Add sanity check.
14258         * class-internals.h: Add new internal methods.
14260         * reflection.c (verify_safe_for_managed_space): New sanity check.
14261         Currently checks that owner-less generic parameters aren't allowed
14262         in managed space.
14263         (mono_type_get_object): Use it.
14264         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
14265         that are now in mono_type_get_object.
14266         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
14268 2006-02-19  Raja R Harinath  <harinath@gmail.com>
14270         * metadata.c (mono_type_create_from_typespec): Rename from
14271         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
14272         argument and caching of types in the generic container.
14273         (unwrap_arrays, find_generic_param): Remove.
14274         * metadata-internals.h: Update.
14275         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
14277 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
14279         * class.c (mono_class_get_exception_for_failure): Fix a warning.
14281         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
14282         return values. Fixes #77581.
14284         * class.c (mono_fnptr_class_get): Switch name and name_space.
14286         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
14287         classes and add support for [In, Out] attributes.
14288         (mono_marshal_free_asany): Ditto. Fixes #77524.
14290 2006-02-18  Raja R Harinath  <harinath@gmail.com>
14292         * class.c (mono_class_from_generic_parameter): Make more robust to
14293         incomplete MonoGenericContainers from monodis.
14295 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14297         * class-internals.h: added some more exception types.
14298         * class.c, metadata.c: added a few checks to handle missing
14299         types.
14301 2006-02-17  Raja R Harinath  <rharinath@novell.com>
14303         Use owner-less generic-params some more.
14304         * class.c (my_mono_class_from_generic_parameter): Remove.
14305         (mono_class_from_generic_parameter): Handle null image,
14306         param->name and param->owner.
14307         (mono_class_from_mono_type): Update.
14308         (mono_class_create_from_typespec): Remove 'container' parameter.
14309         If that parameter is non-null, the result is always inflated by
14310         'mono_class_get_full' anyway.
14311         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
14312         parameter.
14313         (mono_class_get_full): Update.
14315         * class.c (inflate_generic_type) [GENERICINST]: If the generic
14316         instance is not open, don't bother inflating.
14317         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
14318         parse metadata for inflated classes.
14319         (_mono_class_get): Change GenericContext* parameter to
14320         GenericContainer*.
14321         (mono_class_create_from_typespec): Likewise.  Simplify, and
14322         implement trivially.  All the cases are handled in
14323         mono_class_from_mono_type.  Don't inflate returned class.
14324         (mono_class_get_full): Delegate GENERICINST optimization to
14325         inflate_generic_type.
14326         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
14328 2006-02-16  Dick Porter  <dick@ximian.com>
14330         * socket-io.c (create_object_from_sockaddr): Fix typo.
14331         (create_sockaddr_from_object): Check array lengths before
14332         potentially accessing items off the end.
14333         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
14334         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
14335         (ves_icall_System_Net_Sockets_Socket_Send_internal)
14336         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
14337         length checks to avoid wraparound overflows.
14338         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
14339         contents of the array of sockets
14340         (hostent_to_IPHostEntry2)
14341         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
14342         Check return value of inet_ntop ().
14343         (addrinfo_to_IPHostEntry): Fix typo
14345 2006-02-16  Raja R Harinath  <rharinath@novell.com>
14347         Type metadata parsing doesn't use generic-instantiation information.
14348         * metadata.c (mono_metadata_parse_array_full): Change
14349         MonoGenericContext* parameter to MonoGenericContainer*.
14350         (mono_metadata_parse_type_full): Likewise.
14351         (mono_type_create_from_typespec_full): Likewise.
14352         (mono_metadata_parse_mh_full): Likewise.
14353         (mono_metadata_parse_generic_inst): Likewise.
14354         (do_mono_metadata_parse_generic_class): Likewise.
14355         (do_mono_metadata_parse_type): Likewise.
14356         * metadata-internals.h: Update to changes.
14357         * class.c (mono_class_find_enum_basetype): Likewise.
14358         (mono_class_setup_fields): Likewise.
14359         (mono_class_create_from_typespec): Likewise.
14360         * loader.c (method_from_methodspec): Likewise.
14361         (mono_get_method_from_token): Likewise.
14362         (mono_method_get_header): Likewise.
14364 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14366         * marshal.c: handle additional GENERICINST case (patch from
14367         Thong Nguyen <tum@veridicus.com>).
14368         Fix a few cases where LDIND_I/STIND_I was used for references.
14370 2006-02-16  Raja R Harinath  <rharinath@novell.com>
14372         * reflection.c (mono_reflection_get_token): Remove unused variable.
14374 2006-02-16  Martin Baulig  <martin@ximian.com>
14376         * reflection.c (mono_reflection_get_token): Add support for fields
14377         in instantiated generic types.
14379         * icall.c
14380         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
14382 2006-02-15  Martin Baulig  <martin@ximian.com>
14384         * icall.c
14385         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
14386         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
14387         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
14388         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
14390 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
14392         * class.c, metadata.c, metadata.h, object.c, icall.c,
14393         marshal.c: changed mono_type_get_underlying_type () to do
14394         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
14395         Fixed handling of instantiated generic valuetypes (bug #75479).
14397 2006-02-15  Raja R Harinath  <rharinath@novell.com>
14399         * metadata.c (mono_metadata_decode_signed_value): Simplify.
14400         Delegate to mono_metadata_decode_value, and work on the returned value.
14402         * icall.c (ves_icall_MonoType_GetGenericArguments):
14403         Add consistency check here too.
14404         
14405 2006-02-15  Ankit Jain  <jankit@novell.com>
14407         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
14408         char/short etc.
14410 2006-02-15  Ankit Jain  <jankit@novell.com>
14412         * metadata.c (mono_metadata_decode_signed_value): New function to decode
14413         signed values, used only for representing lower bounds of arrays.
14414         (mono_metadata_parse_array_full): Use new
14415         mono_metadata_decode_signed_value to decode lower bounds.
14417 2006-02-14  Martin Baulig  <martin@ximian.com>
14419         * reflection.c
14420         (mono_reflection_get_token): Support "MonoGenericMethod" and
14421         "MonoGenericCMethod" and allow generic instances / methods.
14423 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
14425         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
14426         to obtain the terminal size using an ioctl.
14428         * object.c (mono_nullable_init): Revert this as nullable reference
14429         types are not valid.
14430         (mono_nullable_box): Ditto.
14432 2006-02-09  Dick Porter  <dick@ximian.com>
14434         * threads.c (mono_thread_detach): Drop a reference to the thread
14435         we're detaching.
14437 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
14439         * object.c (mono_nullable_init): Handle nullable reference types.
14440         (mono_nullable_box): Ditto. Fixes #77446.
14442 2006-02-07  Martin Baulig  <martin@ximian.com>
14444         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
14446 2006-02-07  Ankit Jain  <jankit@novell.com>
14448         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
14449         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
14450         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
14451         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
14452         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
14453         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
14455 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
14457         * class.c (mono_class_create_generic): Set type_token as well.
14459         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
14460         compatible with MS.
14462 2006-02-02  Martin Baulig  <martin@ximian.com>
14464         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
14465         has never been used so far.
14467 2006-02-02  Martin Baulig  <martin@ximian.com>
14469         * mono-debug-debugger.h: Changed comment at the top of this file;
14470         the header is not installed, but it's safe to #include it from
14471         within the JIT.
14473         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
14474         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
14476 2006-02-02  Martin Baulig  <martin@ximian.com>
14478         * mono-debug.h
14479         (MonoSymbolTable): Removed the `metadata_info' field.
14481         * mono-debug.c
14482         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
14484         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
14485         (mono_debugger_add_builtin_types): Removed.
14486         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
14487         (mono_debugger_create_notification_function): We now operate on a
14488         pre-allocated area; take a `gpointer' and return `void'.
14490         * mono-debug-debugger.c
14491         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
14492         (mono_debugger_add_builtin_types): Removed.
14494 2006-02-02  Martin Baulig  <martin@ximian.com>
14496         * threads.c (mono_debugger_create_all_threads): New public method.
14498 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14500         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
14501         breaks on several platforms.
14503 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
14505         * assembly.c: the VS.NET build doesn't supply default values for
14506         MONO_ASSEMBLIES and MONO_CFG_DIR.
14508 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
14510         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
14511         helper function.
14513         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
14515         * loader.c (method_from_memberref): Fix a warning.
14517         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
14519         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
14520         with explicit layout. Fixes #77433.
14522 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
14524         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
14525         max_interface_id is initialized before using it. Fixes #77398.
14526         (ves_icall_Type_GetInterfaces): Ditto.
14528 2006-01-30  Raja R Harinath  <rharinath@novell.com>
14530         * metadata.c (mono_metadata_parse_method_signature_full): Don't
14531         allocate memory for parameter attributes when parsing memberref
14532         signatures.
14533         * loader.c (mono_loader_set_error_method_load): Don't warn.
14534         (method_from_memberref): Ensure MissingMethodException gets thrown
14535         if method is not found.  Make warning more informative.
14537 2006-01-29  Raja R Harinath  <harinath@gmail.com>
14539         Fix #77397
14540         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
14541         return true if is byref.
14542         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
14543         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
14544         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
14546 2006-01-27  Raja R Harinath  <rharinath@novell.com>
14548         Fix tests/find-method.2.il
14549         * loader.c (find_method, find_method_in_class): Remove is_inflated
14550         argument.  Revert 2006-01-18 change.
14551         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
14552         is generic, search for method in its generic definition.
14553         * class.c (mono_class_setup_vtable_general): Print generic
14554         arguments of generic types in debugging printf.
14556 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
14558         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
14560         * threads.c (mono_threads_request_thread_dump): New helper function.
14562 2006-01-25  Raja R Harinath  <rharinath@novell.com>
14564         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
14566 2006-01-25  Ankit Jain  <jankit@novell.com>
14568         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
14569         move definition to ..
14570         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
14571         
14572 2006-01-25  Ankit Jain  <jankit@novell.com>
14573             Raja R Harinath  <rharinath@novell.com>
14575         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
14576         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
14577         as necessary.
14579 2006-01-25  Martin Baulig  <martin@ximian.com>
14581         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
14582         `MonoDebuggerThread' into debug-debugger.c.
14584 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
14586         * profiler.c: fix printing of data.
14588 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
14590         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
14591           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
14593 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14595         * object.c: fix deadlock related to string interning.
14597 2006-01-23  Martin Baulig  <martin@ximian.com>
14599         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
14601         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
14603 2006-01-23  Martin Baulig  <martin@ximian.com>
14605         * mono-debug.h: Moved the prototypes of some functions which are
14606         used by the JIT here from mono-debug-debugger.h.
14608 2006-01-21  Martin Baulig  <martin@ximian.com>
14610         * Makefile.am: Don't install mono-debug-debugger.h.
14612 2006-01-21  Martin Baulig  <martin@ximian.com>
14614         * mono-debug-debugger.h: Enforce the private status of this header
14615         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
14616         Moved some stuff from mono-debugger-jit-wrapper.h here.
14618 2006-01-20  Raja R Harinath  <rharinath@novell.com>
14620         * class.c (mono_class_from_typeref): Add a sanity test to help
14621         catch lack of assembly load/search hooks.
14623 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
14625         * marshal.c (emit_struct_conv): Relax the fields with same offset
14626         check even more. Fixes #77230.
14628 2006-01-18  Martin Baulig  <martin@ximian.com>
14630         * loader.c (find_method_in_class): Added `gboolean is_inflated'
14631         argument; if false, we compare the uninstantiated signatures.
14632         (method_from_memberref): Compare the uninstantiated signatures;
14633         fixes #76417.
14635 2006-01-18  Robert Jordan  <robertj@gmx.net>
14637         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
14638         Clear the weak link. Fixes bug #77170.
14640         * gc.c (mono_gchandle_free):
14641         Reflect *-gc.c changes (tiny optimization).
14643 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
14645         * metadata.c (mono_metadata_signature_dup): Applied patch from
14646         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
14647         Fixes #77288.
14649 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
14651         * marshal.c (emit_struct_conv): Allow fields with the same offset when
14652         marshalling from native to managed code. Fixes #77230.
14654 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14656         * threadpool.c: fix problem (Mac only) when more than one asynchronous
14657         connect. Fixes bug #77020.
14659 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14661         * class.c: fixed id assignement for nested interfaces (bug #77275).
14662         Added also better info for --print-vtable debugging.
14664 2006-01-12  Martin Baulig  <martin@ximian.com>
14666         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
14667         interfaces on-the-fly; fixes #76625.
14669         * class-internals.h
14670         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
14671         don't need that anymore.
14673 2006-01-12  Miguel de Icaza  <miguel@novell.com>
14675         * socket-io.c
14676         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14677         To avoid initing the nested_classes when not needed I turned the
14678         PeerCredData as a toplevel internal class, as it has to be shared
14679         anyways. 
14681         Fixes the CASA issue.
14683 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
14685         * domain.c: Accessors for MonoJitInfo
14687         * profiler-private.h: Add jitinfo to the end jit hook
14689         * profiler.[ch]: Define new hooks, called after jitting which give
14690         the MonoJitInfo that was compiled
14692 2006-01-10  Martin Baulig  <martin@ximian.com>
14694         * class.c (mono_class_setup_events): Add support for generic
14695         classes; fixes #76440.
14697 2006-01-06  Raja R Harinath  <rharinath@novell.com>
14699         Fix #77160.
14700         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
14701         on passed-in method.
14703 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
14705         * object.c (mono_runtime_invoke_array): Add Nullable support.
14707         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
14709 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
14711         * file-io.c: Don't consider sockets as directory and avoid an endless
14712         loop. Fix bug #76966.
14714 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
14716         * object.c (mono_nullable_init): New helper function.
14717         (mono_nullable_box): Ditto.
14719         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
14721         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
14723         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
14724         
14725 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
14727         * class.c (mono_class_is_assignable_from): Make T assignable to 
14728         Nullable<T>.
14730 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
14732         * appdomain.c: Bump corlib version to 46.
14733         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
14734         serialization purpose) and changed ves_icall_System_Reflection_
14735         Assembly_get_code_base signature to accept a boolean (to escape, or 
14736         not, the assembly code base).
14738 2005-12-23  Dick Porter  <dick@ximian.com>
14740         * icall.c: 
14741         * threads-types.h: 
14742         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
14743         CreateEvent icall now returns "created" boolean parameter.
14745 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
14747         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
14748         #76967.
14750         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
14751         when attr_klass is an interface. Fixes #77045.
14753 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
14755         * marshal.c (emit_struct_conv): Fix previous patch.
14756         
14757         * marshal.c (emit_struct_conv): Add a check for fields with the same
14758         offset.
14760 2005-12-20  Raja R Harinath  <rharinath@novell.com>
14762         Fix regression in Mono.C5.
14763         * class.c (mono_class_create_generic): If 'klass' is an interface
14764         set up the interface offsets.
14765         (mono_class_is_assignable_from): Don't throw away generic arguments.
14767 2005-12-19  Raja R Harinath  <rharinath@novell.com>
14769         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
14770         type parameters.
14772 2005-12-15  Raja R Harinath  <rharinath@novell.com>
14774         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
14775         dead store.
14776         (do_mono_metadata_parse_generic_class): Don't pass the current
14777         generic context when parsing the type being instantiated: it
14778         cannot use it, anyway.
14780         * loader.c (method_from_memberref): Don't inflate a signature if
14781         it doesn't contain any type parameters.
14783 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
14785         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
14787 2005-12-14  Martin Baulig  <martin@ximian.com>
14789         * class.c
14790         (mono_type_get_name_recurse): Don't return null for type
14791         parameters and open generic classes.
14792         (mono_class_setup_methods): Don't exclude generic instances.
14793         (mono_get_unique_iid): Use different IDs for different
14794         instantiations of the same generic type.
14795         (mono_class_setup_vtable): Only use setup_generic_vtable() for
14796         open generic instances; create a normal vtable for closed generic
14797         instances.
14798         (mono_class_setup_vtable_general): We're now also called for
14799         closed generic instances.
14801         * reflection.c
14802         (mono_reflection_bind_generic_parameters): Correctly use
14803         mono_metadata_lookup_generic_inst() everywhere.
14805 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
14807         * object.c (mono_class_create_runtime_vtable): Call 
14808         mono_class_setup_vtable ().
14810         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
14811         function.
14812         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
14813         #76959.
14815         * loader.c (mono_loader_set_error_type_load): Print the type load
14816         warnings to the console so they are more visible to the user.
14817         (mono_loader_set_error_method_load): Ditto.
14819         * reflection.c (ensure_runtime_vtable): Revert the last change as it
14820         is still broken.
14821         
14822         * reflection.c (ensure_runtime_vtable): Fix build.
14824         * reflection.c (ensure_runtime_vtable): Disable an optimization which
14825         doesn't work in all cases.
14827 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
14829         * object.c (mono_array_new_full): Treat a single dimensional array
14830         with 0 lower bounds as an szarray. Fixes #76973.
14832         * reflection.c (custom_attr_visible): Really fix this.
14834 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
14836         * reflection.c (custom_attr_visible): Allow nested public attributes
14837         as well.
14839         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
14840         interface check.
14842 2005-12-12  Raja R Harinath  <harinath@gmail.com>
14844         * class.c (set_generic_param_owner): Delete.
14845         (mono_class_create_from_typedef): Don't set ->owner field of
14846         generic parameters to "param containers" of enclosing classes.
14847         * reflection.c (mono_reflection_initialize_generic_parameter):
14848         Likewise.
14850 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
14852         * reflection.c (custom_attr_visible): Fix build.
14854 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
14856         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
14857         private attributes.
14858         
14859         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
14860         handling of null parameter defaults.
14862 2005-12-09  Raja R Harinath  <rharinath@novell.com>
14864         * class.c (mono_class_from_generic_parameter): Don't set
14865         klass->generic_container.
14866         (my_mono_class_from_generic_parameter): Likewise.
14868 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
14870         * reflection.c (load_public_key): Fix a warning.
14871         (method_encode_code): Fix unaligned accesses.
14873 2005-12-07  Martin Baulig  <martin@ximian.com>
14875         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
14877         * reflection.c
14878         (write_generic_param_entry): Encode our custom attrs.
14880         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
14882 2005-12-07  Martin Baulig  <martin@ximian.com>
14884         * reflection.c (encode_new_constraint): Removed; we don't use the
14885         `NewConstraintAttribute' anymore.
14887 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
14889         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
14890         not fire a TypeResolve event when Assembly.GetType () is called.
14892 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
14894         Beginning of support for nullable types in the runtime. Parts of
14895         this patch are from Martin.
14897         * appdomain.c (MONO_CORLIB_VERSION): Bump
14899         * domain.c (mono_init_internal): get the nullable type
14901         * class.c (mono_class_is_nullable): New method
14902         (mono_class_get_nullable_param): New mehod
14903         (mono_class_create_generic): In types T? set cast_class to T
14905         * class-internals.h (MonoDefaults): new nullable default class
14906         (mono_class_get_nullable_param, mono_class_get_nullable_param):
14907         new methods.
14909 2005-12-05  Raja R Harinath  <rharinath@novell.com>
14911         * metadata.c (select_container): New.  Refactor code to select the
14912         appropriate GenericContainer given the type of generic parameter
14913         we are looking for.
14914         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
14915         not a MonoGenericContext.  Use select_container.  Update parameters.
14916         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
14917         and MONO_TYPE_MVAR.
14918         (unwrap_arrays): Remove duplicate tests.
14919         (find_generic_param): Rename from 'has_same_context'.  Now walks a
14920         generic instantiated class to find any arguments that are generic
14921         parameters.
14922         (mono_type_create_from_typespec_full): Use find_generic_param to
14923         avoid evicting some generic instantiations from the typespec
14924         cache.
14926 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
14928         * reflection.c: fixed writing of doubles on ARM FPA.
14930 2005-12-02  Robert Jordan  <robertj@gmx.net>
14932         * icall.c: Fixed EventInfo.ReflectedType (#76829).
14934 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14936         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
14937         least on SUSE 10 they are not the same (on debian, they are just the
14938         same thing).
14940 2005-12-01  Raja R Harinath  <rharinath@novell.com>
14942         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
14943         DeclaringType for VARs and MVARs.
14944         * class.c (set_generic_param_owner): Fix initialization of owner
14945         fields.
14947 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
14949         * icall.c: fixed Enum.ToObject() to correctly convert the values.
14951 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14953         * threadpool.c: workaround for a bug that shows up on the Mac:
14954         select()+connect() on a blocking socket is not like it should
14955         be, so we proceed to connect() in that case, wasting the I/O
14956         threadpool thread until connect succeedes. Fixes bug #75436.
14958 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14960         * threadpool.c: fix typo when setting file descriptor states.
14962 2005-11-28  Raja R Harinath  <rharinath@novell.com>
14964         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
14965         * metadata.c (mono_metadata_parse_method_signature_full): Don't
14966         create a temporary signature container.
14967         (mono_metadata_parse_generic_param): Update to changes.
14968         (mono_type_create_from_typespec_full): Update to changes.
14969         * loader.c (method_from_memberref): Don't use a
14970         MonoGenericContainer while parsing a memberref signature.
14971         (method_from_methodspec): Remove dead-store of the 'container'
14972         variable.  It's overwritten before use.
14974         * metadata.c (mono_type_create_from_typespec_full): Make debugging
14975         checks tighter.
14976         (mono_metadata_parse_generic_param): Likewise.
14977         * loader.c (find_method_in_class): Does not need a
14978         MonoGenericContainer.  Use 'mono_method_signature' rather than
14979         'mono_method_signature_full'.
14980         (find_method, mono_get_method_constrained, method_from_memberref):
14981         Update to changes.
14983         * metadata.c (mono_type_create_from_typespec_full): Ensure that
14984         owner-less generic-parameters are never evicted from the typespec
14985         cache.
14987         * loader.c (method_from_memberref): Don't use the current context
14988         when parsing signatures.
14989         (method_from_methodspec, mono_get_method_from_token): Update to changes.
14991         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
14992         side-effects in g_assert.
14993         * loader.c (mono_get_method_from_token): Resolve klass earlier so
14994         that we don't potentially lose information.
14996 2005-11-26  Dick Porter  <dick@ximian.com>
14998         * icall.c:
14999         * threads.c: icalls to implement basic (ie, not named)
15000         System.Threading.Semaphore.
15002 2005-11-24  Dick Porter  <dick@ximian.com>
15004         * process.c
15005         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
15006         Use GetProcessId() if it's available.
15008 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
15010         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
15012 2005-11-23  Raja R Harinath  <rharinath@novell.com>
15013             Ankit Jain  <jankit@novell.com>
15015         * loader.c (mono_get_method_from_token): Initialize 'method' field
15016         of all generic parameters before parsing the signature.  Remove
15017         code that "fixed"-up MVAR references.
15019 2005-11-23  Ankit Jain  <jankit@novell.com>
15021         * metadata.c (mono_metadata_has_generic_params):
15022         (mono_metadata_load_generic_param_constraints):
15023         (mono_metadata_load_generic_params): Move duplicate code ...
15024         (mono_metadata_get_generic_param_row): ... here. Returns the
15025         first row-id in GenericParam table for a given owner (token).
15026         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
15027         prototype.
15029 2005-11-23  Raja R Harinath  <rharinath@novell.com>
15030             Ankit Jain  <jankit@novell.com>
15032         * metadata.c (mono_metadata_class_equal): Pass signature_only when
15033         comparing VARs too.
15034         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
15035         type->data.generic_param only if the type is an MVAR.
15036         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
15037         leak owner-less VARs and MVARs into managed space.
15039 2005-11-21  Martin Baulig  <martin@ximian.com>
15041         * class-internals.h
15042         (MonoMethod): Moved the `generic_container' here from
15043         `MonoMethodNormal' since we now also need it for
15044         `MonoMethodPInvoke';
15045         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
15046         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
15047         an union containing both `MonoMethodNormal' and
15048         `MonoMethodPInvoke'.
15050         * loader.c
15051         (mono_get_method_from_token): Allow implementing generic methods
15052         as interncalls.
15054         * threads.c
15055         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
15056         icall.
15058 2005-11-17  Dick Porter  <dick@ximian.com>
15060         * icall.c: 
15061         * process.h: 
15062         * process.c: Split the Process Start_internal icall into
15063         ShellExecuteEx_internal and CreateProcess_internal, which are
15064         called depending on whether UseShellExecute is true.  Fixes bug
15065         76670.
15067         * appdomain.c (MONO_CORLIB_VERSION): Incremented
15069 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
15071         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
15072         'msize' parameters, use the information in 'mspec' instead.
15073         (emit_object_to_ptr_conv): Ditto.
15075         * marshal.c (emit_struct_conv): Handle explicit layout structs with
15076         fields out of order. Fixes #76733.
15078 2005-11-17  Ankit Jain  <jankit@novell.com>
15080         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
15082 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
15084         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
15085           bug #76575.
15087 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
15089         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
15090         for types with non-auto layout. Fixes #76717.
15092 2005-11-16  Ankit Jain  <jankit@novell.com>
15094         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
15095         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
15096         if generic_context is null.
15097           (mono_metadata_generic_param_equal): param->owner can be null.
15098           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
15099         null.
15101 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
15103         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
15104         the correct value.
15106 2005-11-15  Martin Baulig  <martin@ximian.com>
15108         * object.c (set_value): Use mono_class_from_mono_type() instead of
15109         the hack for generic instances; fixes #76136.
15111 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
15113         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
15114         fields.
15116         * image.c (load_metadata_ptrs): Initialize the new fields.
15118         * reflection.c (create_dynamic_mono_image): Ditto.
15120         * reflection.c (build_compressed_metadata): Use the new fields.
15122         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
15123         icall.
15125         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
15126         icall.
15127         
15128 2005-11-15  Ankit Jain  <jankit@novell.com>
15129             Raja R Harinath  <harinath@gmail.com>
15131         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
15132         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
15133         new per-generic_container cache if the cached MonoType's context matches
15134         the current context.
15135           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
15136         to the expected context.
15137           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
15139 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15141         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
15142         we changed the signature of an icall.
15143         * icall.c: Modify to mono_double_ParseImpl return true/false 
15144         depending on the success, instead of throwing the exception. This will
15145         help us in Double.TryParse methods.
15146         
15147 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
15149         * marshal.c (emit_marshal_object): Throw an exception when
15150         marshalling 'object' instead of crashing. Fixes #76696.
15152 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
15154         * class-internals.h: Add prototype for mono_type_get_full_name ().
15156 2005-11-11  Dick Porter  <dick@ximian.com>
15158         * threads.c (mono_thread_manage): Make sure the main thread has
15159         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
15161 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
15163         * loader.c (mono_loader_set_error_type_load): Log a warning to the
15164         console about the missing type.
15165         (mono_loader_set_error_method_load): Ditto.
15167 2005-11-09  Miguel de Icaza  <miguel@novell.com>
15169         * mono-config.c (mono_get_config_dir): Set the system defaults if
15170         none is specified.
15172         * assembly.c (mono_set_dirs): New API entry point to set the
15173         assembly and the config directory in one call
15175 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
15177         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
15178         the ftnptr was created from a delegate in a domain other than the
15179         current domain. Fixes #75377.
15181         * exception.h exception.c: Add mono_get_exception_not_supported ().
15183 2005-11-08  Martin Baulig  <martin@ximian.com>
15185         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
15187 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
15189         * security-manager.h: Added definitions to deal with strongname key 
15190         pairs bigger (and smaller) than 1024 bits.
15191         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
15192         adjust wrt the public key length being used.
15194 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
15196         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
15197           Windows build (r51396-51397).
15199 2005-11-03  Martin Baulig  <martin@ximian.com>
15201         * class.c (mono_class_setup_vtable_general): Also add generic
15202         methods to the vtable; fixes #76581.
15204 2005-11-01  Miguel de Icaza  <miguel@novell.com>
15206         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
15207         sure that we lookup GetString method from the System.Text.Encoding
15208         class, not the derived class or we get an empty method.
15210         Fixed class #76612.
15212 2005-10-25  Miguel de Icaza  <miguel@novell.com>
15214         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
15215         if it has been previously set (embedders). 
15217         Make mono_set_rootdir available also on Unix.
15219 005-10-24  Robert Jordan  <robertj@gmx.net>
15221         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
15223 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
15225         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
15226         only calls which are made to native code use this flag.
15228         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
15230 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
15232         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
15233         Add support for FieldBuilders.
15235 2005-10-29  Martin Baulig  <martin@ximian.com>
15237         * mono-debug.c
15238         (mono_debug_using_mono_debugger): New public method; returns
15239         whether we're running inside the debugger.
15241 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
15243         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
15244         for Method/Constructor/FieldBuilders.
15246 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
15248         * reflection.c (module_add_cattrs): Save custom attributes for global methods
15249         and fields as well.
15251 2005-10-26  Martin Baulig  <martin@ximian.com>
15253         * mono-debug-debugger.c
15254         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
15256 2005-10-24  Raja R Harinath  <harinath@gmail.com>
15258         * icall.c (base64_to_byte_array): Don't pass an out-of-range
15259         integer to isspace.
15261 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
15263         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
15264         when passing valuetypes byref. Fixes #76502.
15266 2005-10-19  Jackson Harper  <jackson@ximian.com>
15268         * profiler.c: Don't put a . in front of types that are not in a
15269         namespace.
15271 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
15273         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
15275 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
15277         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
15278         #76436.
15279         (mono_marshal_get_ldflda_wrapper): Fix a warning.
15281 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15283         * assembly.c metadata-internals.h icall.c: Define an additional
15284         parameter for mono_assembly_name_parse_full, so we can avoid creating
15285         S.R.AssemblyName.Version when no version info wasn't passed.
15286         
15287 2005-10-09  Miguel de Icaza  <miguel@novell.com>
15289         * class.c (mono_type_get_full_name): Reimplement method that was
15290         removed. 
15292         * image.c: Some docs
15294 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
15296         * profiler.c (output_newobj_profile): Fix printing of Total memory
15297         on x86.
15299 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
15301         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
15303 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
15305         * threads.c: remove debug output.
15307 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
15309         * threads.c (mono_thread_manage): Fix crashes if more than 64
15310         threads need to be aborted. Hopefully fixes #75899.
15312         * assembly.c (mono_stringify_assembly_name): New helper function.
15314         * class.c: Use mono_stringify_assembly_name instead of the similar
15315         static function.
15317         * assembly.h assembly.c: Add support for calling a postload search 
15318         hook if an assembly cannot be loaded.
15320         * appdomain.c: Register new search hooks which call the AssemblyResolve
15321         events in AppDomain. Fixes #75231
15323 2005-10-07  Martin Baulig  <martin@ximian.com>
15325         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
15326         methods without debug info.
15328 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
15330         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
15331         wrappers.
15333 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15335         * file-io.c: now that we return symlinks, use lstat and, when the file
15336         is a symbolic link, stat, to get the file attributes. Also avoid the
15337         conversion to/from utf16/external.
15339 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
15341         * class.c (mono_class_layout_fields): Compute klass->has_references
15342         correctly if an embedded valuetype is not yet initialized. Fixes
15343         #76331.
15345 2005-10-04  Martin Baulig  <martin@ximian.com>
15347         * metadata.c
15348         (mono_metadata_load_generic_param_constraints): New public
15349         function; splitted the constraints loading out from
15350         mono_metadata_load_generic_params().
15352         * class.c (mono_class_create_from_typedef): Call
15353         mono_metadata_load_generic_param_constraints() after setting up
15354         the type and creating our parent; fixes #75329.
15356 2005-10-04  Martin Baulig  <martin@ximian.com>
15358         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
15359         non-dynamic parent classes.
15361 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
15363         * file-io.c : win32 build fix (ETXTBSY seems not found).
15365 2005-10-04  Martin Baulig  <martin@ximian.com>
15367         * reflection.c
15368         (mono_image_get_methodspec_token): Make the cache actually work;
15369         fixes #75974.
15371 2005-10-04  Martin Baulig  <martin@ximian.com>
15373         * class.c (mono_class_name_from_token): Removed the unneccessary
15374         `MonoGenericContext *' argument.
15376 2005-10-04  Martin Baulig  <martin@ximian.com>
15378         * loader.c
15379         (method_from_methodspec): Make the caching work again; fixes the
15380         performance regression from #76262.
15382 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15384         * file-io.c:
15385         * file-io.h:
15386         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
15387         GetFileSystemEntries that performs the same work but without going
15388         into io-layer, locking, etc.
15390 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
15392         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
15393         ThreadState_Stopped as well. Fixes #76047.
15395 2005-09-29  Martin Baulig  <martin@ximian.com>
15397         * class.c
15398         (inflate_generic_context): If the new context has a `gmethod', set
15399         its `container' that that gmethod's `container'.
15401         * metadata.c
15402         (mono_metadata_parse_generic_param): Simplify things;
15403         `generic_container = generic_context->container;' is just fine.
15405         * loader.c (method_from_methodspec): Code cleanups.
15407 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
15409         * decimal.c: fix warning (and let gcc generate correct
15410         code on ARM with optimizations).
15412 2005-09-28  Martin Baulig  <martin@ximian.com>
15414         * loader.c
15415         (method_from_memberref): Added `MonoGenericContext *class_context'
15416         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
15417         (method_from_methodspec): If we're a memberref, use the enclosing
15418         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
15420 2005-09-28  Martin Baulig  <martin@ximian.com>
15422         * object.c (mono_runtime_invoke_array): Added support for
15423         MONO_TYPE_GENERICINST; fixes #75917.
15425 2005-09-27  Martin Baulig  <martin@ximian.com>
15427         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
15428         `k->byval_arg.type' to determine the actual type.
15430         * loader.c (method_from_methodspec): Removed some hacks.
15432 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
15434         * class-internals.h (mono_field_is_deleted): Do the test for
15435         rtspecialname before we check the actual name of the field. This
15436         prevents us from dereferencing a pointer into the string table,
15437         saving us from accessing a few pages
15439         * *.c: Replace the use of {Enter,Leave}CriticalSection with
15440         macros. This will allow a deadlock debugger to easily be plugged
15441         in.
15443 2005-09-27  Martin Baulig  <martin@ximian.com>
15445         * loader.c (method_from_methodspec): Create a "signature"
15446         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
15448 2005-09-27  Martin Baulig  <martin@ximian.com>
15450         * class.c
15451         (inflate_generic_class): Correctly set the new context's
15452         container.
15454         * loader.c
15455         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
15456         instead of a `MonoGenericContext *'.
15457         (mono_method_signature_full): Take a `MonoGenericContainer *'
15458         instead of a `MonoGenericContext *'.
15460         * metadata.c
15461         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
15462         instead of a `MonoGenericContext *'.
15463         (mono_metadata_parse_method_signature_full): Likewise.
15465 2005-09-26  Martin Baulig  <martin@ximian.com>
15467         * class.c
15468         (mono_class_from_generic_parameter): Set `klass->generic_container'
15469         (mono_class_from_generic_parameter): Likewise.
15470         (mono_bounded_array_class_get): We inherit the generic container
15471         from the element class.
15473         * loader.c
15474         (find_method, find_method_in_class): Take a `MonoGenericContext *'
15475         argument rather than computing it here.
15476         (method_from_memberref): Correctly set the generic context before
15477         parsing the signature.  Fixes #75681.
15479 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
15481         * object.c (mono_class_has_special_static_fields): Fix warnings.
15483 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15485         * assembly.c: Add parse_public_key function, to
15486         par the public keys. Also added mono_assembly_name_parse_full,
15487         to define it the parsed key should be freed or not.
15488         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
15489         to parse a long format assembly name.
15490         * metadata-internals.h: Keep mono_assembly_name_parse_full as
15491         private, since calling it to preserve the key requires
15492         freeing it manually.
15493         
15494 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
15496         * locales.c : removed HAVE_ICU part.
15498 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
15500         * object.c (mono_class_create_runtime_vtable): Avoid calling 
15501         field_is_special_static if the klass has no special static fields.
15503         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
15504         (MonoCachedClassInfo): Likewise.
15506         * object.c (mono_class_has_special_static_fields): New helper function.
15508 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15510         * class.c (mono_class_create_from_typedef): Don't call 
15511         interfaces_from_typedef_full for enums.
15512         (mono_class_create_from_typedef): Compute the base types of enums directly
15513         without calling mono_class_setup_fields ().
15514         (mono_class_find_enum_basetype): New helper function.
15516         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
15517         one place inside the string heap.
15518         
15519 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
15521         * class.c: locking fixes, code cleanups, some docs added.
15522         Allocate some data structures in the image mempool.
15524 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15526         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
15527         the example code.
15528         
15529 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
15531         * class-internals.h, class.c, reflection.c: reduce memory taken by
15532         MonoClass.
15534 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
15536         * metadata.c, metadata.h, loader.h: documentation updates, code and
15537         API cleanups.
15539 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
15541         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
15542         the example code.
15544         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
15545         page faults caused by the runtime while reading metadata.
15547 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15549         * socket-io.c: the field names were changed 3 months ago and no one
15550         realized until bug #76077 got filed!
15552 2005-09-20  Martin Baulig  <martin@ximian.com>
15554         * icall.c (assembly_icalls): Removed some unused debugger icalls.
15556 2005-09-20  Martin Baulig  <martin@ximian.com>
15558         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
15559         write the rank into the class entry.
15561 2005-09-20  Martin Baulig  <martin@ximian.com>
15563         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
15565 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
15567         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15569         * icall.c (custom_attrs_defined_internal): New icall.
15571         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
15572         function.
15573         (mono_custom_attrs_construct_by_type): New helper function.
15575 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
15577         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
15578         terminate the resulting string. Fixes #76123.
15580 2005-09-16  Martin Baulig  <martin@ximian.com>
15582         * mono-debug.c
15583         (mono_debug_add_method): Ignore inflated methods for the moment.
15585 2005-09-14  Martin Baulig  <martin@ximian.com>
15587         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
15589 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
15591         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
15592         return a success/failure indication.
15593         (mono_metadata_interfaces_from_typedef_full): Ditto.
15594         (get_constraints): Ditto.
15596 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
15598         * marshal.c (emit_marshal_array): Fix handling of null arrays.
15599         
15600         * marshal.c (emit_marshal_array): Add support for returning string
15601         arrays from delegates. Fixes #76063.
15603         * marshal.c: Use the emit_ldloc/stloc macros where possible.
15605 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
15607         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
15608         icall.
15610 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
15612         * reflection.c icall.c: Fix after mono_get_exception_type_load
15613         signature change.
15615         * assembly.c (mono_assembly_get_assemblyref): New helper function.
15616         (mono_assembly_load_reference): Use the new helper.
15618         * class-internals.h (MonoLoaderError): New structure containing 
15619         information about type loading errors.
15621         * class-internals.h loader.c: Add APIs to store per-thread loader
15622         error information.
15624         * loader.c class.c: Set the loader error if needed.
15626         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
15628 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
15630         * decimal.c: fixed to handle the broken ARM fp format.
15632 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
15634         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
15635         broken.
15637 2005-09-06  Martin Baulig  <martin@ximian.com>
15639         * domain.c (supported_runtimes): Added v2.0.50727.
15641 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
15643         * culture-info.h: reduce the size of some structures.
15645 2005-09-05  Martin Baulig  <martin@ximian.com>
15647         Reflect latest API changes in the August CTP.
15649         * icall.c
15650         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
15651         ("MonoType.HasGenericArguments"): Removed.
15652         ("MonoMethod.BindGenericParameters"): Renamed to
15653         "MakeGenericMethod".
15654         ("MethodBuilder.BindGenericParameters"): Renamed to
15655         "MakeGenericMethod".    
15657 2005-09-05  Martin Baulig  <martin@ximian.com>
15659         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
15661 2005-09-05  Martin Baulig  <martin@ximian.com>
15663         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15665         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
15666         generic_container is non-NULL.
15668 2005-09-05  Martin Baulig  <martin@ximian.com>
15670         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15672         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
15674 2005-08-29  Michal Moskal  <malekith@nemerle.org>
15676         * reflection.c (encode_locals,
15677         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
15678         for large generic types.
15680 2005-09-05  Martin Baulig  <martin@ximian.com>
15682         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15684         * class.c (mono_dup_array_type): New public method.
15685         (mono_metadata_signature_deep_dup): New public method.
15686         (dup_type): Correctly duplicate array and function types.
15688 2005-09-05  Martin Baulig  <martin@ximian.com>
15690         Applying a patch from Michal Moskal <malekith@nemerle.org>.
15692         * reflection.c (get_default_param_value_blobs): Handle generic types
15693         and generic methods.
15695 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
15697         * class.c: Fixed error reporting (method/class were inversed) for 
15698         inheritance demands.
15699         * security-manager.c|h: Added the AppDomain when calling the managed
15700         System.Security.SecurityManager.InheritanceDemand method.
15702 2005-09-01  Raja R Harinath  <rharinath@novell.com>
15704         * reflection.c (encode_marshal_blob): 'marshaltype' and
15705         'marshaltyperef' are alternate sources for the custom marshaler
15706         name.
15708 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
15710         * class.c: fix creation of array classes with rank == 1
15711         (patch by Ankit Jain <jankit@novell.com>).
15713 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
15715         * object.c: fix check for creating the bound data for arrays vs
15716         szarrays.
15718 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15720         * object.c: configuration file name is now based on the executable name,
15721         not the image name. Fixes bug #75931.
15723 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
15725         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
15726         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
15728 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
15730         * rand.c: Use wincrypt.h instead of WinCrypt.h.
15732 2005-08-24  Ankit Jain  <jankit@novell.com>
15733             Raja R Harinath  <rharinath@novell.com>
15735         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
15736           called by it recursively.
15737           (mono_class_init): Remove special case in pending_init handling, since it's
15738           superseded by the fix to mono_class_from_typeref.
15740 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
15742         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
15743         BROKEN_THREAD_START stuff.
15745 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
15747         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
15748         trampoline.
15750         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
15751         
15752         * object.c (mono_delegate_ctor): Replace the original function address with
15753         a delegate trampoline.
15755 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
15757         * icall.c: add boolean argument to base64_to_byte_array and 
15758         InternalFromBase64String to control whether a whitespace-only string
15759         is allowed (or should casue a FormatException to be thrown). We need
15760         this as the behavior has changed between MS.NET 1.x and 2.0, and we
15761         to match the MS behaviour in both profiles.
15762         * appdomain.c: Bump corlib version.
15764 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15766         This patch implements a big portion of publisher policy
15767         support, used to bind assembly versions and redirect
15768         one assembly from version A to version B.
15770         * assembly.c:
15771         New GSList loaded_assembly_bindings, for storing the cached
15772         assembly bindings.
15773         (assembly_binding_maps_name): New static function for checking if a 
15774         assembly binding information maps an assembly name.
15775         (mono_assembly_binding_info_free): New function for freeing
15776         assembly binding information resources.
15777         (get_publisher_policy_info): New static function for retrieving 
15778         assembly binding information from a MonoImage.
15779         (compare_versions): New static function for comparing an assembly
15780         binding information data and the version of an assembly name.
15781         (check_policy_versions): New static function for checking if an
15782         assembly binding info mapping an assembly name is valid for it.
15783         (mono_assembly_load_publisher_policy): New static function for
15784         loading the 'policy.major.minor.MyAssembly' image for an assembly
15785         with an assembly name 'aname'.
15786         (mono_assembly_bind_version): New static function for updating
15787         assembly redirection.
15788         (mono_assembly_apply_binding): New static function for applying
15789         assembly binding.
15790         (search_binding_loaded): New static function for searching 
15791         loaded assembly binding infos in the cache domain.
15792         (mono_assembly_load_full): Don't apply assembly binding for
15793         reflection only assemblies.
15795         * metadata-internals.h: Add MonoAssemblyBindingInfo,
15796         which contains information about assembly binding. Also
15797         declare signature for mono_config_parse_publisher_policy ()
15798         function, used to retrieve pub policy info.
15799         
15800         * mono-config.c:
15801         (publisher_policy_start): New static function used to parse publisher 
15802         policy config files.
15803         (publisher_policy_parser): New static MonoParseHandler containing 
15804         the functions used when parsing config files.
15805         (mono_config_parse_publisher_policy): New function for parsing
15806         publisher policy files.
15807         
15808 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
15810         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
15812         * marshal.c (mono_delegate_free_ftnptr): Ditto.
15814         * object.c (mono_get_addr_from_ftnptr): New helper function.
15816         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
15818         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15820 2005-08-19  Dick Porter  <dick@ximian.com>
15822         * threads.c, threads.h, appdomain.c, appdomain.h,
15823         profiler-private.h, monitor.c, object.c, object-internals.h,
15824         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
15825         store the thread ID, so it can hold a 64 bit value if needed.
15827 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
15829         * reflection.c (mono_reflection_create_dynamic_method): Store the
15830         handle class into the method references as well so ldtoken works in
15831         dynamic methods.
15833         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
15834         types.
15836 2005-08-19  Ankit Jain <jankit@novell.com>
15838         Fix #75847.
15839         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
15840           here rather than using the method signature of a arbitrary function
15841           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
15842           two arguments.
15843           Hack done with Harinath.
15845 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15847         * threadpool.c: disable printing stack traces when we get a exception
15848         in a threadpool thread. I need to do more testing to figure out which
15849         cases actually print this. Fixes bug #75828.
15851 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15853         * icall.c: there might be ignored whitespace after the last '='. This
15854         fixes length computation and bug #75840.
15856 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
15858         * assembly.c (mono_assembly_load_full): Consider .exe extension as
15859         well. Fixes #75809.
15861         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
15862         #75784.
15863         
15864         * reflection.c (create_custom_attr_data): Ditto.
15866 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
15868         * locales.c, culture-info.h : removed RegionLCIDMap.
15869         * culture-info-tables.h : regenerated.
15871 2005-08-16  Martin Baulig  <martin@ximian.com>
15873         * class.c (mono_type_get_name_recurse): Small fix.
15875 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
15877         * locales.c : indentation fixie.
15879 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
15881         * object-internals.h,
15882           locales.h,
15883           locales.c,
15884           culture-info.h,
15885           icall.c : added RegionInfo table support.
15886         * culture-info-table.h : regenerated for region support.
15888 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
15890         * reflection.c (resolve_object): handle all kinds of MonoMethod
15891         including generic ones
15893 2005-08-12  Ankit Jain <jankit@novell.com>
15895         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
15896           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
15898 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
15900         * process.c: Don't close a thread handle when it's NULL. This is a
15901         workaround for bug #75733.
15903 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
15905         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
15907 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
15909         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
15911 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15913         * threadpool.c: if a work item in the thread pool has a callback that
15914         catches a exception, don't propagate it after invoking the callback.
15915         Fixes bug #75336.
15917 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
15919         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
15921         * class-internals.h (MonoCachedClassInfo): Add some new fields.
15923         * class.c (mono_class_init): Load field info lazily in the AOT case.    
15925         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
15927 2005-08-03  Ankit Jain  <jankit@novell.com>
15929         Fix #75683.
15930         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
15931           PInvoke calling convention is 0.
15933 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
15935         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
15936         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
15938 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
15940         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
15941         to handle threads not started by the GC (patch by Michael Meeks
15942         <michael.meeks@novell.com>).
15944 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
15946         * reflection.c: Make buffer used in emitting types larger for some
15947         big generic types (patch by Michal Moskal).
15949 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
15951         * mono-debug.c: Fix some (not all) alignment problems.
15953 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15955         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
15956         Invoke mono_image_load_from_data_full passing the refonly
15957         parameter.
15959         * assembly.c
15960         (mono_assembly_open_from_bundle): Add the refonly argument, 
15961         in order to pass it to other methods it calls to.
15962         (do_mono_assembly_open): Add the refonly argument, in order 
15963         to pass it to other methods it calls to.
15964         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
15965         the refonly parameter to it.
15967         * image.c: Add loaded_images_refonly_hash and
15968         loaded_images_refonly_guid_hash to cache the reflection
15969         only loaded images.
15970         (mono_images_init): Initialize the hash tables used for
15971         caching the reflection only images.
15972         (load_modules): Invoke mono_image_open_full passing the refonly
15973         parameter to load the modules the correct way.
15974         (build_guid_table): Add the refonly argument, to re-build the 
15975         correct hash table.
15976         (do_mono_image_open): Added the refonly argument, in order to
15977         define it for the loaded image.
15978         (mono_image_loaded_full): New function, which receives an
15979         additional parameter to look for the image in the refonly or
15980         non-refonly section.
15981         (mono_image_loaded): Updated, using mono_image_loaded_full.
15982         (mono_image_loaded_by_guid_full): The same case that happens
15983         with mono_image_loaded_full.
15984         (mono_image_loaded_by_guid): Likewise.
15985         (register_image): Use the ref_only variable inside MonoImage
15986         to decide in which hash table store the current image.
15987         (mono_image_open_from_data_full): Rename
15988         mono_image_open_from_data to mono_image_open_from_data_full,
15989         adding the refonly argument, to define the ref_only variable 
15990         inside MonoImage.
15991         (mono_image_open_from_data): Return 
15992         mono_image_open_from_data_full.
15993         (mono_image_open_full): Rename mono_image_open to
15994         mono_image_open_full, receiving the new refonly argument,
15995         to pass it to inner methods.
15996         (mono_pe_file_open): Update this function, to open
15997         a MonoImage as a non-refonly image.
15998         (mono_image_close): Use the refonly variable inside
15999         MonoImage to remove the image from the correct caches.
16001         * image.h: Add the signatures of mono_image_open_full,
16002         mono_image_open_from_data_full, mono_image_loaded_full,
16003         mono_image_loaded_by_guid_full.
16005         * metadata-internals.h: Add the ref_only field to 
16006         MonoImage.
16007         
16008 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16010         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
16011         Fix the last behavior, which used to load the assemblies and
16012         extract MonoReflectionAssemblyName information, instead of
16013         extract it from the metadata tables. Needed for Reflection
16014         Only assemblies.
16015         
16016 2005-07-29  Martin Baulig  <martin@ximian.com>
16018         * mono-debug-debugger.c
16019         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
16020         not initialized.
16022         * mono-debug.c
16023         (mono_debug_address_from_il_offset): Check whether we have
16024         debugging support before attempting to take the lock.
16025         (mono_debug_source_location_from_address): Likewise.
16026         (mono_debug_source_location_from_il_offset): Likewise.
16027         (mono_debug_il_offset_from_address): Likewise.
16028         (mono_debug_address_from_il_offset): Likewise.
16030 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
16032         * class.c (mono_class_from_name_case): Add support for dynamic images.
16033         Fixes #75650.
16035         * object.c (mono_class_compute_gc_descriptor): Add a workaround
16036         for #75479.
16038 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
16039         
16040         * reflection.c (mono_method_get_object): Fix warning.
16042 2005-07-28  Martin Baulig  <martin@ximian.com>
16044         * mono-debug.c
16045         (mono_debug_add_wrapper): Also write the wrapper type.
16047 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
16049         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
16050         
16051         * class.c (mono_class_init): Avoid reading nested classes if the AOT
16052         data indicates the class has none.
16054 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
16056         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
16057         loader lock with the debugger lock. Prevents deadlocks for beagle.
16059         Beagle can now run on an smp box for a weekend without any
16060         issues. Woohoo!
16062 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
16064         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
16065         in a module. Fixes #75629.
16067 2005-07-26  Martin Baulig  <martin@ximian.com>
16069         * mono-debug.c (mono_debug_add_wrapper): New static method.
16070         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
16071         interncall or a wrapper.
16073         * mono-debug.h (MonoDebugWrapperData): New public typedef.
16074         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
16075         (MONO_DEBUGGER_VERSION): Bump to 51.
16077         * mono-debug-debugger.c
16078         (mono_debugger_add_type): Removed this empty function.
16079         (mono_debugger_add_method): Likewise.
16081 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
16083         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
16084         before accessing method->slot.
16086 2005-07-21  Jb Evain  <jbevain@gmail.com>
16088         * reflection.c (method_encode_clauses/class): Handle filters clauses.
16089         Fixes #75010.
16091 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
16093         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
16094         #75587.
16096 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
16098         * image.h image.c: Add mono_image_get_guid () API function.
16100 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
16102         There were issues when multiple threads tried to load
16103         assemblies. A deadlock was created between assemblies_mutex and
16104         mono_domain_assemblies_lock. This fixes the issue by making the
16105         assembly ref counting be lock free. See bug 75586.
16106         
16107         * image.c (mono_image_close): The add ref function here was using
16108         Interlocked operations while the unref was using a mutex and a
16109         --. I don't think this was ever a bug that would be exposed in a
16110         non-pendantic way (ie, by an embedder doing a ref on one thread
16111         and an unref on another), but for the sake of correctness, this is
16112         now Interlocked.
16114         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
16115         (mono_assembly_load_reference): Call mono_assembly_addref rather
16116         than touching the refcount ourselves.
16117         (mono_assembly_close): Use InterlockedDecrement to unref the
16118         assembly. Don't acquire the lock unless it is actually needed.
16120 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
16122         * class.c (mono_class_layout_fields): Fix calculation of has_references
16123         for generic types.
16125 2005-07-12  Martin Baulig  <martin@ximian.com>
16127         Applying a patch from Michal Moskal <malekith@nemerle.org>.
16129         * metadata.c
16130         (mono_type_hash): Provide better hashing for generic instances.
16131         (mono_generic_inst_hash): Improve hashing.
16132         (mono_generic_class_hash): Likewise.
16134         * reflection.c (mymono_metadata_type_hash): Improve hashing for
16135         generic instances.
16137 2005-07-12  Martin Baulig  <martin@ximian.com>
16139         * reflection.c (mono_reflection_create_runtime_class): Remove the
16140         hack for generic type definitions and non-`Run' assemblies.
16141         (mono_reflection_bind_generic_parameters): Also use
16142         `klass->wastypebuilder' to check for TypeBuilders.
16144 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
16146         * class.c (mono_class_layout_fields): Fix calculation of has_references
16147         for generic types.
16149         * class.c (inflate_generic_class): Fix a leak.
16150         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
16151         for generic types.
16153 2005-07-11  Martin Baulig  <martin@ximian.com>
16155         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
16156         on error.
16158 2005-07-11  Martin Baulig  <martin@ximian.com>
16160         * loader.c (find_method): Also lookup in
16161         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
16163 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
16165         * appdomain.c (mono_domain_unload): Don't free the error message
16166         before passing it to mono_get_exception_...
16168         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
16169         
16170 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
16172         * threads.c: try to better guess an available RT signal (bug #75387).
16174 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
16176         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
16177         and CACHE_OBJECT.
16179 2005-07-07  Martin Baulig  <martin@ximian.com>
16181         * class.c (mono_type_get_name_full): Return NULL for
16182         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
16183         fixes #75408.
16185 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
16187         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
16188         exit the appdomain as well being aborted.
16190         * threadpool.c: Create all threadpool threads inside the root appdomain, and
16191         change back to the root domain after calling managed code. This enables
16192         appdomains using threadpools to be unloaded.
16194 2005-07-07  Martin Baulig  <martin@ximian.com>
16196         * class-internals.h
16197         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
16198         into `MonoDynamicGenericClass' since we only need it for dynamic
16199         types.
16201         * reflection.c (mono_class_bind_generic_parameters): We don't need
16202         to compute the `parent' here.
16204 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
16206         * culture-info-table.h : regenerated.
16208 2005-07-06  Martin Baulig  <martin@ximian.com>
16210         * icall.c
16211         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
16213         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
16215 2005-07-06  Martin Baulig  <martin@ximian.com>
16217         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
16218         we're doing a signature-only comparision; fixes #74945.
16220 2005-07-06  Martin Baulig  <martin@ximian.com>
16222         * class-internals.h (MonoGenericClass): Moved some things out into
16223         a new `MonoInflatedGenericClass' type.  
16224         (MonoInflatedGenericClass): New type; the `klass' of a
16225         `MonoGenericClass' is now computed lazyly in
16226         mono_get_inflated_generic_class().      
16228         * class.c (mono_get_inflated_generic_class): New public function.
16229         (mono_class_inflate_generic_method): Removed the unused
16230         `MonoClass *' argument.
16231         (setup_generic_vtable): Don't call mono_get_inflated_method() on
16232         all the methods.
16233         (mono_class_create_generic): Make this static and merge it with
16234         mono_class_create_generic_2(); we're now called automatically from
16235         mono_get_inflated_generic_class().
16237         * loader.c (mono_method_signature): Call
16238         mono_get_inflated_method() here.
16240 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
16242         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
16243         type of fields with RVA.
16245         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
16246         for this pseudo class.
16247         (my_mono_class_from_generic_parameter): Likewise.
16248         (mono_class_init): Allow interfaces to have cctors.
16250 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
16252         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
16253         lazily for AOT methods.
16255 2005-07-05  Martin Baulig  <martin@ximian.com>
16257         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
16258         returns FALSE for a successful match, not TRUE.
16260 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
16262         * loader.c (mono_method_get_index): Optimize this a bit.
16264 2005-07-04  Martin Baulig  <martin@ximian.com>
16266         * class.c
16267         (class_compute_field_layout): Move the check for generic type
16268         definitions into mono_class_layout_fields().  Fixes #74684.
16269         (mono_class_from_generic_parameter): Correctly compute
16270         `klass->parent'; fixes #75457.
16272         * reflection.c (register_assembly, register_module): Make sure
16273         `domain->rejobject_hash' is already created.
16275 2005-07-02  Martin Baulig  <martin@ximian.com>
16277         * class-internals.h
16278         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
16279         `MonoDynamicGenericClass'.      
16281 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
16283         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
16284         returned by a field getter is null, since null is a valid value.
16286 2005-07-01  Martin Baulig  <martin@ximian.com>
16288         * reflection.c (mono_reflection_generic_class_initialize): Update
16289         the `dgclass->fields [i].parent' to the correct class.
16290         (mono_image_get_fieldref_token): Use the declaring type, not the
16291         reflected type.
16293 2005-07-01  Martin Baulig  <martin@ximian.com>
16295         * loader.c (find_method): Also look in the interfaces; fixes #75429.
16297 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
16299         * threads.c (thread_cleanup): assert that thread != NULL
16300         (wait_for_tids_or_state_change): We were using the wrong variable
16301         when accessing wait->threads. `i' was always out of the bounds of
16302         the array.
16304 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16306         * loader.c: map user32 and kernel32 to libMonoSupportW
16308 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
16310         * appdomain.c (unload_thread_main): Mark this as WINAPI.
16312 2005-06-28  Martin Baulig  <martin@ximian.com>
16314         * loader.c (method_from_methodspec): Fix #75334.
16316 2005-06-28  Martin Baulig  <martin@ximian.com>
16318         Fix #74953 - Arrays now implement the generic IList<T> interface
16319         on the 2.0 platform.
16321         * class-internals.h (MonoDefaults): Added `generic_array_class'.
16323         * reflection.c (mono_class_bind_generic_parameters): New public
16324         function; similar to mono_reflection_bind_generic_parameters(),
16325         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
16327         * domain.c (mono_init_internal): Try to initialize.
16328         `mono_defaults.generic_array_class' here; this'll only succeed if
16329         we're using the 2.0 corlib.
16331         * icall.c
16332         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
16333         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
16334         (mono_lookup_internal_call): Added support for nested classes.
16336         * loader.c
16337         (mono_get_method_from_token): Set `result->signature->pinvoke' if
16338         we're an interncall and have generic arguments.
16340         * class.c
16341         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
16342         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
16343         instance of System.Array.InternalArray<T> for arrays, so they
16344         implement the generic IList<T> interface.
16346 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
16348         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
16349         (chastamar@yahoo.com). Fixes #75374.    
16351 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
16353         * culture-info-table.h: regenerated.
16355 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16357         * icall.c: handle spaces correctly for base64 strings.
16359 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
16361         * *.c: Kill some warnings.
16363 2005-06-23  Duncan Mak  <duncan@novell.com>
16365         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
16366         that this builds on Solaris 10 (x86).
16368 2005-06-23  Martin Baulig  <martin@ximian.com>
16370         * class.c
16371         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
16372         generic type definitions.
16374 2005-06-23  Martin Baulig  <martin@ximian.com>
16376         Fix #75331.
16378         * metadata.c (mono_class_get_overrides): Renamed to
16379         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
16380         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
16381         pass it to mono_get_method_full().
16383 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
16385         * reflection.c (mono_reflection_create_runtime_class): take the
16386         mono_domain_lock in this method. Prevents deadlocks
16388 2005-06-22  Martin Baulig  <martin@ximian.com>
16390         * loader.c (method_from_methodspec): Fix #75330.
16392 2005-06-22  Martin Baulig  <martin@ximian.com>
16394         * reflection.c (type_get_qualified_name): Use
16395         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
16396         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
16397         argument; use it if we don't have an assembly name.
16399 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
16401         * object.c: In mono_message_init, set "copy out" flag for in
16402         parameters with the [Out] flag.
16404 2005-06-21  Martin Baulig  <martin@ximian.com>
16406         * class.c
16407         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
16408         and MONO_TYPE_PTR.
16410 2005-06-21  Martin Baulig  <martin@ximian.com>
16412         * class.c (mono_class_init): Don't initialize `class->fields' for
16413         generic instances since they're initialized again in
16414         compute_field_layout(). 
16415         (compute_field_layout): Set the field's `generic_info' here; fix
16416         #75320. 
16418 2005-06-21  Martin Baulig  <martin@ximian.com>
16420         * class-internals.h
16421         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
16423         * metadata.c (mono_metadata_generic_method_equal): Also
16424         distinguish the `generic_class'; fixes #75334.
16426 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16428         * domain.c:
16429         * appdomain.c:
16430         * domain-internals.h:
16431         * reflection.c: 'domain_assemblies' field is now protected by its own
16432         lock. Don't call into managed code to run the AssemblyLoad event if we
16433         now there are no registered delegates for it.
16435 2005-06-20  Martin Baulig  <martin@ximian.com>
16437         * class.c (mono_class_is_assignable_from): Use a custom version of
16438         mono_class_has_parent() to make things work for generic instances;
16439         fix #75300.
16441 2005-06-20  Martin Baulig  <martin@ximian.com>
16443         * loader.c (method_from_methodspec): Apply a patch from
16444         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
16446 2005-06-20  Martin Baulig  <martin@ximian.com>
16448         * class.c (mono_class_init): Reverted Zoltan's last change; it
16449         breaks generics.
16451 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
16453         * threads.c (wait_for_tids_or_state_change): Add missing locking.
16455 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16457         * socket-io.c: fix the index in the socket array for writable/error
16458         sockets. Fixes bug #75306.
16460 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
16462         * class.c (mono_class_init): Allow interfaces to have static ctors.
16464 2005-06-17  Martin Baulig  <martin@ximian.com>
16466         * loader.c (method_from_methodspec): Use `context->container' when
16467         parsing the `gmethod->inst'.
16469 2005-06-17  Martin Baulig  <martin@ximian.com>
16471         * class.c (mono_type_get_name_recurse): Don't add the assembly
16472         name for type arguments.
16474 2005-06-15  Martin Baulig  <martin@ximian.com>
16476         * reflection.c (mono_image_get_inflated_method_token): Encode
16477         correct klass; fixes #75260.
16479 2005-06-13 Michal Moskal <malekith@nemerle.org>
16481         * icall.c: Make GetCorrespondingMethod/Constructor take
16482         MonoReflectionMethod method not MonoMethod. Removed
16483         MonoType.GetCorrespondingField, and make
16484         MonoGenericType.GetCorrespondingField take name not
16485         MonoClassField.
16487 2005-06-13  Michal Moskal <malekith@nemerle.org>
16489         * reflection.c (field_encode_signature, encode_locals):
16490          Make sizes of buffers for types larger (for big generic types).
16491          (create_generic_typespec,
16492          mono_reflection_sighelper_get_signature_local,
16493          mono_reflection_sighelper_get_signature_field):
16494          Add asserts for too small buffers.
16496 2005-06-15  Martin Baulig  <martin@ximian.com>
16498         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
16499         if our parent is not a dynamic type.
16501 2005-06-15  Martin Baulig  <martin@ximian.com>
16503         * class-internals.h (MonoTypeNameFormat): New enum.
16505         * class.c
16506         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
16507         (mono_type_get_full_name): Removed.
16508         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
16509         argument instead of the boolean's.
16511         * icall.c (ves_icall_System_MonoType_getFullName):
16512         Added `gboolean assembly_qualified'.    
16514         * reflection.h
16515         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
16517         * reflection.c (mono_reflection_parse_type): Parse the new type
16518         name format.
16520 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16522         * icall.c: no need to convert from utf16 to utf8 and then back again
16523         after the call to GetLogicalDrives.
16525 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16527         * icall.c: frombase64. Fix problems exposed by new tests.
16529 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16531         * icall.c: added internal calls for converting char [] and strings in
16532         base64 into byte [].
16534 2005-06-10  Martin Baulig  <martin@ximian.com>
16536         * class.c (mono_class_create_generic_2): Read the nested classes
16537         from the metadata rather than from `gklass->nested_classes' since
16538         `gklass' might not be initialized yet.
16540 2005-06-09  Duncan Mak  <duncan@novell.com>
16542         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
16543         all public headers. Fixes #74919.
16545 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
16547         * domain.c: The key for proxy_vtable_hash is now a pointer
16548         array. Added new GHashFunc and GCompareFunc functions for this.
16550         * class.h: The list of interfaces in MonoRemoteClass is known in
16551         advance and can't grow (we create a new MonoRemoteClass if needed),
16552         so now the interface array can be allocated together with
16553         MonoRemoteClass.
16554         
16555         * object.c: Added a new method create_remote_class_key.
16556         Fixed mono_remote_class so it does not depend on
16557         mono_upgrade_remote_class.
16558         Removed extend_interface_array.
16559         Added new method clone_remote_class(), which makes a copy of a remote
16560         class and adds a new interface or class to it.
16561         mono_upgrade_remote_class() now creates a new remote class (or gets
16562         it from the cache) if an vtable upgrade is needed. In this way
16563         we make sure that other objects sharing the same remote class
16564         don't get the new vtable with unwanted interfaces.
16565         
16566         * object-internals.h:
16567         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
16568         
16569         * marshal.c: Track changes in mono_upgrade_remote_class().
16571 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
16572         * icall.c: Add runtime methods for obtaining members of inflated
16573         class, which were created from supplied non-inflated members. It
16574         is used in internal Get{Method,Constructor,Field} methods in
16575         System.Type
16577 2005-06-09  Martin Baulig  <martin@ximian.com>
16579         * reflection.c
16580         (mono_reflection_bind_generic_method_parameters): Fix #75169.
16582 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16583         * reflection.c (mono_image_basic_init): Define
16584         Version in MonoDynamicAssembly. 
16585         
16586 2005-06-08  Martin Baulig  <martin@ximian.com>
16588         Fix #75136.
16590         * loader.c
16591         (mono_method_signature_full): New public method; takes a
16592         `MonoGenericContext *'.
16593         (find_method): Use mono_method_signature_full() and pass the
16594         klass'es context to it.
16596         * class.c (mono_class_is_inflated_method): Use
16597         mono_method_signature_full() and pass the context to it.
16599 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
16601         * object.c: add proper locking in mono_remote_class_vtable(),
16602         fixes possible memory corruption.
16604 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
16606         * marshal.c (mono_remoting_marshal_init): set
16607         initialized after initialization.
16609 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
16611         * locales.c : hush.
16613 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
16615         * object.c (extend_interface_array): fix really silly
16616         memory corrupting / comparison bug.
16618 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16620         * reflection.c: Functions added to support the creation
16621         of CustomAttributeData, which includes Attribute data
16622         used by ReflectionOnly methods.
16624         * reflection.h:  mono_reflection_get_custom_attrs_data and
16625          mono_custom_attrs_data_construct added (functions exposed).
16627          * icall.c: Added mono_reflection_get_custom_attrs_data
16628          as icall.
16629         
16630 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
16632         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
16633         lupus's request.
16635 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
16637         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
16639         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
16640         dynamic DllImportAttribute.
16642         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
16643         dynamic DllImportAttribute.
16645         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
16646         Fixes #75162.
16648 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16650         * threads.c: avoid segfault when an unstarted thread is aborted.
16652 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
16654         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
16655         Returns the name and version of the runtime for reporting.
16657 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16659         * appdomain.c: bump corlib version.
16660         * object-internals.h: new field in MonoReflectionAssembly.
16662 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16664         * object-internals.h: Carlos forgot to add this field.
16666 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16668         * icall.c: Added create_version to create instances
16669         of Version of MonoReflectionAssemblyName. This change helps
16670         the AssemblyName tests to keep running fine.
16671         
16672 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
16673   
16674         * object.c (mono_method_return_message_restore): A somehow less
16675         intrusive fix for #75138.
16677 2005-06-03  Raja R Harinath  <rharinath@novell.com>
16679         * object.c (mono_method_return_message_restore): Fix computation
16680         of expected number of out args.
16682 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
16684         * reflection.c (mono_image_get_method_info): Fix the case when the
16685         charset is empty.
16687 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
16689         * object.c: Added missing null check in
16690           mono_method_return_message_restore.
16692 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
16694         * reflection.c (mono_image_get_method_info): Handle the case when
16695         dllentry is empty.
16697 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
16699         * object.c: When creating the vtable for a proxy, take into account
16700         all inherited interfaces, not only the ones registered in
16701         iclass->interfaces. This fixs bug #74996.
16702         Also, in mono_method_return_message_restore, verify that the array
16703         of out args has the expected lengh.
16705 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16707         * socket-io.c: update the timeout in Poll when the call is interrupte.
16709 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16711         * socket-io.c: support abort/suspend in Select_internal after last
16712         change.
16714 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16716         * threadpool.c: remove warning.
16718 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16720         * icall.c:
16721         * socket-io.[ch]: Select_internal uses poll() now when available, thus
16722         removing the 1024 limit from select(). Runtime part of the fix for
16723         bug #71203.
16725 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16727         * socket-io.c: when resolving the addresses for the same
16728         host returned by gethostname(), get the local IPs from the interface
16729         list. Loopback addresses are discarded if the are interfaces up with
16730         non-loopback ones. Fixes bug #63265.
16732 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
16734         * appdomain.c, verify.c, object-internals.h, reflection.c:
16735         bumped corlib number to 36, and added new extra_flags field
16736         to ReflectionMethodBuilder and friends.  Fixes #75060.
16738 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
16740         * gc.c: register a new weak link only if the object is non-null
16741         (fixes bug#75047).
16743 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
16745         * culture-info.h : short time pattern too.
16747 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
16749         * culture-info.h : expand long time pattern string length.
16751 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16753         * culture-info-table.h : update (more French date format; #72788).
16755 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
16757         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
16758         the method is static. Fixes #75029.
16760 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
16762         * reflection.c: Update the table_idx field of method builders after
16763         saving the module, since it can change. This is a workaround for
16764         bug #74914. 
16766 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
16768         * culture-info-table.h : update (additional French date format).
16770 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
16772         * icall.c (ves_icall_type_Equals): Revert last change.
16773         
16774         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
16776         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
16778 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
16780         * class-internals.h: Added executioncontext_class field to 
16781         MonoDefaults structure.
16782         * domain.c: Cache System.Threading.ExecutionContext class in 
16783         mono_defaults.
16784         * object.c: Capture the ExecutionContext for asynchroneous calls in
16785          mono_async_result_new.
16786         * object-internals.h: Added execution_context and original_context 
16787         fields to MonoAsyncResult. Added execution_context to MonoThread.
16788         * security-manager.c|.h: Added mono_get_context_capture_method to 
16789         return the capture method (if required by the security manager or by
16790         the framework version used).
16791         * threadpool.c: Apply capture (if present) ExecutionContext in 
16792         mono_async_invoke and revert to original context after it completes.
16794 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
16796         * culture-info-table.h : updated (real hacky solution for zh-CHT).
16798 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
16800         * culture-info-table.h : zh-CHT related workaround.
16802 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
16804         * marshal.c (emit_marshal_custom): Add some error checking and call the
16805         methods in the ICustomMarshaler interface. Fixes #74875.
16806         
16807         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
16808         native->managed wrappers.
16810 2005-05-12  Martin Baulig  <martin@ximian.com>
16812         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
16813         here and use the loader lock.
16815         * mono-debug.c: Properly lock when the debugger is not attached.
16816         (mono_debug_init): Release the initial lock if we're not running
16817         in the debugger.
16819 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
16821         * marshal.c (emit_marshal_custom): Pass through NULL values without
16822         calling the custom marshalling routines.
16824         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
16825         conversion in structures. Fixes #74882.
16827 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
16829         * culture-info-table.h : zh-* cultures were missing.
16831 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
16833         * threads.c: Added a new event background_change_event which is signaled
16834         when a thread changes its background mode.
16835         Moved here several checks previously done in managed code. The checks
16836         require the thread lock, and using the thread lock in managed code
16837         can result in deadlocks.
16838         Merged Start_internal and Thread_internal into a single method. Now 
16839         Thread_internal does all work of creating and starting a thread.
16840         Added icalls for setting and getting the state of the object. Moved from
16841         managed code to avoid locking there.
16842         Added wait_for_tids_or_state_change() which is called instad of
16843         wait_for_tids when waiting for non-backround threads to end. This method
16844         will return if one of the threads ends or the background_change_event
16845         is signaled.
16846         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
16847         the background mode. This method signals the background_change_event
16848         event.
16849         * icall.c:
16850         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
16851         removed Start_internal.
16852         
16853 2005-05-11  Martin Baulig  <martin@ximian.com>
16855         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
16856         to order of some fields to get proper alignment on 64-bit machines.
16858 2005-05-11  Martin Baulig  <martin@ximian.com>
16860         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
16861         changes as they're broken and completely fuck up the debugger.
16863         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
16865 2005-05-10  Martin Baulig  <martin@ximian.com>
16867         * reflection.c (mono_reflection_generic_class_initialize): Don't
16868         call mono_class_setup_parent() here.
16870 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16872         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
16873         send/receive timeout use an integer in milliseconds. We were using a
16874         struct timeval.
16876 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16878         * locales.c:
16879         (internal_get_cultures): reserve the first slot of the array for the
16880         InvariantCulture, which will be filled in managed code.
16882 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
16884         * reflection.c (mono_image_fill_module_table): Initialize the
16885         GENERATION field as well.
16887 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16889         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
16890         Monitor.Enter on the object.
16892 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
16894         * threads.c: Enable the wait for running threads when exiting.
16895         * icall.c: Suspend all threads before exiting.
16897 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
16899         * assembly.c (mono_assembly_load_reference): Fix warning.
16901 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16903         * threadpool.c: changed the default number of threads per cpu. From now
16904         on, the default will be 20 + (5 * number of cpus) instead of 50.
16906 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
16908         * loader.c (mono_method_get_signature_full): Add locking here.
16910 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
16912         * appdomain.c: Moved methods for parsing and freeing assembly
16913         names to assembly.c.
16914         * assembly.c, domain-internals.h: Created public methods for parsing
16915         assembly names. Fixed mono_assembly_load_with_partial_name:
16916         it now finds the best match, taking into account the version,
16917         token and culture specified in the partial name. Also return
16918         the latest version if no version information is specified.
16920 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
16922         * threadpool.c: replace check for SocketAsyncCall class.
16924 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16926         * threadpool-internals.h:
16927         * Makefile.am: added threadpool-internals.h
16929         * threadpool.c: call mono_unhandled_exception on exceptions not handled
16930         that happen in threadpool threads (tested on MS).
16931         (mono_thread_pool_remove_socket): new function that dispatch any pending
16932         AIO call on a socket that is closing. By now only epoll really needs it,
16933         as select/poll wake up when the socket closes.
16936         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
16938 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
16940         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
16942 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
16944         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
16946 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
16948         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
16949         has an abort request, convert it into a suspend request.
16951 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
16953         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
16954         warning for the usage of `UnmanagedFunctionPointerAttribute' which
16955         is not supported yet.
16957 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16959         * image.c: register assemblies loaded from data (bundles) in the loaded
16960         assemblies hash. Fixes bug #74772.
16962 2005-04-29  Martin Baulig  <martin@ximian.com>
16964         * class.c (mono_type_get_name_recurse): Update to the new naming
16965         schema from the latest .NET 2.x beta2.
16966         (mono_class_setup_vtable_general): If we're a generic instance,
16967         copy the vtable from our generic type definition and inflate all
16968         the methods in it.
16970         * loader.c (find_method): Update to the new naming schema from the
16971         latest .NET 2.x beta2.
16973 2005-04-29  Raja R Harinath  <harinath@gmail.com>
16975         * class.c (mono_class_init): Add a mono_loader_unlock to the
16976         #74734 fix.
16978 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
16980         * icall.c (ves_icall_System_Environment_Exit): Remove the 
16981         suspend_all_other_threads () call for the time being, since it can hang.
16983         * threads.c (mono_thread_manage): Similarly, disable the waiting for
16984         the background threads to exit, since it can also hang.
16986         * class.c (mono_class_init): Applied patch from Ankit Jain 
16987         (radical@gmail.com). Avoid pending init errors when a field refers
16988         to a nested class using a typeref. Fixes #74734.
16990         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
16991         this for dynamic modules.
16993 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16995         * threads.c: don't wait for threads that are in the process of aborting
16996         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
16997         and waiting for background threads to finish. This makes xsp and
16998         mod-mono-server exit without random length delays and/or hangs.
17000 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17002         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
17004 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
17006         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
17007         dynamic types to prevent infinite loops. Fixes #74727.
17009         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
17010         ..._is_assignable_to.
17012 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
17014         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
17016 2005-04-25  Martin Baulig  <martin@ximian.com>
17018         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
17020         * domain.c
17021         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
17023         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
17025         * reflection.c (build_compressed_metadata): Set metadata header
17026         version to 2.0.
17028 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
17030         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
17031         number into an integral and a decimal part. Fixes #70473.
17033         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
17035 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
17037         * culture-info-table.h : reflected the latest locale-builder output.
17039 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17041         * threadpool.c: check for SuspendRequested too when deciding if
17042         mono_thread_interruption_checkpoint should be called.
17044 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17046         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
17047         * threads.c: remove interruption_mutex and use Interlocked instead. When
17048         suspending all the threads, wait for all the suspended events at once.
17049         If we're shutting down and get an APC that is going to be queued,
17050         call mono_thread_execute_interruption immediately, as the thread might
17051         be sleeping on a pthread condition or mutex.
17053         * icall.c: call mono_runtime_set_shutting_down before suspending the
17054         threads.
17056         Fixes bug #74693. And now xsp is happier when exiting.
17058 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
17060         * loader.c (mono_stack_walk): Fix #74690.
17062 2005-04-22  Martin Baulig  <martin@ximian.com>
17064         * mono-debug.h (MonoDebugMethodJitInfo): Added
17065         `MonoDebugMethodJitInfo *jit'.
17067         * mono-debug.c (mono_debug_read_method): Cache the
17068         MonoDebugMethodJitInfo in `address->jit'.
17069         (mono_debug_free_method_jit_info): New public method.
17071 2005-04-22  Martin Baulig  <martin@ximian.com>
17073         * class.c (mono_class_is_assignable_from): Disallow
17074         type parameter -> interface.
17076 2005-04-21  Dick Porter  <dick@ximian.com>
17078         * threads.c (mono_thread_create): Turn an assertion into an error.
17080 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
17082         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
17083         
17084         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
17085         Fix some gcc 4.0 warnings.
17087 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
17089         * file-io.c: fix alt dir separator char on unix systems
17090         and cleanup (fixes bug #71214).
17092 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
17094         * marshal.c: Use CALLVIRT instead of CALL when dispatching
17095         a call to a remote domain, since the method may be an
17096         interface method in the client domain. This fixes bug #74192.
17098 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17100         * threadpool.c: recv/send are now performed before going back to managed
17101         code to save one transition.
17103 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17105         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
17107         * metadata/threadpool.c: removed hack to workaround the bug above.
17109         Fixes bug #74618.
17111 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
17113         * reflection.c reflection.h: Fix handling of parameter defaults in
17114         dynamic methods. Also fixes handling of parameter attributes.
17115         Fixes #74609.
17117         * mono-debug.c (mono_debug_close_image): Fix warning.
17119 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17121         * socket-io.h: replaced old unused field with new 'blocking'.
17122         * threadpool.c: restore socket blocking state on windows(tm).
17124 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
17126         * icall.c: don't return the codebase in the AssemblyName[] returned by
17127         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
17128         * object-internals.h: Removed FIXME (fields were presents) and fixed
17129         versioncompat declaration.
17131 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17133         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
17134         not closed, so don't cleanup when it happens.
17136 2005-04-13  Chris Toshok  <toshok@ximian.com>
17138         * mono-debug-debugger.h: change prototype for
17139         mono_debugger_lookup_type.
17141         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
17142         this function, although it should probably be named
17143         mono_debugger_init_type.
17145 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17147         * threadpool.c: fix non-AIO case.
17149 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
17151         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
17152         the built-in profiler to measure just JIT compilation times.
17154 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17156         * threadpool.c: the epollfd might be closed by another thread at
17157         any time, so ignore EBADF at treat it as a "we're closing" sign.
17159 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17161         * threadpool.c: release the semaphores with a count equals to the number
17162         of working threads in both IO and regular pools. Fixed typo that messed
17163         up the count of IO pool threads. Don't initialize the pipe handles if
17164         we're using epoll.
17166 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17168         * threadpool.c: some systems don't like a NULL when deleting the socket
17169         from epoll.
17171 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17173         * threadpool.c: fix semaphore allocation.
17175 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17177         * threadpool.c: added epoll() based implementation for asynchronous IO
17178         that is used instead of the default poll() when available.
17179         It can be disabled by setting MONO_DISABLE_AIO.
17181 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17183         * threadpool.c: windows needs 'closesocket' and instead of returning
17184         0 when the stream is closed while in select, it returns -1. Fixes bug
17185         #74573.
17187 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
17189         * class.c (class_compute_field_layout): Fix the regression caused by
17190         the previous try.
17192 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17194         * threadpool.c: separate pool for socket async. IO.
17195         * threadpool.h: mono_max_worker_threads is not a global any more.
17197 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
17199         * class.c (class_compute_field_layout): Fix #74549.
17201 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17203         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
17204         use 2 connected sockets instead.
17206 2005-04-08  Miguel de Icaza  <miguel@novell.com>
17208         * mono-config.c: Add new entry point for mkbundle
17209         mono_config_parse_memory. 
17211 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17213         * threadpool.c: removed another unused function.
17215 2005-04-08  Ankit Jain  <radical@corewars.org>
17217         * reflection.c (get_default_param_value_blobs): Add 'types'
17218         parameter to get the types encoded in the constant table.
17219         (mono_param_get_objects): Use the type from the constant table,
17220         not the type of the parameter, when creating default values.
17221         Handle null default values correctly.
17223 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17225         * file-io.c:
17226         * file-io.h:
17227         * threadpool.c:
17228         * threadpool.h:
17229         * icall.c:
17230         * socket-io.c: removed dead code for async IO.
17232 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17234         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
17236         * threadpool.c: intercept socket async. calls and pass them to a thread
17237         that is polling and dispatching the job items to the threadpool as
17238         socket become ready. Fixes bugs #71217, #71933.
17240         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
17241         between char and short/ushort arrays.
17243         * socket-io.c: remove dead code.
17245 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
17247         * locales.c,
17248           icall.c : removed InternalToUpper_Comp() and
17249           InternalToLower_Comp().
17251 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
17253         * char-conversions.h : The tables were incorrectly generated. Should
17254           be generated against invariant culture.
17256 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
17258         * object.c (mono_runtime_invoke_array): Fix return value when 
17259         passing pre-created valuetype objects to ctors.
17261         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
17262         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
17263         Fixes #74338.
17265 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
17267         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
17268         only used with --security and hides the wrong corlib version error.
17270 2005-03-30  Joshua Tauberer  <tauberer@for.net>
17272         * class.c: Changed mono_class_name_from_token so that types
17273         outside of a namespace don't have an initial period.  Improved
17274         the g_warning message used in _mono_class_get when loading
17275         fails.
17276         * assembly.c: In mono_assembly_load_reference, when an assembly
17277         can't be found, "No such file or directory" is misleading and
17278         unhelpful because a few paths were checked for the presence of
17279         the assembly.  When that happens (ENOENT), display a nicer
17280         message indicating the directories that were searched.  In all
17281         cases, the warning is made easier to read for non-hackers.
17283 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
17285         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
17286         project/solution.
17287         * appdomain.h|domain.c: Removed inline from functions.
17288         * appdomain.c: Reduced warnings when compiling on windows.
17289         * icall.c: Fixed output_debug declaration to gunichar2*.
17290         * mono-config.c: Reduced warnings when compiling on windows.
17291         * rand.c: Added missing "windows.h". Added missing return value.
17292         * rawbuffer.c: Added missing winsock2.h for windows.
17293         * sysmath.h: Added mono-compiler.h header to allow/ease 
17294         compilation with non-GCC compilers.
17295         * threads.c: Fixed declarations to compile with VS.NET C compiler.
17296         Removed cast warnings.
17298         Adapted from the work of J Lothian (for VC6).
17300 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
17302         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
17303         from default_path.
17305 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
17307         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
17308         the 2.0 profile.
17310 2005-03-27  Raja R Harinath  <harinath@gmail.com>
17312         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
17313         has to be in $(exec_prefix).  $(prefix) is for arch-independent
17314         stuff, and it would probably use $(prefix)/share rather than
17315         $(prefix)/lib.
17317 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17319         * console-io.c: added 2 includes that might be missing.
17321 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
17323         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
17324         profile.
17326         * reflection.c (create_custom_attr): Allocate the params array using
17327         alloca so it gets GC tracking.
17329 2005-03-23  Chris Toshok  <toshok@ximian.com>
17331         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
17332         out some spew.
17334 2005-03-24  Raja R Harinath  <rharinath@novell.com>
17336         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
17337         changes to pick up any changes in prefix, etc.
17339 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
17341         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
17342         
17343         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
17344         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
17346 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
17348         * class-internals.h object-internals.h class.c reflection.c: Extend the
17349         mono_lookup_dynamic_token () function to return the class of the
17350         token as well. 
17352         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
17353         well. Fixes #73848.
17355 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
17357         * security-manager.c: Skip inheritance checks for intra-corlib
17358         class inheritance and method overrides. This skips a lot of checks
17359         and (anyway) permissions cannot work until corlib is loaded.
17361 2005-03-23  Martin Baulig  <martin@ximian.com>
17363         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
17364         MONO_TYPE_GENERICINST.  
17366 2005-03-23  Martin Baulig  <martin@ximian.com>
17368         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
17370 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17372         * class.c: added locking comments to some functions.
17373         Cache the interface offsets arrays (saves about 20 KB
17374         of runtime memory in a typical app).
17375         Reduce the time overhead in mono_class_setup_supertypes ().
17377 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
17379         * icall.c: speedup and fix leaks in GetMethodsByName and
17380         GetPropertiesByName.
17382 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17384         * reflection.c: some locking fixes.
17386 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
17388         * metadata.c: added missing break in case statement.
17390 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
17392         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
17393         typedbyref return values. Fixes #73941.
17395 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
17397         * security-manager.c|h: Added demandunmanaged method and 
17398         suppressunmanagedcodesecurity class to MonoSecurityManager.
17399         Renamed aptc class to allowpartiallytrustedcallers.
17401 2005-03-17  Martin Baulig  <martin@ximian.com>
17403         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
17405 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17407         * file-io.c: disabled file async. IO using aio_*. It uses the
17408         threadpool now. Workaround for bug #73718.
17410 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17412         * assembly.h, mono-config.c: added code to deal with bundled configs
17413         for bundled assemblies.
17415 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
17417         * *.c, private.h: cleanup, removing old private.h header file.
17419 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
17421         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
17422         and throw_on_unmappable_char attributes.
17424 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
17426         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
17427         _ProcessName_internal.
17429 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
17431         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
17432         #73631.
17434         * icall.c threads.c threads-types.h: Remove slothash icalls as they
17435         are no longer used.
17437 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
17439         * object.c (compute_class_bitmap): Add support for generics. Fixes
17440         #73527.
17442 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
17444         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
17446 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17448         * filewatcher.c: commented out the code for windows watcher, as we don't
17449         use it (we use the managed implementation instead).
17451 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
17453         * object-internals.h (MonoThread): Remove 'unused1' field.
17455         * appdomain.c: Bump corlib version.
17457         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
17459         * reflection.c (mono_reflection_create_runtime_class): Remove the
17460         AssemblyBuilder.Save optimization since it causes too many problems.
17462 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
17464         * exception.c|h: Added mono_get_exception_reflection_type_load to
17465         create a ReflectionTypeLoadException object.
17466         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
17467         to return NULL is a InheritanceDemand fails during reflection. Updated
17468         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
17469         ReflectionTypeLoadException if an InheritanceDemand fails during 
17470         reflection. Added icall mapping for GetLinkDemandSecurity.
17471         * security-manager.c|h: Added ves_icall_System_Security_
17472         SecurityManager_GetLinkDemandSecurity internal call to return the
17473         class and methods permissions set for a LinkDemand. Removed unused
17474         fields in MonoSecurityManager.
17476 2005-03-10  Martin Baulig  <martin@ximian.com>
17478         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
17479         it's a generic instance.
17481 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
17483         * reflection.c (mono_get_object_from_blob): Applied patch from
17484         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
17486         * class.c (mono_class_is_assignable_from): Another try at fixing 
17487         #73469 without breaking anything.
17489 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
17491         * class.c: (mono_class_is_assignable_from): Revert the last changes
17492         since they don't work with generics.
17493         
17494         * class.c (mono_class_is_assignable_from): Fix build bustage.
17496         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
17497         the managed IsAssignableFrom method. Fixes #73469.
17499         * reflection.c (mono_reflection_call_is_assignable_from): New helper
17500         function.
17502 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
17504         * object.c (mono_load_remote_field_new): Fix returning uninitialized
17505         memory when the remoting callback does not sets the out arguments.
17506         Fixes #73007.
17508         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
17509         by mistake.
17511         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
17513         * object-internals.h (MonoStackFrame): Sync with managed object layout.
17515         * appdomain.c: Bump corlib version.
17517 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
17519         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
17520         function.
17522         * threads.c (mono_thread_attach): Detect threads which are not started
17523         by the GC pthread wrappers.
17525 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
17527         * icall.c: Added new icall for RNG.
17528         * rand.c|h: Added new icall to open the RNG. This allows to share a 
17529         single handle on Linux to access /dev/urandom and fix #73183.
17531 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
17533         * object.c: setting the new vtable in a transparent proxy object must
17534         not change the GC descriptor.
17536 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17538         * object.c: fixed compilation without GCJ support.
17539         * reflection.c: for runtime-created types ensure klass->has_references
17540         is correct (bug #73215).
17542 2005-03-02  Martin Baulig  <martin@ximian.com>
17544         * class.c (mono_class_is_assignable_from): Make this work if
17545         `oklass' is a generic instance; fixes #72831.
17547 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
17549         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
17550         with hasthis set.
17551         
17552         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
17554         * marshal.c: Reorganize native->managed marshalling code to also use
17555         the emit_marshal_... functions.
17557 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
17559         * object.c: typed allocs have issues with bitmap sizes > 30,
17560         so check for max_set >= 30.
17562 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
17564         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
17565         managed code. Fixes #73012.
17567         * metadata.h (MonoMarshalSpec): Add elem_mult field.
17569         * metadata.c reflection.c: Load/Emit elem_mult as well.
17570         
17571         * metadata.h (MonoMarshalSpec): Add comment.
17573         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
17575         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
17576         num_elem to -1 if not given.
17578         * object-internals.h (MonoReflectionMarshal): Add has_size field.
17580         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
17581         given values.
17583 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
17585         * null-gc.c (mono_gc_free_fixed): Was not compilable.
17587 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
17589         * reflection.c (encode_marshal_blob): Encode param_num field as well.
17591         * object-internals.h (MonoReflectionMarshal): Add param_num field.
17593 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
17595         * object.c: generalized the reference bitmap creation
17596         and added hooks for the new GC.
17597         * class-internals.c: removed the gc_bitmap field from MonoClass.
17599 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17601         * domain.c: help the compiler to produce better code
17602         in mono_jit_info_table_find ().
17604 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
17606         * object.c: make all allocations look typed.
17608 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17610         * socket-io.c: load Mono.Posix if it's not loaded already
17611         (fixes bug#73033).
17613 2005-02-24  Martin Baulig  <martin@ximian.com>
17615         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
17616         * reflection.c (dup_type): Likewise.
17618 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
17620         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
17621         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
17623 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17625         * domain.c, threads.c, object-internals.h: make the critical thread
17626         local vars use the fast access mode (even when we're compiled in
17627         a lib). Provide accessors to be used by the jit during codegen.
17629 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17631         * appdomain.c: Changed hook functios behavior to include
17632         support for the reflection only assemblies. Some icalls were changed
17633         to support the mentioned assemblies too. Signatures of static methods
17634         try_assembly_resolve and real_load now have an additional parameter:
17635         refonly.
17637         * assembly.c: General changes to mono_assembly_ methods to support
17638         reflection only api. Functions mono_assembly_open, mono_assembly_load,
17639         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
17640         suffix, to support an additional gbool parameter to specify whether
17641         the assembli is reflection only or not. Created some new hook functions 
17642         to add support for reflection only assemblies. Signatures of static 
17643         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
17644         have now an additional parameter: refonly.
17646         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
17647         indicating whether the assembly is reflection only or not.
17649         * exception.c: Add mono_get_exception_invalid_operation.
17651         * icall.c: Throw an InvalidOperationException when trying to invoke
17652         a property/method/event, or trying to set/get the value of a field.
17653         Also add an icall to retrieve the ref_only flag to the
17654         MonoReflectionAssembly.
17656 2005-02-23  Chris Toshok  <toshok@ximian.com>
17658         Part of fix for #72827.
17659         * mono-debug.c (mono_debug_add_method): add lexical block data to
17660         the info we write.  Kind of a hack at the moment - we copy the
17661         lexical block info from the MonoDebugMethodInfo to the
17662         MonoDebugMethodJitInfo here, before writing it.
17663         (mono_debug_read_method): read the lexical block info.
17665         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
17667         * debug-mono-symfile.h: add lexical block support.
17669         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
17670         support.
17672 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17674         * loader.c (mono_lookup_pinvoke_call): Fix warning.
17676         * object.c (mono_runtime_free_method): Call mono_free_method () and
17677         put the TODOs there.
17679         * loader.c (mono_free_method): Free up most memory allocated for 
17680         dynamic methods.
17682 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
17684         * reflection.c: properly flag a Type argument to a
17685         named custom attr value (bug #72248).
17687 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17689         * reflection.c: reduce code duplication in named custom
17690         attribute encoding.
17692 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
17694         * reflection.c: properly encode custom attrs of type object
17695         (bug #72649).
17697 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
17699         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
17701 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
17703         * socket-io.c: load System.dll if it's not loaded already
17704         (bug #72850 and #70477).
17706 2005-02-21  Martin Baulig  <martin@ximian.com>
17708         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
17709         generic instances.
17711 2005-02-21  Martin Baulig  <martin@ximian.com>
17713         * reflection.c (mono_image_build_metadata): We also need to
17714         "fixup" the MethodImpl table after we computed the final method
17715         indices.  Call fixup_methodimpl() to do that.
17716         (fixup_methodimpl): New private method.
17718 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
17720         * assembly.c: special case mscorlib.dll (bug#72536),
17721         patch from Carlos Alberto Cortez.
17723 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
17725         * threads-types.h threads.c: Fix build bustage.
17727         * threads.c: Use a union for long<->double conversions.
17729         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
17730         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
17732         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
17733         containing the checkpoint call with NOT_TAKEN.
17734         
17735         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
17736         checkpoint before pushing the arguments, so they won't have to be
17737         spilled to stack.
17739 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17741         * domain.c, assembly.c, domain-internals.h: make some data
17742         const and relocation-free.
17744 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
17746         * object.c, appdomain.c, class-internals.h: introduce the
17747         MonoClassRuntimeInfo structure to hold the info needed to
17748         use a class at runtime. Made mono_class_vtable() lock-free
17749         for all the appdomains.
17751 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
17753         * metadata-internals.h, image.c: introduce a per-image mempool to
17754         be used for memory that has the same lifetime as the image.
17756 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
17758         * domain.c: In mono_init_internal(), instead of selecting the first
17759         runtime version supported by an executable, get a list of all
17760         supported versions and select the one for which an mscorlib exists
17761         (since even if the runtime supports a given version, it doesn't mean
17762         that the framework for that version is installed).
17763         Modified get_runtimes_from_exe to support this behavior.
17764         In supported_runtimes, added information about additional system
17765         assembly versions.
17766         
17767         * assembly.c: Added support for more than one system assembly version
17768         per runtime version. Updated the assembly list.
17769         In mono_assembly_remap_version, removed the initial version check,
17770         since we don't know to which version we need to compare until we
17771         get the version set on which the assembly is based.
17772         Moved the code for loading corlib into the new method
17773         mono_assembly_load_corlib(), so it can be used by the initialization
17774         code.
17775         
17776         * domain-internals.h: Updated data structures and added declaration
17777         for mono_assembly_load_corlib.
17779 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17781         * reflection.c (resolve_object): Fix the creation of the signature in 
17782         the SignatureHelper case.
17784         * assembly.c (mono_assembly_remap_version): Fix binary search.
17785         
17786 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
17788         * class.c: Added inheritance check when a method is overloaded (from a
17789         virtual method or when implementing an interface) and when a class is
17790         inherited. Added functions to set a failure for a class and to 
17791         retreive the exception from a failure.
17792         * class-internals.h: Added fields to MonoClass to keep the exception
17793         information status for inheritance (or other exceptions) to be thrown
17794         later (i.e. not at load time).
17795         * object.c: Throw the inheritance SecurityException when a type is to 
17796         be created with either class or method inheritance violations.
17797         * reflection.c|h: Fix when getting declsec from a class. Removed 
17798         unrequired code for class. Improved sanity in parameter naming.
17799         * security-manager.c|h: Added functions to check for class and method
17800         inheritance.
17802 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
17804         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
17805         and has_finalize in dynamic types as well.
17807 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
17809         * culture-info-table.h : fixed currency format for en-GB (and so on).
17811 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
17813         * gc.c: ensure the GC handles never have 0 as a value.
17815 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
17817         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
17818         a pointer to a struct to unmanaged code. Fixes #72625.
17820 2005-02-16  Martin Baulig  <martin@ximian.com>
17822         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
17824 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
17826         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
17828 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
17830         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
17832         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
17833         UnmanagedFunctionPointerAttribute, use it for determining calling convention
17834         etc. Fixes #71471.
17836         * reflection.c (mono_custom_attrs_get_attr): New helper function.
17838         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
17840 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
17842         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
17843         changes to make the current context a field in MonoThread.
17845 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
17847         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
17848         the last change.
17849         
17850         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
17851         extracted from mono_marshal_get_native_wrapper.
17853         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
17854         to create wrappers around native functions.
17856         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
17857         delegates for arbitrary function pointers. Fixes #71472.
17859 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
17861         * threads.c: cleaned up the code a little.
17863 2005-02-15  Martin Baulig  <martin@ximian.com>
17865         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
17866         the data table.
17868         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
17869         allocate larger chunks if needed.
17871 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17873         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
17874         in by mistake.
17876 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
17878         * domain.c: keep the domains in an array and ensure the domain ids
17879         are kept small, so they can be used as indexes to domain-specific data
17880         with a small memory overhead.
17882 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
17884         * icall.c: Handle byref types in Type icalls. Fixes #72544.
17886 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
17888         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
17890 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
17892         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
17894         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
17895         values.
17897         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
17898         
17899 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
17901         * domain-internals.h: add the hashtable here.
17903         * class-internals.h: Remove `info' from MonoMethod
17905         * domain.c: Add a new hashtable, jit_trampoline_hash
17907 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
17909         * object.c: don't set the value of static fields
17910         (fixes bug#72494).
17912 2005-02-11  Martin Baulig  <martin@ximian.com>
17914         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
17915         (mono_debug_add_method): Silently ignore the method if it's too big.
17916         (mono_debug_add_type): Likewise.
17918 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
17920         * threads.c, appdomain.c: remove #ifdefs from the code.
17922 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
17924         * metadata-internals.h: Added flags to MonoAssembly to cache the most
17925         common security informations. This allows us to stay in unmanaged code
17926         when doing LinkDemand and it's special cases (except for the first 
17927         time for initialization). The flags a very much used with --security.
17928         * reflection.c|h: Added code to get declarative security attributes 
17929         for LinkDemand and InheritanceDemand. This required to refactor the
17930         existing code for Demand.
17931         * security-manager.c|h: Added new method fields for the special cases
17932         of LinkDemand.
17934 2005-02-10  Martin Baulig  <martin@ximian.com>
17936         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
17937         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
17939 2005-02-10  Martin Baulig  <martin@ximian.com>
17941         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
17942         debugging code; this is almost a complete rewrite.
17944         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
17946 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
17948         * domain.c, object.h: expose mono_string_equal () and 
17949         mono_string_hash ().
17950         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
17951         it's implemented in managed code.
17953 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17955         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
17956         lo leak objects between appdomains.
17958 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
17960         * assembly.c: old compilers compilation fix from 
17961         robertj@gmx.net (Robert Jordan).
17963 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
17965         * class-internals.h: Little reminder for the future.
17967         * debug-helpers.c: Fix up wrapper_type_names
17969 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17971         * image.c, metadata-internals.h: when loading an image from a file,
17972         mmap all of it and use the same codepaths as when using a
17973         in-memory image: the code is simpler and we use less memory
17974         (both writable and readonly).
17976 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
17978         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
17979         API to alloc runtime data structures that need to be tracked by the
17980         GC and contain pointers.
17981         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
17982         make the code more readable and eventually use a different GC.
17984 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
17986         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
17987         for out arguments.
17988         
17989 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
17991         * object.c: In release_type_locks(), don't release the cctor lock
17992         if it has already been released. This fixes a crash in the
17993         thread5 test.
17995 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
17997         * gc.c, marshal.c, icall.c: register a delegate for finalization
17998         only when the native function pointer has been allocated for it.
18000 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18002         * object.c: cleaned up some code, allocate objects that are
18003         pointer free with the atomic malloc variant. Allocate memory
18004         for static data from the mempool if it's pointer-free.
18005         Allocate the bounds array at the end of the array data, when needed.
18006         * object-internals.h, object.h: move a private function in a private
18007         header.
18008         * class.c: handle missing case in tracking references in fields.
18010 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
18012         * class.c, class-internals.h: keep track if a type has
18013         reference fields in either the instance or static fields.
18015 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
18017         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
18018         and renamed to MonoRuntimeInfo. Added fields to store the expected
18019         framework assembly version. Changed mono_get_framework_version and
18020         mono_get_runtime_version for a single mono_get_runtime_info method.
18021         
18022         * assembly.c: Added method to remap system assembly versions to the
18023         current executing runtime version. Removed old mapping code.
18024         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
18025         
18026         * icall.c, reflection.c: Track api changes.
18028 2005-02-06  Miguel de Icaza  <miguel@novell.com>
18030         * loader.c (method_from_memberref): Improve error reporting,
18031         produce the class name instead of the typeref/typedef index. 
18033 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
18035         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
18037 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
18039         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
18040         stdcall and charset name mangling.  Reorganize the code and add
18041         some tracing stuff.
18043 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
18045         * monodiet.c: More iters!
18047         * marshal.c: Iter usage.
18049         * icall.c: Iter usage.
18051         * object.c: Use iters.
18053         * debug-helpers.c: More iters
18055 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
18057         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
18058         under win32.
18060 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
18062         * mono-debug-debugger.c: use iters
18064         * class.c, class-internals.h: mono_class_setup_events is static
18065         now
18067         * All callers: use iters
18069 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
18071         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
18072         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
18074 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
18076         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
18078         * marshal.h: Add prototypes for ldfld/stfld_remote.
18080         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
18081         this is called during startup.
18082         
18083 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
18085         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
18086         MonoThreadsSync struct private in monitor.c. Changed the way
18087         MonoThreadsSync is allocated so it's faster and there is no
18088         need to keep track of it with a finalizer and it uses less memory.
18089         This also finally allows us to allocate mono objects as ptrfree when
18090         there are no reference fields.
18092 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
18094         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
18095         disappearing link to the GC interface and use them to simplify
18096         the gchandles code.
18098 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
18100         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
18101         stfld_remote which call mono_load/store_field_new. This allows methods
18102         calling ldfld/stfld wrappers to be AOTed.
18104         * console-io.c: Include sys/filio.h under solaris.
18105         
18106         * console-io.c: Include curses.h if needed correctly.
18108 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
18109         
18110         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
18111         method->klass as well.
18113         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
18115         * class.c (mono_class_init): Switch on lazy initialization of 
18116         methods.
18118         * class.c (mono_class_get_finalizer): Handle the case when the 
18119         finalizer is inherited.
18121 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18123         * console-io.c: <curses.h> is needed by term.h on solaris.
18125 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
18127         * icall.c, class-internals.h, monodiet.c, class.c: Remove
18128         mono_class_setup_properties where possible. Remove this ftn from
18129         the header file, and make it static.
18131 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
18133         * loader.c: Add missing setup_... call.
18135         * class.c: Add missing setup_... calls.
18137         * class.c (mono_class_init): Switch on lazy initialization of 
18138         the generic vtable.
18139         
18140         * class.c (mono_class_init): Fix generics broken by the recent changes.
18142         * monodiet.c (handle_type): Add missing setup_... calls.
18144         * class.c: Back out garbage in previous patch.
18145         
18146         * class.c: Add missing setup_... calls.
18148         * class.c (mono_class_get_method_from_name_flags): Avoid calling
18149         mono_class_setup_methods () if possible.
18151         * class-internals.h (MonoClass): Add 'has_cctor' flag.
18153         * class-internals.h (MonoCachedClassInfo): New structure.
18155         * class.c: Initialize properties and events fields of MonoClass lazily.
18157         * class.c: Add infrastructure for lazily initializing the methods and
18158         vtable fields of MonoClass. Not yet used.
18160         * class.c (mono_class_get_finalizer): New helper function.
18162         * class.c: Add infrastructure for loading some class related data from
18163         an AOT file.
18165         * object.c: Add infrastructure for initializing the vtable from data
18166         in the AOT file.
18168         * gc.c (run_finalize): Use mono_class_get_finalizer ().
18170         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
18171         appropriate initialization function before accessing parts of the
18172         MonoClass structure.
18174         * marshal.c: Fix warnings.
18175         
18176         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
18178         * mono-debug-debugger.c (get_exception_message): Use 
18179         mono_class_get_method_from_name_flags ().
18181 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
18183         * reflection.c, appdomain.c: Replace a few manual searches that
18184         Zoltan missed. (Paolo approved this part of my initial patch).
18186 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
18188         * profiler.c: disable recording statistical events at report time.
18190 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
18192         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
18193         to byteswap arrays of enum values, too (bug #72080).
18195 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
18197         * appdomain.c (set_domain_search_path): Allow this to be called if
18198         domain->setup is not yet set.
18200         * loader.c (mono_method_get_index): New helper function.
18202         * loader.c reflection.c: Use mono_method_get_index ().
18204         * class.c (mono_class_get_method_from_name_flags): New helper method.
18206         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
18207         this.
18209         * class.c (mono_class_get_cctor): New helper method.
18211         * string-icalls.c object.c class.c marshal.c reflection.c: Use
18212         mono_class_get_method () to look up methods.
18214 2005-02-01  Miguel de Icaza  <miguel@novell.com>
18216         * console-io.c: Fix the build, this should work on Windows.
18218 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
18220         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
18221         be set to null to keep things valid
18223 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18225         * icall.c: added Console 2.0 icalls.
18226         * Makefile.am: added console-io.[ch]
18227         * console-io.[ch]: internal calls for Console 2.0 API.
18229 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
18231         * class.c: make sure we consider all the interfaces
18232         when calculating max_interface_id (bug found by
18233         Jeroen Frijters running ikvm).
18235 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
18237         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
18238         valuetype fields to null.
18240         * object.c (set_value): Ditto. Fixes #71669.    
18242 2005-01-31  Martin Baulig  <martin@ximian.com>
18244         * metadata.c (mono_metadata_has_generic_params): New public
18245         function; checks whether something is a generic method.
18247 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
18249         * appdomain.c: fix infinite recursion when adding assemblies.
18251 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
18253         * object.c: Fix small typo to return all items for Environment.
18254         GetCommandLineArgs.
18256 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
18258         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
18259         reflection.c: more domain and assembly-unload related fixes
18260         and memory leaks plugs.
18262 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
18264         * 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.
18266 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
18268         * loader.c (mono_method_signature): Make this method lazy
18269         (mono_get_method_from_token): Don't computate the signature here.
18271         Doing this saves quite a bit of memory. I got 90 kb on starting up
18272         monodoc. It should also save some disk reads on startup.
18274         * *: MonoMethod->signature might be NULL now. You *MUST* use
18275         mono_method_signature.
18277 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
18279         * object.c (mono_runtime_get_main_args): Return an array from the
18280         current domain here. Fixes #71938.
18282 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
18284         * monitor.c: formatting changes to comply with the
18285         mono coding style and remove #ifdefs from the code.
18287 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
18289         * metadata.c, private.h: remove some unneeded data
18290         and use a more compact representation for table schemas.
18292 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
18294         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
18295         to get a better distribution in hash tables.
18296         * *.c: use mono_aligned_addr_hash() where appropriate.
18297         * assembly.c: make var static.
18299 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
18301         * domain-internals.h: Put MonoJitInfo on a diet.
18303         * domain.c: Fix a warning.
18305 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
18307         * gc.c: rework the gc handles code to reuse handles
18308         when freed.
18310 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
18312         * domain.c: fixed long standing bug in mono_string_equal() which
18313         was brought to light with the ldstr changes.
18315 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
18317         * reflection.c: Remove warning by adding missing include for marshal.h
18319 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
18321         * domain.c, object.c: change the ldstr_table to hold
18322         MonoString* as keys: makes the runtime isinterned lookup
18323         faster and simplifies memory management.
18325 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
18327         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
18328         possible to add imperative security checks before calling the icall.
18329         * reflection.c: Return security attributes on the original MonoMethod
18330         (and not the wrapped one). This fix permissions on icalls.
18332 2005-01-25  Dick Porter  <dick@ximian.com>
18334         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
18335         the check for mktime() support actually test the mktime() return
18336         value.  "Fixes" bug 71682, though the output is still different to
18337         MS.
18339 2005-01-25  Martin Baulig  <martin@ximian.com>
18341         * class.c (mono_class_is_assignable_from): Make this work for
18342         generic instances.
18344 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
18346         * marshal.c (mono_string_utf8_to_builder)
18347         (mono_string_builder_to_utf16): We might not have ownership of the
18348         string. In thise case, we need to create a new buffer.
18350         * object-internals.h (mono_stringbuilder_capacity): sb->str might
18351         be null, in which case, use the default capacity.
18353 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
18355         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
18356         GC events to the profiler.
18358 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
18360         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
18361         if you don't want the GC to run.
18363 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
18365         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
18366         start providing a GC API and keeping different implementations in
18367         their own file.
18368         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
18370 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
18372         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
18373         mmap rather than allocating a huge buffer.
18374         (mono_debug_close_mono_symbol_file): Free the buffer allocated
18375         above.
18377 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
18379         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
18380         and CheckExecutionRights.
18381         * reflection.c|h: Keep the index of the declarative security to be 
18382         used, instead of the pointer, when AOT compiler is used. Also add 
18383         class initialization when requesting demands.
18384         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
18385         CheckExecutionRights. Both properties are now FALSE by default, and
18386         unmodifiable, unless the --security option is used.
18388 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18390         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
18391         reflection.c: properly refcount images and assemblies, many leaks fixed.
18393 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18395         * threadpool.c: increase the timeout for threads in the thread pool to
18396         10s.  Fixes bug #67159.
18398 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
18400         * class-internals.h: Sun's compiler insists on explicit
18401         signed on bit fields to handle then correctly.
18403 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
18405         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
18406         Make the size of the array fit only the number of invalid path
18407         chars that we have.
18409         * class.c (_mono_class_get): Improve the error reporting when a
18410         class referenced is not found, to assist debugging. 
18412 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
18414         * threads.c: fix off-by-one error.
18415         * domain.c: free data allocated in the domain.
18417 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
18419         * reflection.c (mono_method_body_get_object): Fill out exception info
18420         as well.
18422         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
18423         structure.
18424         
18425 2005-01-19  Martin Baulig  <martin@ximian.com>
18427         * loader.c (mono_get_method_constrained): Make this work again.
18429 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
18431         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
18432         guint16 to match the managed side.
18434         * reflection.c (mono_reflection_body_get_object): Fill out local
18435         variables array.
18437         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
18438         as well.
18440         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
18441         'local_var_sig_token'.
18443 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
18445         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
18446         System.Drawing.
18448         * reflection.c (mono_method_body_get_object): Handle abstract and
18449         runtime methods.
18451 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
18453         * marshal.c, loader.c, class-internals.h, reflection.c:
18454         store the emthod data for a wrapper in an array instead of a list.
18456 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
18458         * marshal.c: change the code to allocate memory more
18459         conservatively for method wrappers.
18461 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
18463         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
18464         fields from MonoClass to the marshal info structure where they belong.
18466 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
18468         * class.c, object.c, class-internals.h, marshal.c: rearrange
18469         some fields and tweak some types to lower memory usage.
18471 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
18473         * threads.c (signal_thread_state_change): Handle the case when the
18474         target thread is the current thread.
18476         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
18478         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
18479         emit_ptr_to_object_conv. 
18481         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
18482         marshalling. Fixes #71352.
18484 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
18486         * metadata.h, blob.h: move table enum to blob.h so it can be included
18487         in any header.
18488         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
18489         cut the size of MonoImage/MonoDynamicImage.
18491 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
18493         * profiler.c (mono_profiler_install_simple): Fix default arguments.
18495 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18497         * reflection.c, reflection.h, icall.c: add a function to check
18498         if an attribute type is defined for a metadata object.
18500 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
18502         * object-internals.h: Added some needed fields from StringBuilder class.
18503         * marshal.c: Set the maxCapacity when creating a StringBuilder.
18505 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
18507         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
18508         threads before shutting down the runtime.
18510         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
18512 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
18514         * object-internal.h, threads.c: implement stacksize and 
18515         parameterized thread start functionality (requires
18516         matching corlib). Marked broken code for later removal.
18518 2005-01-12  Martin Baulig  <martin@ximian.com>
18520         * class-internals.h (MonoGenericClass): Moved the `initialized'
18521         flag to MonoDynamicGenericClass, removed `init_pending'.
18522         (MonoGenericInst): Added `is_reference' flag.
18524 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
18526         * reflection.c (mono_image_create_pefile): Only set the pe_offset
18527         inside the MSDOS header. Fixes #71201.
18529         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
18530         gc thread.
18531         (mono_domain_finalize): Ditto.
18533 2005-01-12  Martin Baulig  <martin@ximian.com>
18535         * class.c (mono_get_shared_generic_class): Use the cache for
18536         non-dynamic generic classes.
18538         * class-internals.h (mono_class_create_generic_2): Removed
18539         function prototype, this function is now static inside class.c.
18541         * class.c (mono_class_create_generic_2): Made this static, only
18542         call it from mono_class_init() and mono_class_setup_parent().
18543         (collect_implemented_interfaces_aux): Call mono_class_init() on
18544         the interfaces we collect.
18545         (mono_class_setup_vtable): Call mono_class_init (class->parent).
18547 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18549         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
18550         it a real thread handle.
18552         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
18553         MonoJitExceptionInfo, since each catch clause needs its own variable.
18554         
18555 2005-01-11  Dick Porter  <dick@ximian.com>
18557         * image.c (mono_pe_file_open): New variant on mono_image_open()
18558         that does not set up the CLI metadata; used for FileVersionInfo so
18559         it can get the data for windows binaries too.
18560         
18561         * process.c (process_read_string_block): Don't read off the end of
18562         the StringTable block.
18564         These both fix bug 70766.
18566 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
18568         * gc.c: set some fields to NULL at GC cleanup time.
18569         * threads.c: if we quit the main thread, call exit ().
18571 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
18573         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
18575 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
18577         * threads.h, threads.c, object.c: added accessor and settor for
18578         main_thread. Handle it specially when exiting from it: wait
18579         for other foreground threads to exit.
18581 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
18583         * process.c, verify.c: remove some bloat.
18585 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
18587         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
18588         the calling convention to cdecl under win32.
18590 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
18592         * object.c (mono_object_get_size): New function to get the size of
18593         an object instance.
18595         * profiler.c (simple_allocation): Use above.
18597 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
18599         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
18600         ves_icall_System_AppDomain_getRootDomain (as it's not required to
18601         get an appdomain by it's id and we can't assume the root's id is 0).
18602         * domain-internals.h: Change the function prototype to match.
18603         * icall.c: Change the icall table for AppDomain.
18605 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
18607         * locales.c (string_invariant_compare_char): Only compute
18608         GUnicodeTypes in the case where we need them.  Test for ordinality
18609         first and return if so.
18611         From the commit:
18613                 /*
18614                  * FIXME: here we must use the information from c1type and c2type
18615                  * to find out the proper collation, even on the InvariantCulture, the
18616                  * sorting is not done by computing the unicode values, but their
18617                  * actual sort order.
18618                  */
18620 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
18622         * loader.c: for P/Invoke methods, allow the "Internal" shared
18623         library name to refer to the calling process symbol namespace.
18625 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
18627         * Makefile.am: Add the security manager to the build.
18628         * security-manager.c|h: New. Initialization of the security manager.
18630 2005-01-07  Dick Porter  <dick@ximian.com>
18632         * threads.c: 
18633         * monitor.c: Update thread state during Monitor and WaitHandle
18634         waits.  Fixes bug 71031.
18636 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
18638         * reflection.c (property_encode_signature): Correctly handle when the
18639         property has no methods.
18641 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
18643         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
18644         
18645         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
18646         fields from mb, not rmb. Fixes #71017.
18648         * marshal.c (emit_ptr_to_str_conv): Add support for 
18649         ByValTStr -> string conversion. Fixes #71015.
18651         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
18653         * mempool.c (mono_mempool_contains_addr): New helper function.
18655 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18657         * metadata.c (mono_metadata_compute_size): Fix size calculation of
18658         HasSematics encoded fields.
18659         
18660         * metadata.c (mono_type_to_unmanaged): Improve error message for 
18661         invalid string marshalling.
18663         * metadata.c: Fix warnings.
18664         
18665 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
18667         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
18668         profiler support.
18670 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
18672         * domain.c object.c domain-internals.h: Revert part of r38077 since the
18673         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
18674         tests.
18676 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
18678         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
18679         so methods containing these can be AOTed.
18681 2005-01-03  Martin Baulig  <martin@ximian.com>
18683         * loader.c (find_method): Removed the hack for generic instances.
18684         (method_from_memberref): If our parent is a generic instance, pass
18685         its generic type definition to find_method() and then inflate the
18686         method.
18687         (mono_get_method_constrained): Pass the generic type definition to
18688         find_method() and inflate the method later.
18690         * class-internals.h (MonoStats): Added `generic_class_count'.
18692         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
18693         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
18695         * reflection.c (mono_custom_attrs_from_params): Don't ignore
18696         generic type definitions.
18698 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
18700         * loader.c icall.c: Fix warnings.
18702 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
18704         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
18705         blittable types. Fixes #70864.
18707 2004-12-29  Martin Baulig  <martin@ximian.com>
18709         * icall.c
18710         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
18712         * reflection.c (mono_method_get_object): Create a
18713         "System.Reflection.MonoGenericMethod" for inflated methods; don't
18714         call mono_get_inflated_method().
18716         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
18718 2004-12-27  Martin Baulig  <martin@ximian.com>
18720         * class-internals.h (MonoMethod): Added `is_inflated' flag.
18721         (MonoMethodInflated): Added `inflated' field.
18723         * class.c (mono_class_inflate_generic_method): Don't really
18724         inflate the method here; just set the `is_inflated' flag in the
18725         MonoMethod.
18726         (mono_class_get_inflated_method): Actually inflate the method here
18727         if it's not already inflated; we use the MonoMethodInflated's new
18728         `inflated' field as a cache.
18730 2004-12-26  Martin Baulig  <martin@ximian.com>
18732         * class.c
18733         (inflate_generic_class): Moved some code out of inflate_generic_type().
18734         (mono_class_inflate_generic_method): If we're already inflated,
18735         inflate the context and use the declaring method; ie. make sure
18736         the declaring method of an inflated method is always the generic
18737         method definition.
18738         (mono_class_create_from_typedef): Create
18739         `class->generic_container->context->gclass'.
18741 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
18743         * metadata-internals.h, marshal.c, reflection.c: More
18744         MonoGHashTable->GHashTable.
18746         * domain-internals.h, class.c: Change MonoGHashTable's into
18747         GHashTables for some cases where no gc stuff is used
18749         All users: update apis
18751 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
18753         * metadata.c (builtin_types): Make this `const'. Makes this get
18754         put into the shareable section.
18755         (mono_metadata_init): Casts to make gcc happy.
18757 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
18759         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
18761 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
18763         * icall.c: Added an internal call to retrieve the position and length
18764         of assembly-level declarative security attributes (RequestMinimum, 
18765         RequestOptional and RequestRefuse). This is used by the Assembly class
18766         to re-create the corresponding permission sets.
18768 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
18770         * marshal.c: fix the stelemref wrapper to be type correct
18771         (and faster).
18773 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
18775         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
18776         to do key & 0x7fffffff. Hashtable already does this. It just
18777         results in longer code.
18779 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
18781         * appdomain.c: Bump corlib version.
18782         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
18783         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
18784         * reflection.c|h: Add functions to get declarative security infos
18785         (blob position and length) for assemblies, classes and methods.
18787 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
18789         * reflection.c: sort the constant table (bug #70693).
18791 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
18793         * object-internals.h, threads.c, domain.c: add accessors for
18794         the MonoThread and MonoDomain tls keys.
18796 2004-12-18  Martin Baulig  <martin@ximian.com>
18798         * class.c (inflate_generic_type): If we're inflating a generic
18799         instance, set `ngclass->context->container = context->container';
18800         ie. the container we inflated into.
18802         * metadata.c (mono_metadata_parse_generic_param): Reflect above
18803         inflate_generic_type() changes.
18805 2004-12-17  Martin Baulig  <martin@ximian.com>
18807         * class-internals.h
18808         (MonoGenericClass): Replaced `MonoType *generic_type' with
18809         `MonoClass *generic_class'.  Removed `dynamic_info'; if
18810         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
18811         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
18813 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
18815         * exception.c (mono_exception_from_token): New helper function.
18817 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
18819         * assembly.c (mono_assembly_load_with_partial_name): Call 
18820         mono_assembly_loaded before invoking the preload hooks. Fixes
18821         #70564.
18823         * object-internals.h (MonoThread): Change culture_info and 
18824         ui_culture_info into an array.
18826         * threads.c: Cache culture info objects from more than one appdomain.
18828         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
18829         current UI culture.
18831 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
18833         * threads.h threads.c appdomain.c: Clear the culture_info field of
18834         all threads during unloading if they point to an object in the dying
18835         appdomain.
18837 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
18839         * culture-info.h (TextInfoEntry): New struct
18840         * object-internals.h: sync with managed
18841         * locales.c: fill the `text_info_data' field
18842         * culture-info-tables.h: update
18844 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
18846         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
18847         collector.
18849 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
18851         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
18852         (ves_icall_ModuleBuilder_getMethodToken): Ditto
18854 2004-12-12  Martin Baulig  <martin@ximian.com>
18856         * mono-debug-debugger.c (write_type): If we're an enum and the
18857         builtin types have already been initialized, call mono_class_init().
18859 2004-12-11  Martin Baulig  <martin@ximian.com>
18861         * metadata.c (mono_metadata_load_generic_params): Added
18862         `MonoGenericContainer *parent_container' argument; automatically
18863         compute `container->is_method'; pass the correct owner to
18864         get_constraints().      
18866         * reflection.c (compare_genericparam): Sort the GenericParam table
18867         according to increasing owners. 
18869 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
18871         * profiler.c: allow disabling the default profiler.
18873 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
18875         * decimal.c, icall.c: allow disabling System.Decimal support.
18877 2004-12-09  Marek Safar <marek.safar@seznam.cz>
18879         * reflection.c: Add support for null attribute arguments.
18881 2004-12-09  Martin Baulig  <martin@ximian.com>
18883         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
18884         names to get rid of compiler warnings.
18886 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18888         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
18889         mono_marshal_load_type_info (). Fixes #69625.
18890         (mono_marshal_get_ptr_to_struct): Likewise.
18892 2004-12-08  Martin Baulig  <martin@ximian.com>
18894         * mono-debug.h: Bumped version number to 47.
18896         * mono-debug-debugger.c
18897         (mono_debugger_event_handler, mono_debugger_event): Take two
18898         guint64 arguments insteed of a gpointer and a guint32.  
18900 2004-12-08  Martin Baulig  <martin@ximian.com>
18902         * debug-mono-symfile.h
18903         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
18904         `address' to `native_offset'.
18906 2004-12-08  Martin Baulig  <martin@ximian.com>
18908         * class.c (mono_class_create_from_typespec): Only inflate if we
18909         either have `context->gclass' or `context->gmethod'.
18911 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
18913         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
18915         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
18917         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
18919         * reflection.c (mono_assembly_get_object): Remove the workaround put
18920         in for the release.
18921         
18922         * appdomain.c: Use the corlib_internal field from MonoAssembly.
18924         * appdomain.c: Bump corlib version.
18926         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
18927         be visible in other appdomains.
18929 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
18931         * threads.c: Interlocked inc and dec for longs were messed up,
18932         use a KISS based impl for this. Fixes 70234
18934 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
18936         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
18938 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
18940         * icall.c: fix to follow policy not to allow struct
18941         arguments in icalls.
18943 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18945         * process.c: make the patch that handles spaces in file paths work
18946         on mono/windows too.
18948 2004-12-06  Martin Baulig  <martin@ximian.com>
18950         * class.c (mono_class_create_generic): Call
18951         mono_class_setup_supertypes() if we're dynamic.
18952         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
18954 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
18956         * object-internals.h: Add new fields to MonoThread.
18958         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18960         * icall.c threads-types.h threads.c: Add new icalls.
18962         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
18964         * object-internals.h (MonoReflectionAssembly): Sync object layout with
18965         managed side.
18967         * appdomain.c: Bump corlib version.
18969         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
18970         internal assemblies. Fixes #69181.
18972 2004-12-05  Martin Baulig  <martin@ximian.com>
18974         * class.c (mono_class_inflate_generic_signature): Make this a
18975         no-op if `context' is NULL or we don't have any type parameters;
18976         also copy `sentinelpos'.        
18978 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
18980         * image.c: Add unbox_wrapper_cache.
18982         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
18984         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
18985         function generator.
18986         
18987         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
18988         Fixes #70173.
18990         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
18991         
18992 2004-12-04  Martin Baulig  <martin@ximian.com>
18994         * loader.c (mono_method_get_signature_full): New public function;
18995         like mono_method_get_signature(), but with an additional
18996         `MonoGenericContext *' argument.
18998         * class.c (mono_class_inflate_generic_signature): Formerly known
18999         as inflate_generic_signature(); make this public.
19001 2004-12-04  Martin Baulig  <martin@ximian.com>
19003         * metadata.c
19004         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
19005         instead of a `MonoGenericContainer *'.  
19006         (mono_metadata_parse_array_full): Likewise.
19007         (mono_metadata_parse_signature_full): Likewise.
19008         (mono_metadata_parse_method_signature_full): Likewise.
19009         (mono_metadata_parse_generic_inst): Likewise.
19010         (mono_metadata_parse_generic_param): Likewise.
19011         (mono_metadata_parse_mh_full): Likewise.
19012         (mono_type_create_from_typespec_full): Likewise.
19014 2004-12-03  Martin Baulig  <martin@ximian.com>
19016         * class-internals.h (MonoGenericContainer): Replaced the
19017         `MonoGenericContext * pointer with a `MonoGenericContext'
19018         structure and made it the first element.
19020 2004-12-03  Martin Baulig  <martin@ximian.com>
19022         * class.c
19023         (inflate_generic_type): Set the `context->container' when creating
19024         a new MonoGenericContext.
19025         (mono_class_inflate_generic_method): Likewise.
19026         (mono_class_create_from_typespec): Just use `context->container'
19027         to get the container.
19029         * loader.c (method_from_methodspec): Set `context->parent' from
19030         `context->container' - and if that's a method container, use its
19031         parent.  Also set the `context->container' when creating a new
19032         MonoGenericContext.
19033         (mono_get_method_from_token): Use just `context->container' to get
19034         the container.
19036         * metadata.c (do_mono_metadata_parse_generic_class): Also set
19037         `gclass->context->container'.
19039         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
19040         the `context->container' when creating a new MonoGenericContext.
19042 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
19044         * reflection.c (compare_genericparam): Sort params with identical
19045         owner by their number. Fixes gen-111 on sparc.
19047 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
19049         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
19050         around the domain changes.
19052         * appdomain.c (mono_domain_unload): Handle the case when the thread
19053         calling Unload is itself being aborted during unloading. Fixes #70022.
19055         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
19057         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
19058         checkpoint_func as an icall so it gets a wrapper.
19059         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
19060         in the cross-appdomain wrappers too.
19062         * threads.c (mono_thread_has_appdomain_ref): Make this public.
19064         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
19066         * reflection.c: Fix some memory leaks.
19067         
19068 2004-12-02  Martin Baulig  <martin@ximian.com>
19070         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
19072         * metadata.c (generic_class_cache): New static hashtable.
19073         (mono_metadata_lookup_generic_class): New public method.
19075 2004-12-02  Martin Baulig  <martin@ximian.com>
19077         * class.c (mono_class_create_from_typedef): Call
19078         mono_class_setup_parent() and mono_class_create_mono_type() before
19079         parsing the interfaces.
19081 2004-12-02  Martin Baulig  <martin@ximian.com>
19083         * metadata.c (generic_inst_cache): New static hashtable.
19084         (mono_metadata_lookup_generic_inst): New public function.
19085         (mono_metadata_inflate_generic_inst): New public function.
19086         (mono_metadata_parse_generic_inst): New public function.
19087         (do_mono_metadata_parse_generic_class): Use the new
19088         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
19089         since this'll also use the cache.
19091         * reflection.c (mono_reflection_bind_generic_method_parameters):
19092         Use mono_metadata_lookup_generic_inst() to use the new cache.
19094         * class.c (inflate_mono_type): Use
19095         mono_metadata_inflate_generic_inst() to inflate a generic
19096         instance; this'll also use the new cache.
19098         * loader.c (method_from_methodspec): Use
19099         mono_metadata_parse_generic_inst() and
19100         mono_metadata_inflate_generic_inst() rather than parsing it
19101         manually, so we can use the new cache.
19103 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
19105         * threads.c (wait_for_tids): Do not incorrectly free threads when 
19106         the wait times out.
19108 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
19110         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
19111         iter->args based on whether parameters are passed in registers (i.e.
19112         MONO_ARCH_REGPARMS is defined)
19114 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
19116         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
19117         the exception message. Fixes #70070.
19118         (method_from_methodspec): Fix warnings.
19120 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19122         * process.c: (complete_path) return the path quoted
19124 2004-12-01  Martin Baulig  <martin@ximian.com>
19126         * class-internals.h (MonoGenericInst): New structure.
19127         (MonoGenericClass): Replaced `type_argc', `type_argv' and
19128         `is_open' with `MonoGenericInst *inst'.
19129         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
19130         `is_open' with `MonoGenericInst *inst'.
19132 2004-11-30  Martin Baulig  <martin@ximian.com>
19134         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
19136         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
19137         to `generic_class_cache'.
19139         * metadata.c
19140         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
19141         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
19142         (mono_generic_inst_is_valuetype): Renamed to
19143         mono_generic_class_is_valuetype().
19145         * class-internals.h
19146         (MonoGenericInst): Renamed to MonoGenericClass.
19147         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
19148         (MonoClass): Renamed `generic_inst' to `generic_class'.
19149         (MonoGenericContext): Renamed `ginst' to `gclass'.
19151         * object-internals.h
19152         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
19154         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
19155         mono_reflection_generic_class_initialize().
19157         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
19158         now known as "System.Reflection.MonoGenericClass".
19159         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
19161 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
19163         * class-internals.h: Added a flag field to MonoClass to cache the
19164         declarative security attributes actions associated with the class.
19165         * domain-internals.h: Added booleans to MonoJitInfo to cache the
19166         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
19167         applicable to the JITted method.
19168         * reflection.c|h: Added functions to extract (as flags) which security
19169         actions are available (declaratively) for a method, class or assembly.
19170         * metadata.c|h: Added functions to search the declarative security
19171         table in the metadata.
19172         
19173 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
19175         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
19176         EXPORTEDTYPES are already in the class name cache, so there is no
19177         need to add extra code here to look at them. Just removes a bit of
19178         cruft.
19180         (ves_icall_System_Environment_get_TickCount): No need for #if
19181         WINDOWS. We already have the code in io-layer.
19183 2004-11-28  Martin Baulig  <martin@ximian.com>
19185         * loader.c
19186         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
19187         Fixes gen-112.cs.
19189 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
19191         * assembly.c (do_mono_assembly_open): Instead of having a
19192         conditional WITH_BUNDLE, incorporate support for bundles here, by
19193         having a global `bundles' variable holding a pointer to the actual
19194         bundles. 
19196         (mono_register_bundled_assemblies): New API call used by the
19197         bundle code. 
19199         See mkbundle.1 for details.
19200         
19201 2004-11-27  Martin Baulig  <martin@ximian.com>
19203         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
19204         the vtable for generic methods.
19206 2004-11-26  Martin Baulig  <martin@ximian.com>
19208         * metadata.c
19209         (mono_metadata_generic_method_hash): New public function.
19210         (mono_metadata_generic_method_equal): Likewise.
19212         * class-internals.h
19213         (MonoGenericContainer): Added `GHashTable *method_hash'.
19215         * reflection.c (ReflectionMethodBuilder): Added
19216         `MonoGenericContainer *generic_container'.
19217         (reflection_methodbuilder_to_mono_method): Don't create a new
19218         MonoGenericContainer each time we're called.
19219         (mono_reflection_bind_generic_method_parameters): Use
19220         `container->method_hash' to cache the results so we don't create a
19221         different method if we're called several times with the same
19222         arguments.
19224         * loader.c (method_from_methodspec): Use the new
19225         `container->method_hash' here, too.
19227 2004-11-26  Martin Baulig  <martin@ximian.com>
19229         * class.c (inflate_generic_signature): Correctly compute
19230         `res->has_type_parameters'.
19231         (mono_class_vtable): Use the `has_type_parameters' flag to
19232         determine whether we're a generic method.
19234         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
19236 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
19238         * object.c (mono_runtime_run_main): Fix a small memory leak.
19240 2004-11-25  Martin Baulig  <martin@ximian.com>
19242         * class.c (set_generic_param_owner): Fixed the loop.
19244 2004-11-25  Martin Baulig  <martin@ximian.com>
19246         * object.c (mono_class_vtable): Don't create any JIT wrappers for
19247         generic methods.
19249 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
19251         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
19252         names. Fixes #69787.
19254 2004-11-24  Martin Baulig  <martin@ximian.com>
19256         * class.c (mono_class_create_generic_2): If we don't have a
19257         `ginst->parent', inflate `gklass->parent' to get our parent.
19259 2004-11-24  Martin Baulig  <martin@ximian.com>
19261         * reflection.c (compare_genericparam): Correctly sort the
19262         GenericParam table; fixes #69779.
19264 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
19266         * reflection.c: When writing a PE file, don't create a huge
19267         buffer in memory. Just write the arrays we have to the file.
19268         This reduces memory usage.
19270         * metadata-internals.h: MonoDynamicStream pefile is no longer used
19271         globally.
19273 2004-11-17  Martin Baulig  <martin@ximian.com>
19275         * class.c (mono_class_init): Don't setup `class->parent' for
19276         dynamic instances; moved this to mono_class_generic_2().
19277         (mono_class_create_generic): Also set `klass->inited' for dynamic
19278         generic instances.
19279         (mono_class_create_generic_2): Don't do anything for dynamic
19280         generic instances.  Set `klass->parent' here and also call
19281         mono_class_setup_parent() here. 
19283         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
19284         `MonoType *parent' argument; set `ginst->parent' before calling
19285         mono_class_create_generic_2(), so we set the correct parent.
19287 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
19289         * reflection.c: allow getting attributes from ModuleBuilder
19290         (used by ikvm).
19292 2004-11-17  Martin Baulig  <martin@ximian.com>
19294         * class.c (mono_class_create_from_typedef): If a type parameter is
19295         inherited from an outer class, set its owner to that class.
19297 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
19299         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
19300           for (int*) written size. This fixes bug #69592.
19302 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
19304         * icall.c: Added IsAuthenticodePresnet internal call.
19305         * image.c|h: New function that check a MonoImage for an Authenticode
19306         signature in the certificate PE data directory.
19307         * security.c|h: New internal call to ask the runtime if an 
19308         Authenticode signature seems referenced in the PE header.
19310 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
19312         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
19314         * reflection.c (mono_image_create_pefile): Free the assembly streams
19315         after writing out the assembly file.
19317         * object.c (mono_runtime_run_main): Fix small memory leak.
19319         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
19320         property access modifiers. Fixes #69389.
19322 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
19324         * domain.c, object.c, object-internals.h, domain-internals.h,
19325         object.h, marshal.c: keep dynamic code info per domain.
19327 2004-11-15  Martin Baulig  <martin@ximian.com>
19329         * class.c (mono_type_get_name_recurse): Put type arguments in
19330         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
19331         see bug #68387.
19333 2004-11-15  Martin Baulig  <martin@ximian.com>
19335         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
19336         (mono_class_setup_vtable): When computing `the_cname' for a
19337         generic instance, don't include the namespace since we'd otherwise
19338         add it twice.
19340 2004-11-15  Martin Baulig  <martin@ximian.com>
19342         * class.c (mono_class_create_generic): Changed return type to void.
19343         (mono_class_create_generic_2): New public function; setup
19344         `class->method', `class->field' and `class->interfaces' here
19345         instead of in mono_class_init().
19347         * class.h (mono_class_create_generic): Moved to class-internals.h.
19349 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
19351         * reflection.c (mono_image_create_pefile): take a file HANDLE.
19352         rather than writing to memory, write to this file. Right now,
19353         we are just writting into a buffer, and copying that. However
19354         we can avoid the buffer later.
19356         (mono_dynamic_stream_reset): new function
19358         * icall.c, object-internals.h: update for the above.
19360 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
19362         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
19363         have been using gc'd memory. First it is slower, unlikely
19364         the comment in the source code said, secondly, it increases
19365         our footprint to do it in the gc.
19367         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
19368         the method so that it does not have to copy to managed code.
19370 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
19372         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
19374 2004-11-12  Martin Baulig  <martin@localhost>
19376         * reflection.c (mono_image_create_token): Allow generic method
19377         definitions here, since they may appear in an `.override'; see
19378         gen-98/gen-99 for an example.
19380 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
19382         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
19383         #69365.
19385         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
19386         descriptive.
19388 2004-11-11  Martin Baulig  <martin@ximian.com>
19390         * class.c (mono_class_setup_vtable): In an explicit interface
19391         implementation, the method name now includes the arity.
19393 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
19395         * object.c (mono_array_full_copy): Fix warning.
19397 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
19399         * appdomain.c: Removed look_for_method_by_name(). Use the new method
19400         mono_class_get_method_from_name() instead.
19401         
19402         * class-internals.h: Added two new types of wrappers. 
19403         Added MonoRemotingTarget enum. Added new trampoline function type, which
19404         takes an additional MonoRemotingTarget value as parameter, so it is
19405         possible to request a trampoline for a specific target.
19406         
19407         * class.c: Added new mono_class_get_method_from_name() method.
19408         
19409         * class.h: In MonoRemoteClass, we can have now to vtables, one for
19410         general remoting sinks and one specific for cross domain calls.
19411         
19412         * debug-helpers.c: Added new wrapper names.
19413         
19414         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
19415         of a remote class.
19416         
19417         * image.c: Porperly delete value objects form the remoting invoke hashtable.
19418         
19419         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
19420         with several other methods (mono_marshal_get_xappdomain_dispatch,
19421         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
19422         and others) can generate a fast remoting wrapper for cross domain calls.
19423         More information can be found in docs/remoting.
19424         Other changes: Removed mono_find_method_by_name, and used
19425         mono_class_get_method_from_name instead.
19426         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
19427         is stored in the remoting invoke hashtable.
19428         
19429         * marshal.h: published the new method for getting the xdomain wrapper,
19430         and also added a method for getting the adequate wrapper for a given
19431         method and target.
19432         
19433         * object-internals.h, object.c: Added a couple of methods for capying and
19434         cloning arrays.
19435         Modified mono_install_remoting_trampoline, which takes the new remoting
19436         trampoline that has a remoting target as parameter.
19437         mono_class_proxy_vtable now also takes a remoting target as parameter, and
19438         will return the most suitable vtable for the target.
19439         Added mono_remote_class_vtable, which returns the vtable of a remote class
19440         (which can be the normal remoting vtable or the xdomain vtable).
19441         
19442         * threads.c: the xdomain invoke and dispatch wrappers must also be
19443         protected against interruptions.
19445 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19447         * icall.c: use memmove in BlockCopyInternal when the source and
19448         destination arrays are the same.
19450 2004-11-09  Martin Baulig  <martin@ximian.com>
19452         * class-internals.h (MonoGenericContainer): Removed `method' and
19453         `signature', replaced them with `is_method' and `is_signature'
19454         flags.  Added `context'.
19456         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
19457         instead of a `MonoGenericContainer *'.
19459         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
19460         for dynamic type parameters.
19461         (mono_metadata_load_generic_params): Setup `container->context'.
19463         * reflection.c (mono_reflection_setup_generic_class): Setup
19464         `tb->generic_container->context'.
19465         (do_mono_reflection_bind_generic_parameters): Use
19466         mono_class_inflate_generic_type() to correctly inflate types,
19467         rather than using our own hack just for MONO_TYPE_VAR.
19469 2004-11-09  Martin Baulig  <martin@ximian.com>
19471         * class.c (mono_class_inflate_generic_method): Small fix; don't
19472         crash here.
19474         * icall.c
19475         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
19476         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
19477         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
19478         (ves_icall_Type_BindGenericParameters): Likewise.
19479         (ves_icall_Type_get_IsGenericInstance): Likewise.
19480         (ves_icall_Type_GetGenericParameterPosition): Likewise.
19481         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
19482         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
19483         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19485 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
19487         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
19488         assembly versions and public key tokens. Fixes #69113.
19490 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
19492         * metadata.c: fix bug introduced with the type cache changes
19493         on 2004-11-06.
19495 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
19497         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
19498         the MonoClass pointer instead of the token in exception clauses.
19499         * reflection.c: updates for the above and make the code not depend
19500         on the structure of MonoExceptionClause.
19502 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
19504         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19505         Add support for dynamic assemblies. Fixes #69114.
19507         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
19509 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
19511         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
19512         since most only those methods use it. the code member of
19513         MonoMethodPInvoke was dead, so that can be removed too. Also,
19514         remove inline_count (again, not used), and move slot so that it
19515         can share bits with some other flags. This saves 8 bytes in the
19516         structure and gives us about 50 kb back for mcs helloworld.cs
19518         * *.[ch]: Do naming changes for the above.
19520         * loader.c (mono_method_get_header): Lazily init the header
19521         on first access.
19522         (mono_get_method_from_token): don't init the header here
19523         (mono_free_method): the header may never be allocated
19525         Overall, this saves 150 kb of unmanaged allocations
19526         for mcs helloworld.cs. That accounts for 10% of the unmanaged
19527         memory at runtime.
19528         
19529         * loader.c, loader.h (mono_method_get_header): new accessor.
19531         * *.[ch]: use the above method. Prepares us to lazily load
19532         the header.
19534         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
19535         three warnings, which are actual bugs (see 69206).
19537         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
19538         unused. Saves a cool 4 bytes / method.
19540 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
19542         * metadata.c (builtin_types): Add types for System.Object here.
19543         (mono_metadata_parse_type_full): Cache MonoType*'s that are
19544         for a class or valuetype from klass->this_arg or klass->byval_arg.
19546         On mcs for a hello world, this gets us down from 21836 MonoType's
19547         to 14560.
19549         (mono_metadata_free_type): Account for the above change.
19551 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
19553         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
19554         exception instead of asserting if name is null.
19555         (ves_icall_System_AppDomain_GetData): Ditto.
19557 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
19559         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
19560         EnumBuilder.
19562         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
19563         Return NULL when the domain does not have entry_assembly set.
19565         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
19566         Add a 'resource_modules' argument.
19567         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
19569         * reflection.c (mono_reflection_create_runtime_class): Move setting
19570         of wastypebuilder here, so mono_get_type_object () returns a MonoType
19571         for enums too.
19573         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
19574         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
19575         Throw an ArgumentNullException if 'ptr' is null.
19577         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
19578         assemblies here. Fixes #69020.
19580 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
19582         * reflection.c (build_compressed_metadata): Fix the previous patch for
19583         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
19584         the stack.
19586 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
19588         * assembly.c (mono_assembly_names_equal): Allow a match if one of
19589         the cultures is false. Fixes #69090.
19591         * reflection.c (build_compressed_metadata): Fix invalid memory read 
19592         detected by valgrind.
19593         
19594         * reflection.c (mono_reflection_get_type): Avoid triggering a 
19595         TypeResolve multiple times for the same type. Fixes #65577.
19597 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
19599         * marshal.c: Avoid using ldftn to call managed functions. It is
19600         much slower than just a call.
19602         * reflection.c (mono_module_get_object): free the basename we
19603         allocate here from glib.
19604         
19605         * reflection.c (ensure_runtime_vtable): make sure to free
19606         overrides.  Also, we were allocating an array of MonoMethod not an
19607         array of MonoMethod*.
19609         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
19611         * image.c (mono_image_close): free image->guid here.
19613 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
19615         * reflection.c: Fix some spec conformance issues with the PE file
19616         structures so mcs compiled apps run on the Net 2.0 beta.
19618 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
19620         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
19621         Implement this. Fixes #67264.
19623         * debug-helpers.h debug-helpers.c marshal.c: Move 
19624         mono_find_method_by_name to debug-helpers.c.
19626 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
19628         * object.c (mono_release_type_locks): type_initialization_hash is
19629         a GHashTable.
19631         * reflection.c object.c object-internals.h: Fix warnings.
19633         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
19634         without accessors. Fixes #61561.
19636         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
19637         application base from the root domain if not set. Fixes #65641.
19638         (mono_runtime_init): Fix warning.
19640 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19642         * appdomain.c: call mono_thread_pool_init.
19643         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
19644         of worker threads based on the number of CPUs and the environment
19645         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
19646         for non-windows (windows) systems.
19648 2004-10-27  Chris Toshok  <toshok@ximian.com>
19650         * mono-debug-debugger.c (write_class): don't call mono_class_init
19651         here, as even with the check for (!klass->init_pending), we get
19652         into a situation where we're hitting cycles in class
19653         initialization.  Fixes #68816.
19655 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
19657         * image.c: Avoid overwriting values in the loaded_images_hash when an
19658         assembly is loaded multiple times. Fixes #61152.
19660         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
19661         so multiple satellite assemblies for the same name can be loaded.
19662         Fixes #68259.
19664         * mono_domain_assembly_preload: Actually return the loaded assembly, 
19665         not NULL.
19667         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
19668         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
19670         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
19671         pending finalizers are not invoked after the appdomain has been 
19672         unloaded. Fixes #67862.
19674 2004-10-22  Martin Baulig  <martin@ximian.com>
19676         * mono-debug-debugger.c
19677         (mono_debugger_runtime_invoke): Don't box valuetypes.
19679 2004-10-22  Chris Toshok  <toshok@ximian.com>
19681         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
19682         don't hide private methods.
19684 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
19686         * icall.c: Allows the runtime to "share" (when known) the public key
19687         token of an assembly. This avoid the need to recalculate the token 
19688         (from the public key) in managed code.
19690 2004-10-21  Chris Toshok  <toshok@ximian.com>
19692         * debug-helpers.c (append_class_name): argh, revert last patch.
19693         
19694 2004-10-21  Chris Toshok  <toshok@ximian.com>
19696         * debug-helpers.c (append_class_name): use '+' as the delimiter,
19697         not '/', so that it matches what the debugger uses to look up
19698         methods.
19700 2004-10-21  Martin Baulig  <martin@ximian.com>
19702         * mono-debug-debugger.c (mono_debugger_throw_exception): New
19703         public method; this is called each time an exception is thrown and
19704         allows the debugger to use exception catch points.
19706 2004-10-21  Martin Baulig  <martin@ximian.com>
19708         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
19709         the stack pointer and the exception object in some struct and pass
19710         that to the debugger.
19712 2004-10-21  Chris Toshok  <toshok@ximian.com>
19714         * mono-debug-debugger.c (do_write_class): add instance/static
19715         event support.  We don't expose "raise" or "other" yet.
19716         (event_is_static): new method.
19718 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
19720         * mono-debug-debugger.c
19721         (mono_debugger_handle_exception): Remove
19722         bogus return value for fussy compilers.
19724 2004-10-20  Martin Baulig  <martin@ximian.com>
19726         * mono-debug-debugger.c
19727         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
19728         (mono_debugger_handled_exception): Likewise.
19730 2004-10-20  Martin Baulig  <martin@ximian.com>
19732         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19733         MONO_DEBUGGER_EVENT_EXCEPTION.
19735         * mono-debug-debugger.c (mono_debugger_handle_exception): New
19736         public function to send the debugger a notification for an
19737         exception and inform it about a catch/finally clause.
19739 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
19741         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
19742         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
19743         fix 2.95 build. 
19745         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
19747 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
19749         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
19750         marshalled as [In,Out]. Fixes #58325.
19752 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
19754         * reflection.c (mono_method_body_get_object): Implement some fields.
19756 2004-10-12  Martin Baulig  <martin@ximian.com>
19758         * reflection.c (mono_reflection_bind_generic_parameters): Small
19759         fix, correctly retrieve our parent from a generic instance.
19761 2004-10-12  Martin Baulig  <martin@ximian.com>
19763         * metadata.c (mono_metadata_generic_param_equal): We always have
19764         an owner.
19766         * class.c
19767         (mono_class_from_generic_parameter): We need to have an owner.
19768         (my_mono_class_from_generic_parameter): Likewise.
19770         * reflection.c (mono_reflection_setup_generic_class): Renamed to
19771         mono_reflection_create_generic_class() and added a new
19772         mono_reflection_setup_generic_class().  
19773         (mono_reflection_initialize_generic_param): If we're a nested
19774         generic type and inherited from the containing class, set our
19775         owner to the outer class.
19777 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
19779         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
19781         * reflection.c (mono_method_body_get_object): New function to create
19782         a MethodBody object.
19784         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
19786 2004-10-11  Martin Baulig  <martin@ximian.com>
19788         * metadata.c (_mono_metadata_type_equal): Renamed to
19789         do_mono_metadata_type_equal() and made static.
19791 2004-10-11  Martin Baulig  <martin@ximian.com>
19793         * appdomain.c: Bump corlib version number to 28.
19795 2004-10-10  Martin Baulig  <martin@ximian.com>
19797         * class-internals.h
19798         (MonoGenericInst): Added `MonoGenericContainer *container'.
19799         (MonoGenericMethod): Likewise.
19800         (MonoGenericContext): Likewise.
19801         (MonoGenericParam): Added `MonoGenericContainer *owner'.
19803         * metadata.c
19804         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
19805         (do_mono_metadata_parse_generic_inst): Likewise.
19806         (mono_metadata_parse_type_full): New public method.  This is the actual
19807         mono_metadata_parse_type() implementation - with an additional
19808         `MonoGenericContainer *' argument.
19809         (mono_metadata_parse_array_full): Likewise.
19810         (mono_metadata_parse_signature_full): Likewise.
19811         (mono_metadata_parse_method_signature_full): Likewise.
19812         (mono_metadata_parse_mh_full): Likewise.
19813         (mono_type_create_from_typespec): Likewise.
19814         (mono_metadata_interfaces_from_typedef_full): New public method;
19815         this is similar to the other _full() methods, but we take a
19816         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
19817         (mono_metadata_parse_generic_param): Take an additional
19818         `MonoGenericContainer *' argument and lookup the MonoGenericParam
19819         from that container.
19820         (mono_metadata_generic_param_equal): New static method to compare
19821         two type parameters.
19822         (_mono_metadata_type_equal): New static method; takes an
19823         additional `gboolean signature_only' argument - if true, we don't
19824         compare the owners of generic parameters.
19825         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
19826         with a TRUE argument - do a signature-only comparision.
19828         * loader.c: Use the new _full() methods and pass the
19829         MonoGenericContainer to them.
19831         * object-internals.h (MonoReflectionTypeBuilder): Added
19832         `MonoGenericContainer *generic_container' field.
19833         (MonoReflectionMethodBuilder): Likewise.
19835 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
19837         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
19838         case initial images of dynamic assemblies.
19840         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
19842         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
19844         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
19845         length of event->other array.
19846         (typebuilder_setup_events): Ditto.
19848         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
19849         'assembly_by_name' and add an 'assemblies' list.
19851         * assembly.h assembly.c: Add a new search hook for determining whenever
19852         an assembly is already loaded. Use this instead of searching in the
19853         loaded_assemblies list.
19855         * domain.c appdomain.c: Implement the new search hook so loaded 
19856         assemblies are now scoped by appdomain. Fixes #67727.
19858 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
19860         * threads.c (mono_thread_attach): Initialize synch_lock field so
19861         mono_thread_detach works again.
19863         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
19864         'lib' too. Fixes #63130.
19866 2004-10-06  Jackson Harper  <jackson@ximian.com>
19868         * culture-info-tables.h: regenerated.
19870 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
19872         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
19873         implemented by other interfaces in the result. Fixes #65764.
19874         
19875         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
19876         Handle unloadable modules without crashing.
19878         * image.c (load_modules): Revert the previous patch since modules must
19879         have a fixed index inside the array.
19880         
19881         * image.c (load_modules): Don't include native modules in the modules
19882         array.
19884 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
19886         * reflection.h: Add param_defaults field.
19888         * reflection.c: Add support for parameter defaults in dynamic methods.
19889         Fixes #64595.
19891         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
19892         an empty string when a type has no namespace. Fixes #64230.
19894 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
19896         * tabledefs.h: Added "internal" security actions to support non-CAS
19897         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
19898         Note: they do not seems to be used anymore in 2.0 (new metadata format)
19900 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
19902         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
19903         constructor of abstract class. Fixes #61689.
19905 2004-10-04  Martin Baulig  <martin@ximian.com>
19907         * class-internals.h (MonoGenericContainer): New type.
19908         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
19909         `MonoGenericContainer *generic_container'.
19910         (MonoClass): Replaced `gen_params' and `num_gen_params' with
19911         `MonoGenericContainer *generic_container'.
19913         * metadata.c (mono_metadata_load_generic_params): Return a
19914         `MonoGenericContainer *' instead of a `MonoGenericParam *';
19915         removed the `num' argument.
19917 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
19919         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
19920         for dynamic images.
19922         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
19923         machine fields.
19925         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
19927         * reflection.c: Save pe_kind and machine values into the generated
19928         image file.
19930         * appdomain.c: Bump corlib version number.
19932         * object-internals.h: Reorganize layout of LocalBuilder.
19934         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
19935         New helper function.
19937         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
19938         created MonoType for dynamic types. Fixes #66180.
19940 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
19942         * threadpool.c: the ares hashtable needs a critical section around it.
19943         this prevents some nasty segfaults
19945 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
19947         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
19948         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
19949         bug 67324).
19950         
19951 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
19953         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
19954         
19955 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
19957         * image.c: Always canonicalize image file names, to avoid loading
19958         the same assembly twice when referenced using a relative path.
19960 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
19962         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
19964         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
19966         * marshal.c: Fix warnings.
19968 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
19970         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
19971         attempting to marshal the delegate_trampoline as the method_addr.
19972         This patch has a static hashtable of marshalled delegates so that 
19973         we can map delegate_trampoline addresses back to delegates.  This
19974         allows a delegate passed to managed code to be passed back into native
19975         code.  Fixes #67039
19977 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
19979         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
19981         * reflection.c (method_encode_code): Align method headers properly.
19982         Fixes #66025.
19984 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
19986         * marshal.c: In the runtime invoke wrapper, reset the abort
19987         exception if it is cached. This avoids the automatic rethrowal of 
19988         the exception after the catch of the wrapper. Also check for pending
19989         interruptions before calling the managed method. This is done using
19990         the new method emit_thread_force_interrupt_checkpoint, since the
19991         normal checkpoint method is ignored when running the invoke wrapper.
19992         * object.c: If the abort exception is rethrown, set the abort_exc
19993         field of the thread, so it will be rethrown aftere every catch.
19994         * threadpool.c: Only run an interruption checkpoint if what has been
19995         requested is a stop of the thread (aborts will be ignored).
19996         * threads.c: By default, a thread will now never be interrumped while
19997         running the runtime invoke wrapper (this ensures that runtime_invoke
19998         will always return to the caller if an exception pointer is provided).
19999         There is a new special method mono_thread_force_interruption_checkpoint()
20000         to force an interruption checkpoint even if running a protected
20001         wrapper, which is used by the same runtime invoke wrapper to do a check
20002         at a safe point.
20004 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
20006         * object.c, object-internals.h: Implemented mono_release_type_locks,
20007         which releases the cctor locks held by a thread.
20008         * threads.c, threads.h: In thread_cleanup, release cctor locks held
20009         by a thread. Added mono_thread_exit() method to be used to safely stop
20010         a thread.
20012 2004-09-28  Raja R Harinath  <rharinath@novell.com>
20014         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
20015         Move null check before dereference.  Avoid indexing beyond the end
20016         of the 'modules' array.
20018 2004-09-28  Raja R Harinath  <rharinath@novell.com>
20020         * metadata-internals.h (MonoImage): Add module_count field.
20021         * image.c (load_modules): Set image->module_count.
20022         (mono_image_load_file_for_image): Use image->module_count.
20023         * reflection.c (mono_image_load_module): Append to image->modules array 
20024         of dynamic assembly.
20025         (mono_module_get_object): Fix loop to actually increment index.
20026         Use image->module_count.
20027         * assembly.c (mono_assembly_load_references): Use image->module_count.
20028         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
20029         Likewise.
20031 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
20033         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
20034         Avoid assert on generic types.
20036 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
20038         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
20040         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
20042         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
20043         function to convert a MarshalSpec structure to its managed counterpart.
20045         * reflection.c: Fix warnings.
20046         
20047         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
20048         field.
20050         * icall.c (mono_create_icall_signature): Fix build.
20052 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
20054         * icall.c: Add MakePointType icall.
20056         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
20057         warnings.
20059 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20061         * threadpool.c: reuse allocated slots in the queue.
20063 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
20065         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
20067         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
20069         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
20070         previous change.
20072         * tabledefs.h: Add constants for pinvoke attributes BestFit and
20073         ThrowOnUnmappableChar.
20075         * icall.c (ves_icall_Type_GetPacking): New icall.
20077 2004-09-24  Martin Baulig  <martin@ximian.com>
20079         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
20081 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20083         * appdomain.c:
20084         (mono_domain_set): allow setting a domain that is being unloaded.
20085         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
20086         being unloaded.
20088 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
20090         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
20091         the GetCustomAttributes icall.
20093 2004-09-23  Martin Baulig  <martin@ximian.com>
20095         * object-internals.h (MonoReflectionGenericParam): Replaced
20096         'has_ctor_constraint', `has_reference_type' and `has_value_type'
20097         with `guint32 attrs'.
20099 2004-09-23  Martin Baulig  <martin@ximian.com>
20101         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
20103 2004-09-23  Martin Baulig  <martin@ximian.com>
20105         * object-internals.h (GenericParameterAttributes): New enum.
20107 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
20109         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
20110         
20111         * class.c (init_events): Fill out event->other field.
20113         * class.c: Fix warnings.
20115         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
20117 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
20119         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
20120         walk which doesn't supply the IL offset.
20122 2004-09-22  Martin Baulig  <martin@ximian.com>
20124         * reflection.c (mono_reflection_setup_internal_class): If we're
20125         System.ValueType, System.Object or System.Enum, set
20126         `klass->instance_size' and create the vtable.
20127         (mono_reflection_create_internal_class): If we're an enum type,
20128         get the base class from our current corlib.
20130 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
20132         * reflection.h (MonoResolveTokenError): New type.
20134         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
20135         icall.
20137         * icall.c: Add an 'error' argument to the ResolveToken icalls.
20139 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
20141         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
20142         Support also calling constructors, but only for already allocated objects.
20144 2004-09-17  Geoff Norton <gnorton@customerdna.com>
20146         * reflection.c (type_get_qualified_name): If the klass is null
20147         return the typename to avoid a NullRefEx.
20148         (encode_cattr_value): Get the qualified name of the boxed type,
20149         not the underlying enumtype.  Fixes #62984.
20151 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
20153         * marshal.c: Fix problems with previous checkin.
20155 2004-09-21    <vargaz@freemail.hu>
20157         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
20158         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
20160         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
20162 2004-09-21  Geoff Norton <gnorton@customerdna.com>
20164         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
20165         should only return a type for pointers, arrays, and passbyref types.
20166         Fixes bug #63841.
20168 2004-09-21  Martin Baulig  <martin@ximian.com>
20170         * domain.c (mono_debugger_check_runtime_version): New public
20171         function.
20173         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
20175 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
20177         * reflection.c: Added missing sort to the declarative security 
20178         attributes table. MS implementation stops seeing the attributes if the
20179         token number regress in the table (as shown by ildasm and permview).
20181 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
20183         * object-internals.h (MonoReflectionModule): Add 'token' field.
20184         
20185         * reflection.c (mono_reflection_get_token): Add support for Module
20186         and Assembly.
20187         (mono_module_get_object): Set 'token' field.
20188         (mono_module_file_get_object): Set 'token' field.
20190         * icall.c: Add new Assembly and Module icalls.
20192         * appdomain.c: Bump corlib version.
20194 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
20196         * loader.h loader.c class.h class.c: Add helper functions for obtaining
20197         tokens of metadata objects.
20199         * reflection.h reflection.c (mono_reflection_get_token): New function
20200         to obtain the token of a metadata object.
20202         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
20204 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
20206         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
20207         
20208         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
20210 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
20212         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
20213         * object-internals.h: Added 3 MonoArray* members to MonoReflection
20214         AssemblyBuilder to access the permissions set in the class lib.
20215         * reflection.c: Added security attributes encoding step in 
20216         mono_image_build_metadata.
20217         * tabledefs.h: Added new security actions defined in 2.0:
20218         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
20220 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
20222         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
20223         macro parameter.
20225 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
20227         * locales.c: nullify the ICU_collator member of CompareInfo when it is
20228           finalized. There where random SIGSEVs at program termination, when
20229           an object being finalized was trying to do a string comparison and
20230           the current culture was already finalized.
20232 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20234         * threads.c: call thread_cleanup before finishing the thread if we get
20235         there.
20237 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
20239         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
20240         assemblies from the parent. Fixes #65665.
20242 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
20244         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
20245         modifiers.
20247 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
20249         * reflection.h: add prototype for mono_get_dbnull_object
20250         * reflection.c: add prototypes for get_default_param_value_blobs 
20251         and mono_get_object_from_blob for fussier compilers
20253 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
20255         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
20256         false deadlock checks in class initialization.
20258 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
20260         * image.c (mono_image_addref): Fix comment.
20262         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
20263         possible.
20265 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
20267         * reflection.c (mono_param_get_objects): Modified to return
20268         ParameterInfo.DefaultValue object.
20270         (get_default_param_value_blobs):
20271         (mono_get_object_from_blob):
20272         (mono_get_dbnull_object): New helper routines. 
20274         * object.c (mono_get_constant_value_from_blob): New helper routine
20275         carved out from get_default_field_value ()
20277         * object-internals.h (mono_get_constant_value_from_blob): Added
20278         function declaration.
20280 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
20282         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
20283         referenced assemblies. Fixes #62135.
20285         * exception.h exception.c (mono_get_exception_file_not_found2): New
20286         helper function.
20288 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
20290         * class.h class.c: Add mono_type_get_underlying_type ().
20292 2004-09-09  Geoff Norton <gnorton@customerndna.com>
20294         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
20295         Fix GetTypes() to support dynamically created assemblies.
20297 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
20299         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
20300         
20301         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
20302         previous patch.
20304         * reflection.h reflection.c loader.c: Allow dynamic construction of
20305         pinvoke methods. Fixes #65571.
20306         
20307         * reflection.c (mono_reflection_get_type): Revert previous change since
20308         it causes regressions.
20310 2004-09-08  Martin Baulig  <martin@ximian.com>
20312         * class.c (class_compute_field_layout): Don't call
20313         mono_class_layout_fields() for open generic instances.
20315 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
20316         * threads.c appdomain.c: fix typo in GC macro
20318 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20320         * threads.c: don't call mono_thread_detach() in start_wrapper(),
20321         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
20323 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
20325         * image.c (mono_image_close): Applied patch from 
20326         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
20327         assembly is loaded multiple times from data.
20328         
20329         * image.c (mono_image_open): Fix warning.
20331 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
20333         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
20334         once. Fixes #58334.
20335         
20336         * reflection.c (mono_reflection_create_runtime_class): Initialize
20337         klass->nested_classes. Fixes #61224.
20339 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
20341         * threads.c: sched_yield() on exit, to allow threads to quit.
20343 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
20345         * object.c (mono_unhandled_exception): Remove leftover debug code.
20347 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
20349         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
20351 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
20353         * marshal.c (emit_marshal_array): Really null terminate string arrays.
20354         
20355         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
20357 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20359         * marshal.c (emit_marshal_array): Null terminate string arrays.
20360         
20361         * marshal.c (raise_auto_layout_exception): Fix warning.
20363         * reflection.c (mono_param_get_objects): Initialize the default value
20364         with DBNull.Value, not null. Fixes #62123.
20366 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
20368         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
20369         throw an exception with a cute explanation.
20371 2004-09-06  Dick Porter  <dick@ximian.com>
20373         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
20374         Close the new process's thread handle, as we don't use it.  The
20375         handle stays around forever otherwise.
20377 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20379         * object.c (arith_overflow): Fix warning.
20381         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
20382         calling conventions in method refs. Fixes #65352.
20384         * reflection.c: Fix warnings.
20386 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
20388         * icall.c: Add a new icall for Array.Clear
20390 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
20392         * object.c: When allocating an array, we have to throw
20393         an overflow exception if any of the lengths are < 0.
20395 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
20397         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
20398         properly. Also move implementation of string array marshalling to 
20399         managed code. Fixes #42316.
20401 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20403         * assembly.c: provide more information when loading an assembly fails.
20405 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20407         * filewatcher.c: don't expect the development fam package to be
20408         installed.
20410 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
20412         * marshal.c: Make a copy of the signature cookie since it will be
20413         freed by the caller.
20414         
20415         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
20417         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
20419         * metadata.c (mono_metadata_free_marshal_spec): New function to free
20420         marshal specs.
20422         * marshal.c: More refactoring.
20423         
20424         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
20425         smaller functions.
20427 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
20429         * object.c: In mono_message_invoke, fill the output parameter array after
20430           calling the managed method (it was done before the call). This fixes
20431           bug #59299.
20433 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
20435         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
20436         as well.
20438 2004-09-02  Martin Baulig  <martin@ximian.com>
20440         * class.c (mono_class_instance_size): Don't allow generic type
20441         definitions or open generic instances.
20442         (mono_class_array_element_size): If we're a value type, call
20443         mono_class_instance_size() on the original class.
20445         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
20446         handle generic instances.
20448         * mono-debug-debugger.c (write_type): Handle generic instances
20449         like classes.
20451 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
20453         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
20454         the allocation request fails. Fixes #65089.
20456         * object.c (mono_runtime_free_method): Do not call mono_free_method.
20457         
20458         * object.c (mono_runtime_free_method): New function to free a dynamic
20459         method.
20461         * marshal.c (mono_delegate_free_ftnptr): New function to free the
20462         delegate trampoline.
20464         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
20465         with hasthis as dynamic,
20467         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
20469         * domain.c (mono_jit_info_table_remove): New function to remove an
20470         entry from the jit info table.
20472         * class-internals.h (MonoMethod): Add 'dynamic' field.
20474         * loader.c: Fix warnings.
20476 2004-09-01  Martin Baulig  <martin@ximian.com>
20478         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
20479         instead of mono_debugger_lock() because the latter one is a no-op
20480         unless running in the debugger.
20482 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
20484         * class.c (class_compute_field_layout): Classes with auto-layout or
20485         reference fields are not blittable.
20486         
20487 2004-09-01  Dick Porter  <dick@ximian.com>
20489         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
20490         mono_image_get_filename() to get the assembly location.
20492         * icall.c:
20493         * metadata.h: Fix compile warnings
20495 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
20497         * class.c (class_compute_field_layout): System.Object is blittable.
20499         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
20500         as in/out. Fixes #59909.
20502 2004-09-01  Martin Baulig  <martin@ximian.com>
20504         * metadata.h (MONO_TYPE_ISREFERENCE): Call
20505         mono_metadata_generic_inst_is_valuetype() if we're a generic
20506         instance to check whether our underlying type is a reference type.
20508 2004-09-01  Martin Baulig  <martin@ximian.com>
20510         * metadata.c (mono_type_size): If we're a generic instance, call
20511         mono_class_value_size() for value types.
20513 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
20515         * marshal.c: Implement more custom marshalling functionality. Fixes
20516         #64915.
20518 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
20520         * mono-debug.c, debug-mono-symfile.c: add some locking love.
20522 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
20524         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
20526         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
20528         * icall.c: Fix some warnings.
20530         * threads.c (abort_appdomain_thread): Fix unref errors.
20531         (mono_thread_current): Fix THREAD_DEBUG define.
20533 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
20535         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
20537         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
20539 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
20541         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
20542         string arrays.
20544 2004-08-28  Martin Baulig  <martin@ximian.com>
20546         * metadata.c
20547         (mono_metadata_generic_inst_is_valuetype): New public function.
20549         * metadata.h (MONO_TYPE_ISSTRUCT): Call
20550         mono_metadata_generic_inst_is_valuetype() if we're a generic
20551         instance to check whether our underlying type is a valuetype.
20553 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
20555         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
20556         #63768.
20558 2004-08-25  Martin Baulig  <martin@ximian.com>
20560         * loader.c (mono_get_method_from_token): Abstract methods can also
20561         be generic and thus have type parameters.
20563         * metadata-internals.h
20564         (MonoDynamicImage): Added `GPtrArray *gen_params'.
20566         * reflection.c (mono_image_get_generic_param_info): Don't create a
20567         metadata row, just add an entry to the `gen_params' array.
20568         (build_compressed_metadata): Sort the `gen_params' array and then
20569         actually create the metadata.
20571 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20573         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
20575 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
20577         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
20579 2004-08-24  Martin Baulig  <martin@ximian.com>
20581         * class.cs (mono_class_is_subclass_of): Like an interface, a
20582         generic instance also derives from System.Object.
20584 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
20586         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
20587         custom modifiers to be in any order. Fixes #61990.
20589 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
20591         * object.c: Register mono_object_new_fast icall.
20592         
20593         * object.c (mono_class_get_allocation_ftn): Return to calling
20594         mono_object_new_fast, since it seems faster to compute the object 
20595         size in unmanaged code than passing it as a parameter.
20597         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
20599         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
20600         this function with Boehm as the oom handler, so we don't have to check
20601         the result of GC_malloc.
20603         * object.c: Remove checks for oom.
20605         * object.h object.c (mono_class_get_allocation_ftn): New function to
20606         return the icall which can be used to allocate an instance of a given
20607         class. 
20609         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
20611         * class-internals.h: Add 'enabled' field.
20613 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
20615         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
20617 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
20618         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
20619         value 0x0010.
20621 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
20623         * appdomain.c: use the Tls function for appdomain too,
20624         at Zoltan's request. Actually return in mono_context_get
20626         * appdomain.c, profiler.c, threads.c: use __thread
20628 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
20630         * appdomain.c threads.c: Call GC_CreateThread on windows.
20632         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
20633         multiple libraries since this don't work on windows.
20635 2004-08-18  Martin Baulig  <martin@ximian.com>
20637         * class-internals.h
20638         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
20639         MonoMethodHeader.
20641         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
20642         MonoMethodNormal since we also need it for abstract and interface
20643         methods.
20645         * reflection.c
20646         (build_compressed_metadata): Sort the GenericParam table.
20647         (mono_image_create_token): Added `gboolean create_methodspec'
20648         argument; this is false when generating a MethodImpl token.
20649         (reflection_methodbuilder_to_mono_method): Abstract and interface
20650         methods may also have generic parameters.
20652 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
20654         * appdomain.c: thread local alloc
20656 2004-08-17  Martin Baulig  <martin@ximian.com>
20658         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
20660         * icall.c
20661         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
20662         argument.
20664         * class.c (mono_type_get_full_name): New public function.
20665         (mono_type_get_name): Don't include the type arguments.
20667 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
20669         * Makefile.am: Build static versions of libmetadata and libmonoruntime
20670         for inclusion into the mono executable.
20672 2004-08-16  Martin Baulig  <martin@ximian.com>
20674         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
20675         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
20677 2004-08-14  Martin Baulig  <martin@ximian.com>
20679         * class.c (dup_type): Also copy the `byref' field.
20681 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
20683         * reflection.c (create_dynamic_mono_image): Revert the last change 
20684         since it breaks bootstrap.
20686 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
20688         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
20690         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
20691         not free them with g_free.
20693 2004-08-11  Martin Baulig  <martin@ximian.com>
20695         * reflection.c (mono_reflection_setup_internal_class): Also call
20696         mono_class_setup_mono_type() if we already have a `tb->type.type'.
20698 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
20700         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
20701         called during default (first) AppDomain creation. Keep track of
20702         Evidence when loading assemblies.
20704 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
20706         * opcodes.c, opcodes.h: reduce runtime relocations.
20708 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
20710         * culture-info.h, locales.c: fixes and chages to sue the new
20711         optimized format of the locale data.
20712         * culture-info-tables.h: regenerated.
20714 2004-08-06  Geoff Norton <gnorton@customerdna.com>
20715         
20716         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
20718 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
20720         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
20721         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
20722         * domain-internals.h: icall declaration.
20723         * icall.c: icall registration.
20724         * object-internals.h: New fields in MonoAssembly for CAS.
20726 2004-08-05  Duncan Mak  <duncan@ximian.com>
20728         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
20729         CEE_LDELEM_ANY.
20731 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
20733         * reflection.c: fix to deal with object[] arrays in custom ctors
20734         (bug #62550).
20736 2004-08-05  Martin Baulig  <martin@ximian.com>
20738         * class.c (mono_class_array_element_size): Added support for
20739         generic instances and correctly handle "recursive" types.
20741 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
20743         * assembly.c: Fix warnings.
20745 2004-08-04  Martin Baulig  <martin@ximian.com>
20747         * class.c
20748         (mono_type_get_name_recurse): Added `gboolean include_arity'
20749         argument specifying whether or not we should include the generic
20750         arity in the type name.
20751         (_mono_type_get_name): New static function.
20752         (mono_class_setup_vtable): If we're a generic instance, don't
20753         include the generic arity in the names of explicit method
20754         implementations.        
20756 2004-08-03  Martin Baulig  <martin@ximian.com>
20758         * class.c (mono_type_get_name_recurse): Enclose the generic type
20759         arguments in `<', '>'.
20761 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20763         * gc.c: make GC warning messages use the trace API, they are just
20764         noise to most of the users.
20766 2004-08-03  Martin Baulig  <martin@ximian.com>
20768         * debug-mono-symfile.c (read_string): Correctly read the string.
20770 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
20772         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
20773         
20774         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
20775         icalls.
20776         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
20778 2004-07-30  Martin Baulig  <martin@ximian.com>
20780         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
20781         Reflect latest symbol writer changes.   
20783 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
20785         * object.c: always create an object if null is passed
20786         to Invoke() where a valuetype is expected.
20788 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
20790         * marshal.c (mono_marshal_init): make managed
20791         signatures match native ones better for 64bits.
20793 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20795         * appdomain.c: hack to build correctly the private bin path on windows.
20796         Fixes bug #61991.
20798 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
20800         * assembly.c: Load mscorlib from the correct framework directory
20801           (mono/<version>/mscorlib.dll).
20802         * appdomain.h: Added prototypes for new functions.
20803         * internals.h: Added some prototypes.
20804         * domain.c: When initializing the runtime, get from the executable and
20805           the configuration files the runtime version that the app supports.
20806           Added support methods for reading app.exe.config. Added list of versions
20807           supported by the JIT. Added two new methods: mono_init_from_assembly,
20808           which initializes the runtime and determines the required version from
20809           the provided exe file, and mono_init_version, which initializes
20810           the runtime using the provided version.
20811         * icall.c: Get machine.config from version-specific directory.
20812         * reflection.c: When generating an image, embed the version number
20813           of the current runtime.
20815 2004-07-28  Dick Porter  <dick@ximian.com>
20817         * socket-io.c
20818         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
20819         returned sockaddr size before creating the remote address object.
20820         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
20821         61608.
20823 2004-07-28  Dick Porter  <dick@ximian.com>
20825         * locales.c (string_invariant_compare_char): Fix invariant char
20826         compares between upper and lower cases.  Fixes bug 61458.
20828 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
20829         
20830         * marshal.c: actually cache stelem.ref wrappers.
20831         
20832 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
20834         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
20835         sections and remove the mono_cli_rva_map () function.
20837 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
20839         * debug-mono-symfile.c: fix one more endianess issue, from a patch
20840         by Geoff Norton (<gnorton@customerdna.com>).
20842 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20844         * class.c: fix class loads for pointer types (typeof(int) !=
20845         typeof(int*)).
20847 2004-07-27  Martin Baulig  <martin@ximian.com>
20849         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
20850         reading the debugging information from an external ".mdb" file.
20852 2004-07-24  Martin Baulig  <martin@ximian.com>
20854         * reflection.c (mono_image_get_type_info): Only write a class
20855         layout entry if we actually have a size or a packing size.
20857 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
20859         * reflection.c (type_get_fully_qualified_name): 
20860         insert cast to get type checking of ?: with non-gcc compilers
20862 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
20864         * rand.c: use g_getenv for both lookups of
20865         MONO_EGD_SOCKET
20867 2004-07-17  Martin Baulig  <martin@ximian.com>
20869         * reflection.c (mono_reflection_bind_generic_method_parameters):
20870         Set `gmethod->reflection_info'.
20872 2004-07-17  Martin Baulig  <martin@ximian.com>
20874         * class.c (mono_class_create_from_typedef): Insert the newly
20875         created class into the hash table before computing the interfaces
20876         since we could be called recursively.
20878 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
20880         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
20881         function to implement stelem.ref in managed code
20882         * class-internals.h, debug-helpers.c: a new wrapper type
20883         for the above.
20885 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
20887         * gc.c: allow GC handles to work even when no GC is compiled in.
20888         Fix part of bug #61134 (GetAddrOfPinnedObject).
20890 2004-07-13  Peter Williams  <peter@newton.cx>
20892         * process.c (complete_path): Make sure we don't attempt to execute
20893         directories.
20895 2004-07-12  Geoff Norton <gnorton@customerdna.com>
20897         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
20898           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
20899           and will add/subtract the hour if needed
20901 2004-07-12  Martin Baulig  <martin@ximian.com>
20903         * reflection.c (mono_field_get_object): If we have
20904         `field->generic_info', take the attributes from
20905         `field->generic_info->generic_type'.    
20907 2004-07-12  Martin Baulig  <martin@ximian.com>
20909         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
20910         This function must be called before initializing the runtime.
20911         (mono_debug_init_1): New function; call this after initializing
20912         the runtime, but before loading the assembly.  It tells the
20913         debugger to load corlib and the builtin types.
20915         * mono-debug-debugger.c: Did some larger changes in the debugging
20916         code; support recursive class declarations, make sure we actually
20917         add all classes.
20919 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20921         * debug-helpers.c: undo my previous patch and fixed the real issue in
20922         ../mini/exceptions-x86.c
20924 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20926         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
20927         when no HOME env. variable was set and a NullRef was thrown in a .cctor
20928         called from other .cctors.
20930 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20932         * loader.c: Removed the mono_loader_wine_init hack now that we are
20933         doing a managed version of Windows.Forms.
20935 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
20937         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
20938         threadpool.c, threads.c: remove static data from rootset.
20940 2004-07-09  Dick Porter  <dick@ximian.com>
20942         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
20943         Don't do any more processing if the matched length was 0.  It was
20944         increasing the size of the string before.  Fixes bug 61167.
20946 2004-07-09  Dick Porter  <dick@ximian.com>
20948         * socket-io.h:
20949         * socket-io.c
20950         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20951         Add support for SO_PEERCRED if its available.
20953 2004-07-09  Peter Bartok <pbartok@novell.com>
20954         * loader.c: winelib.exe.so error message is now only displayed if
20955         MONO_DEBUG is set. To help us avoid questions when people are trying
20956         out the new Managed.Windows.Forms.
20958 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
20960         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
20961         for isinst and castclass wrappers.
20963         * class-internals.h icall.c: Move registration and lookup of JIT icalls
20964         to libmetadata from the JIT, so they could be used by the marshalling
20965         code and the interpreter.
20967         * marshal.c: Register marshalling related JIT icalls here instead of
20968         in mini.c. Use CEE_MONO_ICALL instead of the family of 
20969         CEE_MONO_PROC<x> opcodes to call marshalling functions.
20971         * metadata.h: Remove unneeded marshalling conversions.
20973         * opcodes.c: Update for new opcodes.
20974         
20975 2004-07-08  Martin Baulig  <martin@ximian.com>
20977         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
20978         (mono_debug_get_domain_data): Make this function static.
20980 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
20982         * gc.c, object.h: add nice GC handle API for embedders.
20984 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
20986         * reflection.c: more changes for the new api
20988         * object.c: When we reflect on a field w/ a constant value, it
20989         will not have a memory location, so we must access metadata. Also,
20990         allow easier reading of strings so that we can read them from
20991         the constant data.
20993         * class.c (mono_class_layout_fields): no need for literal fields here.
20995         * class-internals.h: api changes for const fields
20997         * icall.c (ves_icall_get_enum_info): use new apis for const fields
20999 2004-07-06  Martin Baulig  <martin@ximian.com>
21001         * mono-debug.h: Increment version number to 44.
21003         * mono-debug.c (mono_debug_add_wrapper): The second argument is
21004         now a gpointer, rewrote this whole method.
21006         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
21007         function.  Add information about the wrapper in a new "misc table".
21009         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
21010         for the new misc table.
21012 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
21014         * metadata-internals.h image.c: Add a cache for helper signatures.
21016         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
21018 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
21020         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
21021         delegates from a delegate. Fixes #61033.
21022         
21023         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
21024         marshalling of stringbuilder arrays. Fixes #59900.
21026 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
21028         * icall.c: Add EnumBuilder:setup_enum_type icall.
21030 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
21032         * icall.c: Added a new icall for the property version of
21033         OffsetOfStringData.
21035 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
21037         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
21038         it has a constant size across platforms.
21040         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
21041         stack trace.
21043 2004-06-29  Martin Baulig  <martin@ximian.com>
21045         * mono-debug.c (mono_debug_add_method): Protect the whole function
21046         in mono_debugger_lock(), not just parts of it.
21048 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
21050         * reflection.c: make sure padding bytes in heaps are zeroed.
21052 2004-06-24  David Waite  <mass@akuma.org>
21054         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
21055         image.c, loader.c, locales.c, marshal.c, metadata.c,
21056         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
21057         string-icalls.c, threads.c: change to C90-style comments from C99 /
21058         C++ -style
21060 2004-06-24  Dick Porter  <dick@ximian.com>
21062         * threads.c
21063         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
21064         return createdNew.  Fixes bug 60412.
21066         * threads-types.h: 
21067         * icall.c: Add createdNew parameter to CreateMutex icall
21069 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
21071         * reflection.c, object-internals.h: save default value in params.
21073 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21075         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
21076         no need to build a new path combining that with the application base.
21077         Fixes bug #60442.
21079 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
21081         * reflection.c: fixed minor standard compliance issues.
21083 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
21085         * reflection.c: fixed issue with encoding some custom attributes
21086         (arrays in properties and fields, bug #60411).
21088 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21090         * reflection.c: fix start address when copying the public key token.
21092 2004-06-23  Martin Baulig  <martin@ximian.com>
21094         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
21095         the `exc' object in a static object to put it into the GC's root set.
21097 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
21099         * reflection.c: make mono_reflection_setup_internal_class ()
21100         callable a second time to setup a new parent class.
21102 2004-06-23  Dick Porter  <dick@ximian.com>
21104         * threads.c: Check for WAIT_IO_COMPLETION return values.
21106 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
21108         * appdomain.c: Removed the g_free on the public key token. Now copy 
21109         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
21110         * assembly.c: Added public key token string value when loading 
21111         assemblies. Fix bug #60439.
21112         * icall.c: Added missing informations (like public key) in 
21113         GetReferencedAssemblies. Fix #60519.
21114         * image.h: Changed definition for public key token from const char*
21115         public_tok_value to guchar public_key_token [17];
21116         * reflection.c: Updated for changes to public key token.
21118 2004-06-22  Lluis Sanchez Gual
21120         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
21121         for the field in base classes.
21123 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
21125         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
21126         mark headers as not supported, they are installed only for use by the
21127         debugger.
21129 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
21131         * *.c, *.h: avoid namespace pollution in public headers.
21133 2004-06-21  Martin Baulig  <martin@ximian.com>
21135         * exception.c (mono_get_exception_security): It's in
21136         "System.Security", not in "System".
21138         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
21139         the exception classes.
21141 2004-06-21  Martin Baulig  <martin@ximian.com>
21143         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
21144         Protect the exception object from being finalized.
21146 2004-06-21  Martin Baulig  <martin@ximian.com>
21148         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
21149         public function.
21151 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
21153         * reflection.c: Load the assembly in mono_reflection_type_from_name,
21154         if it was not loaded before. Fix parts of #60439.
21156 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
21158         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
21159         code that was broken since Ben's change: wrappers are now
21160         dependent on the method signature only again.
21162 2004-06-21  Martin Baulig  <martin@ximian.com>
21164         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
21165         added interface support.
21167 2004-06-21  Martin Baulig  <martin@ximian.com>
21169         * class.c (mono_vtable_get_static_field_data): New public method.
21171 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
21173         * filewatcher.c : Windows build fix to be compliant with API changes.
21175 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
21177         * class.h, class.c: more accessors.
21178         * metadata.h, metadata.c: prepare for hiding MonoType and
21179         MonoMethodSignature: people should use the accessors from now on
21180         outside of the tree.
21182 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
21184         * *.c, *.h: more API cleanups.
21186 2004-06-18  Jackson Harper  <jackson@ximian.com>
21188         * assembly.c: Trace loading assemblies.
21189         * loader.c: Trace loading native libraries.
21190         * mono-config.c: Trace loading config files.
21191         
21192 2004-06-18  Dick Porter  <dick@ximian.com>
21194         * locales.c: Tell ICU the lengths of strings, it can cope with
21195         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
21197 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
21199         * image.c: swapped name/filename;
21201 2004-06-18  Martin Baulig  <martin@ximian.com>
21203         * mono-debug-debugger.c (write_class): Write the parent class at
21204         the end of the header.
21206 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
21208         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
21210 2004-06-17  Raja R Harinath  <rharinath@novell.com>
21212         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
21213         (bundle_obj): New conditional define.
21214         (BUILT_SOURCES): Remove.
21215         ($(bundle_srcs)): Make parallel-make safe.
21216         (libmonoruntime_la_LIBADD): Make unconditional.
21217         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
21218         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
21220 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
21222         * culture-info-tables.h: It was inconsistent with the latest
21223           supp info files.
21225 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
21227         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
21228         be loaded.
21230         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
21231         with gcc 2.95.
21233 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
21235         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
21236         cleaned up public header threads.h.
21238 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
21240         * Makefile.am, *.c, *.h: more API cleanups.
21242 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
21244         * Makefile.am: removed monosn from compilation.
21245         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
21246         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
21247         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
21248         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
21249         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
21250         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
21252 2004-06-15  Jackson Harper  <jackson@ximian.com>
21254         * assembly.c: Make locales lower case when searching the GAC for
21255         assemblies. gacutil will always make locales lowercase when
21256         installing so this effectively makes them case insensitive.
21257         
21258 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
21260         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
21261         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
21262           parameter which allows to choose whether the wait can be interrupted or 
21263           not. Also added the method mono_monitor_enter(), which locks the monitor
21264           using an infinite wait and without allowing interruption.
21265           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
21266           interrupted.
21267         * object.h: Added new fields in MonoThread. suspend_event holds the event
21268           used to susped/resume the thread. synch_lock is the lock object to use for
21269           modifying the thread state.
21270         * threads.c: Use the new synch_lock object for locking, instead of "this",
21271           which can generate deadlocks.
21272           Moved thread state change in Thread.Sleep and Thread.Join from managed
21273           to unmanaged code. This avoids a deadlock when the thread was suspended
21274           just after acquiring the thread lock.
21275           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
21276           Implemented Thread.Suspend using an event instead of ThreadSuspend,
21277           which is not fully implemented in the io-layer.
21278         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
21280 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
21282         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
21283         threads-types.h: more API cleanups.
21285 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
21287         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
21288         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
21289         threadpool.c, threads.c: first pass at the exported API cleanup.
21291 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
21293         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
21295 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21297         * icall.c: added internalGetHome.
21299 2004-06-14  Dick Porter  <dick@ximian.com>
21301         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
21302         possible to return successfully when '.' or '..' were the only
21303         entries in a directory, but were skipped.  The MonoIOStat was not
21304         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
21305         Fixes bug 59574.
21307 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
21309         * reflection.c: make binaries run on .Net 1.1 by default.
21311 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
21313         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
21315 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
21317         * marshal.c: keep track of struct size with explicit layout
21318         (bug #59979).
21320 2004-06-12  Martin Baulig  <martin@ximian.com>
21322         * mono-debug-debugger.c: Comment out a debugging g_message().
21324 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
21326         * reflection.c, reflection.h: do not free custom attrs that are cached.
21327         * icall.c: use braces to make code clearer.
21329 2004-06-11  Martin Baulig  <martin@ximian.com>
21331         * class.h (MonoInflatedField): New type.
21332         (MonoClassField): Replaced `MonoType *generic_type' with
21333         `MonoInflatedField *generic_info'.
21335         * icall.c
21336         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
21338 2004-06-11  Martin Baulig  <martin@ximian.com>
21340         * reflection.c (mono_image_create_method_token): Correctly encode
21341         varargs methods.
21343 2004-06-11  Martin Baulig  <martin@ximian.com>
21345         * metadata.c (mono_metadata_parse_method_signature): When parsing
21346         a MethodDef which has VarArgs, also set sentinelpos if we don't
21347         have any parameters.
21349 2004-06-11  Martin Baulig  <martin@ximian.com>
21351         * verify.c (mono_method_verify): In CEE_CALL, use
21352         mono_method_get_signature() to get the method's signature, unless
21353         we're a PInvoke method.
21355 2004-06-10  Jackson Harper  <jackson@ximian.com>
21357         * assembly.c: Use <path>/lib/mono/gac for the extra paths
21358         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
21359         logical name as the supplied path is just a prefix to the gac not
21360         the direct path to it.
21361         
21362 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
21364         * reflection.c: make the token for a created method match
21365         the token of the MethodBuilder it was created from
21366         (IKVM requires this behaviour now).
21368 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
21370         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
21371         reflection.c, socket-io.c: leak fixes.
21373 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
21375         * icall.c: handle sentinel pos in vararg methods in position different
21376         from 0.
21378 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21380         * culture-info-tables.h: freshly generated.
21382 2004-06-09  Martin Baulig  <martin@ximian.com>
21384         * loader.c (mono_get_method_constrained): Call `mono_class_init
21385         (constrained_class)'.   
21387 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
21389         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
21390         any methods. Fixes #59629.
21392 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21394         * culture-info-tables.h: reflecting locale-builder updates.
21396 2004-06-08  Dick Porter  <dick@ximian.com>
21398         * object.h:
21399         * locales.c: Fixed compile warnings, including a real bug in
21400         CompareInfo_internal_compare.
21401         
21402 2004-06-08  Dick Porter  <dick@ximian.com>
21404         * locales.c
21405         (ves_icall_System_Globalization_CompareInfo_internal_index):
21406         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
21407         Double-check the resuls of usearches, because ICU currently
21408         ignores most of the collator settings here.  Fixes bug 59720.
21409         
21410 2004-06-08  Dick Porter  <dick@ximian.com>
21412         * locales.c
21413         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
21414         Fix memory leak and segfault-causing typo.  No idea how this one
21415         lasted so long without being noticed.
21417 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
21419         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
21420         any methods. Fixes #59629.
21422 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21424         * assembly.c:
21425         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
21426         own the critical section before). Removed dead code (that's done
21427         in the preload hook).
21429         (mono_assembly_load_with_partial_name): call the preload hook.
21431 2004-06-08  Martin Baulig  <martin@ximian.com>
21433         * metadata.c (mono_metadata_signature_alloc): Default
21434         `sentinelpos' to -1.
21436         * reflection.c (mono_image_get_array_token): Likewise.
21438 2004-06-08  Martin Baulig  <martin@ximian.com>
21440         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
21442         * metadata.c (mono_metadata_parse_method_signature): When parsing
21443         a MethodDef which has VarArgs, set sentinelpos.
21445         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
21446         `gint16' since we're using -1 for non-varargs methods.
21448         * reflection.c
21449         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
21450         (method_encode_signature): Added varargs support.
21451         (method_builder_encode_signature): Likewise.
21452         (mono_image_get_varargs_method_token): New static method.
21453         (mono_image_create_method_token): New public method; this is
21454         called via an icall instead of mono_image_create_token() when
21455         calling a varargs method.       
21457 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
21459         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
21461 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21463         * culture-info-tables.h : Reflecting the latest locale-builder that
21464           fixed empty array representation ({} to {0}).
21466 2004-06-07  Jackson Harper  <jackson@ximian.com>
21468         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
21469         looking up extra gac paths. This allows MONO_GAC_PATH to act
21470         exactly like a prefix.
21471         
21472 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
21474         * reflection.c (mono_reflection_type_from_name): Make a copy of the
21475         type name before modifying it. Fixes #59405.
21477 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21479         * culture-info.h: added fields for "all datetime patterns".
21480         * locales.c: (  ves_icall_System_Globalization_CultureInfo
21481           _construct_datetime_format ()): fill xxx_patterns fields.
21482         * object.h: added fields for "all datetime patterns" to
21483           MonoDateTimeFormatInfo.
21484         * culture-info-tables.h: reflecting locale-builder updates.
21486 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
21488         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
21489         the event has no add and remove methods. Fixes #59629.
21491 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
21493         * object.c: Fixed possible integer overflow when allocating large
21494         strings.
21496 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
21498         * culture-info-tables.h: reflecting locale-builder updates.
21500 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
21502         * culture-info-tables.h: reflecting locale-builder updates.
21504 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
21506         * culture-info-tables.h: reflecting locale-builder updates.
21508 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
21510         * threads.c: Made Thread.Sleep abortable.
21512 2004-06-02  Martin Baulig  <martin@ximian.com>
21514         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
21516         * debug-mono-symfile.h: Bumped symbol file version number to 37.
21518 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
21520         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
21522 2004-05-30  Jackson Harper  <jackson@ximian.com>
21524         * reflection.c: Do not hardcode assembly versions or public key
21525         tokens anymore. All of this except the corlib section was dead
21526         code anyways.
21527         
21528 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
21530         * object.c (mono_runtime_invoke_array): Automatically create boxed
21531         objects for byref valuetypes if needed. Fixes #59300.
21532         
21533         * object.c (mono_method_return_message_restore): Handle 
21534         MONO_TYPE_OBJECT as well.
21536 2004-05-28  Jackson Harper  <jackson@ximian.com>
21538         * reflection.c: The modified type encoding was causing build
21539         problems. Reverted for now.
21540         
21541 2004-05-28  Jackson Harper  <jackson@ximian.com>
21543         * reflection.c/h: Take an assembly ref so that we dont create
21544         fully qualified names when encoding types in the same assembly as
21545         the custom attribute being emitted.
21546         * appdomain.c: Increment version number.
21547         
21548 2004-05-26  Duncan Mak  <duncan@ximian.com>
21550         * icall.c
21551         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
21552         Set the full version number (major, minor, build, revision).
21554 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
21556         * marshal.c (emit_struct_conv): increment src/dst after blit
21557         (mono_marshal_get_managed_wrapper,
21558         mono_marshal_get_native_wrapper): make sure we have marshalling
21559         info before marshalling params (info computation affects
21560         blittable)
21562         * class.c (class_compute_field_layout): correctly deal with
21563         blittable
21564         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
21565         value types (as per what windows dows by default)
21566         (mono_class_setup_mono_type): System.ValueType is blittable
21567         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
21568         blittable
21570         * marshal.c (mono_marshal_load_type_info): flag types  as
21571         non-blittable if the native layout doesn't match the managed
21572         layout
21574 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21576         * appdomain.c: don't add stuff in the private search path that is
21577         above the application base. If application base is not set, there's
21578         no private search path.
21580 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
21582         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
21583         byref struct arguments in native->managed marshalling.
21585 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
21587         * marshal.c (mono_marshal_get_runtime_invoke): correctly
21588         cache methods using signature (special case for methods
21589         that are value type or string class)
21590         
21591         * image.c (mono_image_close): clean up allocated GSList's
21592         in runtime_invoke_cache.
21594 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21596         * mono-config.c: set the correct path for mono_cfg_dir on windows when
21597         there's no MONO_CFG_DIR environment variable defined.
21599 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21601         * threads.c: windows version must be >= 0x0500 to include OpenThread.
21603 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
21605         * threadpool.c: Really wait for 500ms after the async call, even if the wait
21606           is interrumped.
21607         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
21608           before waiting for it, and call CloseHandle after the wait to unref it.
21609           This will make sure that handles are not disposed too early.
21611 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21613         * appdomain.c:
21614         * appdomain.h:
21615         * icall.c: removed
21616         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
21617         needed now.
21619         * object.c: se the application_base only for the domain that runs
21620         Main. Fixes bug #59216,
21622 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21624         * appdomain.c:
21625         * object.c: only the domain in which Main is run have
21626         SetupInformation.ConfigurationFile set, so moved a few lines from
21627         appdomain.c to object.c.
21629 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21631         * appdomain.c: we tried to load [name].(dll|exe), but according
21632         to bug #57710, we must also try [culture]/[name].(dll|exe) and
21633         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
21634         There's a test case attached to bug #58922.
21636 2004-05-27  Dick Porter  <dick@ximian.com>
21638         * icall.c:
21639         * file-io.c: Implemented icalls for locking and unlocking regions
21640         in a file.
21641         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
21642         FALSE on error (fixes both compiler warning and real bug.)
21644 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
21646         * culture-info-tables.h: reflecting locale-builder updates.
21648           (Added missing ChangeLog entry for 05/26)
21650 2004-05-27  Jackson Harper  <jackson@ximian.com>
21652         * locales.c: Fix some cut and paste errors.
21653         
21654 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21656         * mono-config.c: set the correct path for config. directory on windows.
21658 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21660         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
21661           on win32.
21663 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
21665         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
21666         from pinvoke functions.
21667         
21668         * marshal.c (mono_ftnptr_to_delegate): Implement this.
21670 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21672         * culture-info-tables.h: reflecting locale-builder updates.
21674 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
21676         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
21677         #59086.
21679 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
21681         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
21682         * icall.c: Modified icalls for RNG.
21683         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
21684         Windows (CryptoAPI).
21686 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
21688         * locales.c: Fix build.
21690 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21692         * culture-info-tables.h: reflecting locale-builder updates.
21694 2004-05-25  Jackson Harper  <jackson@ximian.com>
21696         * locales.c: When creating the current culture use the $LANGs
21697         specific culture. So DateTimeFormat and NumberFormat entries are created.
21698         
21699 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
21701         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
21702         a char array as parameter.
21704 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
21706         * image.c: In mono_image_open(), always use an absolute path name to
21707           look for already loaded images.
21709 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
21711         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
21712         missing in the windows build (like older cygwin include files).
21714 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
21716         * icall.c: Fixed check for possible integer overflow in Buffer_
21717         BlockCopy icall. Replaced comments style // by /* */.
21719 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
21721         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
21722         
21723         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
21724         check after MONO_VTADDR. Fixes pinvoke2.exe.
21726         * marshal.h marshal.c metadata.h: Add beginnings of support for
21727         ftnptr -> delegate marshalling.
21729 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
21731         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
21732         * threads.c: Fix warnings.
21734 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
21736         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
21737         * icall.c: Registered icalls for Suspend and Resume.
21738         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
21739           Thread.Abort.
21740         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
21741         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
21742         * process.c: Use WaitForSingleObjectEx.
21743         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
21744           checkpoints.
21745         * threads.c, threads.h: Make use of new Ex wait methods. Improved
21746           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
21747           for Suspend and Resume. Added new mono_thread_stop, used for stoping
21748           background threads. Added basic support for Abort in Windows.
21749           Start new threads using a managed delegate invoke wrapper. This wrapper
21750           has an interruption checkpoint that is needed since an interruption
21751           can be requested before the thread leaves the unmanaged code that starts 
21752           the thread.
21753         * marshal.c: Added interruption checkpoint after every native call, and
21754           also before managed calls for wrappers called from unmanaged code to
21755           go into managed code.
21756         * object.h: Added new field in MonoThread to keep track of interruption
21757           requests.
21759 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
21761         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
21762         calls.
21764 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21766         * appdomain.c:
21767         * assembly.c:
21768         * gc.c:
21769         * locales.c:
21770         * mono-config.c:
21771         * rand.c: getenv -> g_getenv (windows!)
21773         * process.c: complete_path is also used on non-windows platforms.
21775 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21777         * icall.c: new signature for Process_Start.
21779         * process.[ch]: new signature for Process_Start. If we're on windows
21780         and UseShellExecute is false, we have to search for the program by
21781         ourselves if we don't get a full path.
21783 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
21785         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
21786         marshalling and call CleanUpNativeData if needed. Fixes #58646.
21788 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21790         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
21791         Fixes bug #58373.
21793 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21795         * process.c: use double quotes to quote program name and arguments on
21796         windows. Fixes bug #58575.
21798 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21800         * file-io.c: don't return "." and ".." when using windows Find*File.
21802 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
21804         * marshal.c: Don't pass wrappers to message init because method 
21805         addressed used to lookup metadata. part of remoting[2|3] fix.
21807 2004-05-15  Jackson Harper  <jackson@ximian.com>
21809         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
21810         path is essentially the same as MONO_PATH except that it points to
21811         GACs instead of lib directories.
21812         * loader.h: The user gac is gone so we dont need function to
21813         enable/disable it.
21814         * mono-config.c: user gac option is now gone.
21815         
21816 2004-05-15  Jackson Harper  <jackson@ximian.com>
21818         * culture-info.h: Make defines more consistent, add calendar data
21819         to the culture info table.
21820         * culture-info-tables.h: Add basic calendar data. Basically
21821         everyone gets default gregorian until all the data is
21822         updated.
21823         * locales.c: Use the new consistent defines. Set calendar data for
21824         culture info objects.
21825         * object.h: add a field for calendar data to CultureInfo
21826         
21827 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
21829         * image.c: image->runtime_invoke_cache is keyed on signatures now.
21830         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
21831         a signature.
21832         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
21833         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
21834         an extra param that is the pointer of the method to invoke. The IL for
21835         the invoke method is no longer specific to the method, but to the
21836         signature of the method. Thus, we can share the same code for multiple
21837         methods. This reduces the number of methods that have to be compiled.
21839 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
21841         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
21843         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21845         * icall.c: Optimize Buffer.BlockCopy.
21847 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21849         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
21850         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
21851         quote). Changed them to "MMMM yyyy".
21853 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
21855         * rand.c
21856         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
21858 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
21860         * reflection.h: Updated after changes to managed structures.
21862         * appdomain.c: Bump corlib version.
21864 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21866         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
21867         windows.
21869 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21871         * Makefile.am: link to ../os/libmonoos.la on windows.
21873         * assembly.c:
21874                 -If MONO_DEBUG, warn about non-existing directories in
21875                 MONO_PATH.
21876                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
21877                 compile time variable.
21878                 -Removed init_default_path and call mono_set_rootdir from
21879                 libmonoos.a instead (windows only).
21881         * assembly.h: declare mono_assembly_getrootdir().
21883         * domain.c:
21884         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
21886         * loader.c: s/getenv/g_getenv/
21888 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
21890         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
21892         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
21894         * metadata.h: Add new marshalling conversions.
21896         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
21897         function.
21899         * reflection.c (mono_reflection_get_type): Lookup the type in all
21900         modules of a multi-module assembly. Fixes #58291.
21902 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
21904         * threads.c: Before aborting a background, set the StopRequested
21905         state.  This avoids throwing the Abort exception.
21906         In mono_thread_manage, don't continue with the shutdown until all
21907         aborted threads have actually stopped.
21909 2004-05-10  Jackson Harper  <jackson@ximian.com>
21911         * locales.c: Remove the modifier from culture names.
21912         
21913 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21915         * Makefile.am: monosn is not installed any more. It has been deprecated
21916         in favor of sn.
21918 2004-05-07  Jackson Harper  <jackson@ximian.com>
21920         * locales.c
21921         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
21922         Fix array construction, add bailout if the length is 0.
21924 2004-05-07  Dick Porter  <dick@ximian.com>
21926         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
21927         machine doesn't have a DNS entry.  Patch by Urs Muff
21928         (umuff@quark.com), fixes bug 57928.
21930 2004-05-06  Jackson Harper  <jackson@ximian.com>
21932         * reflection.c: Handle null PublicTokens properly. alloc mem for
21933         assembly names culture so we dont crash when freeing it.
21934         
21935 2004-05-06  Jackson Harper  <jackson@ximian.com>
21937         * assembly.c: Check the usergac when loading with partial names.
21938         
21939 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
21941         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
21942         does nothing for now (not required for Linux/Windows) but the class
21943         library can call it (and a newer or modified runtime could need it).
21944         * icall.c: Registred icall.
21946 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21948         * loader.c: prints a message on module loading error we set MONO_DEBUG
21949         environment variable.
21951 2004-05-05  Jackson Harper  <jackson@ximian.com>
21953         * appdomain.c: Handle PublicKeyToken=null properly.
21954         
21955 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
21957         * environment.c|h: Added icall ves_icall_System_Environment_
21958         GetOSVersionString to get the current OS version as a string.
21959         * icall.c: Registred icall.
21961 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
21963         * object.c: in mono_object_get_virtual_method(), take into account that
21964         non-virtual methods don't have a slot in the vtable. Check needed when
21965         the object is a proxy.
21967 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
21969         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
21970         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
21972         * object.c (mono_class_compute_gc_descriptor): Fix warning.
21974         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
21975         passed when a valuetype is expected.
21977         * object.c (mono_unhandled_exception): Only set the exit code if the
21978         exception happens in the main thread. Fixes thread5.exe.
21980         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
21981         invalid names. Fixes #58047.
21983 2004-05-03  Jackson Harper  <jackson@ximian.com>
21985         * assembly.c: This line was committed accidently and is unneeded.
21986         
21987 2004-05-03  Jackson Harper  <jackson@ximian.com>
21989         * icall.c: Add new icall for Assembly::LoadWithPartialName
21990         * assembly.c/.h: new function that probes the GAC to load partial
21991         assembly names by Paolo Molaro.
21992         
21993 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21995         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
21996         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
21997         (type_get_fully_qualified_name): Added PublicKeyToken when building a
21998         full type name.
22000 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22002         * appdomain.c: fixed check for 'neutral' culture and removed warning.
22003         * reflection.c: fix bug when parsing a full type name and Version is not
22004         the last thing in the string.
22006 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
22008         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
22009         crashes when it is freed.
22011 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22013         * assembly.c: print the compat warning to stderr.
22015 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
22017         * assembly.c (mono_assembly_load_references): Add a compatibility
22018         hack to run old applications that might be still referencing the
22019         3300-based assemblies, only do this for System.xxx.
22021 2004-05-01  Jackson Harper  <jackson@ximian.com>
22023         * appdomain.c: If the culture is neutral we set it to "".
22024         
22025 2004-04-29  Jackson Harper  <jackson@ximian.com>
22027         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
22029 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
22031         * string-icalls.c: added low overhead function for copying chars
22032         * icall.c: added needed icall for the above function
22034 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22036         * icall.c: fix return value of get_global_assembly_cache.  Implemented
22037         Environment.GetLogicalDrives.
22039 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
22041         * rand.c: try and talk to egd or prngd
22042         for random bytes if opening devices fail.
22044 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
22046         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
22047         alignment for the type using the native alignment of its members 
22048         instead of using klass->min_align.
22050         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
22052 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22054         * file-io.c:
22055         * socket-io.c: added check for sys/aio.h.
22057 2004-04-28  Dick Porter  <dick@ximian.com>
22059         * threads.c: Don't abort a thread thats already aborting, when
22060         terminating everything.
22062 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22064         * icall.c: added 2 new async calls for Socket.
22066         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
22067         IO on *nix systems.
22069         * threadpool.c: removed unused variable.
22071 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
22073         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
22075 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
22077         * locales.c: put back string_invariant_tolower () and
22078         string_invariant_toupper ().
22080 2004-04-26 David Waite <mass@akuma.org>
22082         * file-io.h:
22083         * socket-io.h:
22084         * threads.h:
22085         * unicode.h: remove comma from end of enumeration declarations
22087 2004-04-26 David Waite <mass@akuma.org>
22089         * debug-mono-symfile.h:
22090         * decimal.c:
22091         * mono_debug.h:
22092         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
22095 2004-04-26  Jackson Harper  <jackson@ximian.com>
22097         * appdomain.c: Increment version number.
22098         
22099 2004-04-26  Jackson Harper  <jackson@ximian.com>
22101         * appdomain.c: Set assembly references public token value when
22102         PublicKeyToken is specified, not the hash_value. Free public token
22103         values when free assembly name data. Previously the public key
22104         token was hex decoded, however we are using hex encoded public key
22105         tokens, so this is not neccasary.
22106         * assembly.c: Lookup assemblies in the gac if their public token
22107         value is set. Add function to allow enabling user gac
22108         lookups. Specify whether or not the assembly was loaded from the
22109         GAC. Compare full assembly names when checking the cache for
22110         assemblies (Temporarily disabled see comment in code). Remove
22111         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
22112         specifies trace-loader they get extra info to stdout on the
22113         loading of assemblies.
22114         * image.h: Add a field for an assembly references public token
22115         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
22116         whether an assembly has been loaded from the GAC.
22117         * image.c: Remove a corlib -> mscorlib name mapping.
22118         * loader.h: Add function to enable/disable the user gac.
22119         * mono-config.c: Check if the usergac is enabled in the config
22120         file.
22121         * icall.c: New icall to determine whether or not an assembly has
22122         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
22123         * tabldefs.h: Add constant for assemblyref flag that specifies a
22124         full public key is used instead of a public token.
22125         * reflection.c: Remove mscorlib -> corlib mappings. Set
22126         PublicTokenValue instead of hash value. This value is a hex
22127         string so it does not need to be expanded.
22129 2004-04-26  Martin Baulig  <martin@ximian.com>
22131         * mono-debug-debugger.c (mono_debugger_initialize): Set
22132         `mono_debugger_initialized' before calling mono_debug_lock().
22134 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
22136         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
22137           InternalToUpper/InternalToLower.
22138         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
22139           removed invariant culture shortcut.  This is now done in managed code.
22140         * locales.c: (string_invariant_toupper/tolower) removed.
22142 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22144         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
22145         Added Poll internal call.
22147         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
22148         call for Poll. Select was too heavy for polling a single socket.
22150         * threadpool.[ch]: added mono_threadpool_cleanup.
22151         * threads.c: use it. Don't use Thread_Abort on windows.
22153 2004-04-23  Martin Baulig  <martin@ximian.com>
22155         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
22157 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
22159         * icall.c: Registred new icalls for key pair protection and added an
22160         icall for Environment.GetFolderPath on Windows.
22161         * security.c|h: Added new icalls for key pair protection.
22163 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22165         * socket-io.c: don't display the non-supported family warning for known
22166         families. Now this is not displayed on windows when checking support
22167         for IPv4/IPv6.
22169 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22171         * class.c: don't display the layout warning for static fields.
22173 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
22175         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
22176         * locales.c, locales.h: Added new icalls for culture-specific
22177         Char.ToLower and Char.ToUpper.
22179 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22181         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
22182         by David Waite.
22184 2004-04-20  Martin Baulig  <martin@ximian.com>
22186         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
22187         of the type name before passing it to mono_reflection_type_from_name().
22189 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
22191         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
22192         encodings here. Fixes #56965.
22194 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
22196         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
22197         fix test on strstr result not that I can see anything that
22198         relies on the result.
22200 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
22202         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
22203         Fixes #57081.
22205         * marshal.c (mono_marshal_get_string_encoding): New helper function.
22207         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
22208         function to determine which marshalling to use for strings. Fixes
22209         #56965.
22211         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
22213         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
22215 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
22217         * icall.c: #include mono-config.h
22219 2004-04-15  Jackson Harper  <jackson@ximian.com>
22221         * culture-info-tables.h: Fix date formats for en-US culture.
22222         
22223 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
22225         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
22226         ThreadPool.SetMinThreads.
22227         * threadpool.c: Implemented ThreadPool.GetMinThreads and
22228         ThreadPool.SetMinThreads.
22230 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
22232         * mono-config.c: also load the .config file in the directory
22233         where the assembly was found.
22235 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
22237         * assembly.c: load per-assembly config files.
22238         * icall.c: decrapified code to get the config dir and moved to
22239         mono-config.c.
22240         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
22241         per-assembly config files. When doing a dll map lookup give precedence
22242         to the per-assembly data.
22244 2004-04-14  Martin Baulig  <martin@ximian.com>
22246         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
22247         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
22248         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
22250         * mono-debugger-debugger.c: While the debugger is locked, remember
22251         whether the symbol tables have changes and send one single
22252         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
22254 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
22256         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
22258         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
22259         function.
22261         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
22262         account when marshalling string arrays. Fixes #56965.
22264 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
22266         * icall.c: Add new icalls mapping for security.
22267         * security.c|h: Add internal calls for WindowsIdentity,
22268         WindowsImpersonationContext and WindowsPrincipal.
22270 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
22272         * class.c: Added comment to ensure the System.MonoDummy class
22273         is removed when no longer necessary
22275 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
22277         * appdomain.c: Pass arguments to the bootstraping exceptions to
22278         minimize JITed methods at boot
22280         * metadata.c (mono_exception_from_name_two_strings): Allow for the
22281         second string to be null.
22283         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
22284         Change the protocol to minimize the JIT methods at startup.  Now
22285         it Returns the internal codepage, if the value of "int_code_page"
22286         is 1 at entry, and we can not compute a suitable code page
22287         number, returns the code page as a string.
22289 2004-04-13  Jackson Harper  <jackson@ximian.com>
22291         * culture-info-tables.h: Fix number of decimal digits for all
22292         english locales.
22294 2004-04-13  Jackson Harper  <jackson@ximian.com>
22296         * icall.c: Clairfy out of sync error message. It is not always
22297         your corlib that is out of sync.
22299 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
22301         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
22302         properties when only the set accessor is overriden. Fixes #55874.
22304 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
22306         * assembly.c (mono_assembly_load_references): Make this thread safe.
22307         Fixes #56327.
22309 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
22311         * monosn.c: Add missing initialization calls.
22313 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
22315         * locales.c:
22316         ves_icall_System_Globalization_CultureInfo_construct_number_format
22317         Fix g_assert so it compiles on fussier compilers re int/ptr
22318         mismatch
22320 2004-04-08  Dick Porter  <dick@ximian.com>
22322         * socket-io.h:
22323         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
22324         53992.  Also rearrange the code so that the internal calls return
22325         an error value and exceptions are thrown from managed code.
22327         * icall.c: Add type info to the socket icalls.
22329 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22331         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
22332         owes me a beer.
22334 2004-04-07  Martin Baulig  <martin@ximian.com>
22336         * class.c (mono_class_from_generic_parameter): Don't default
22337         `klass->parent' to `mono_defaults.object_type'.
22339 2004-04-07  Martin Baulig  <martin@ximian.com>
22341         * reflection.c (mono_reflection_initialize_generic_parameter): Set
22342         `param->pklass->reflection_info'.       
22344 2004-04-07  Jackson Harper  <jackson@ximian.com>
22346         * culture-info-tables.h: Fix date separator symbol.
22347         
22348 2004-04-07  Martin Baulig  <martin@ximian.com>
22350         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
22351         from System.Type to System.MonoType.
22353 2004-04-07  Martin Baulig  <martin@ximian.com>
22355         * reflection.h
22356         (MonoReflectionGenericParam): Added `has_reference_type' and
22357         `has_value_type' fields.
22359         * reflection.c (mono_image_get_generic_param_info): Encode the
22360         correct flags if we have the `class' or `struct' constraint.
22362 2004-04-07  Martin Baulig  <martin@ximian.com>
22364         * reflection.h
22365         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
22367 2004-04-07  Jackson Harper  <jackson@ximian.com>
22369         * appdomain.c: Revert extra patches, just wanted to bump the
22370         version number.
22371         
22372 2004-04-07  Jackson Harper  <jackson@ximian.com>
22374         * Makefile.am: Add culture-info private headers.
22375         * icall.c: Add new icalls for contructing locales.
22376         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
22377         * locales.h: Declare new culture info construction methods.
22378         * object.h: Add new fields used to avoid the CultureMap to
22379         MonoCultureInfo.
22380         * culture-info.h: Definition of structs used in the culture info
22381         tables.
22382         * culture-info-tables.h: Autogenerated tables that contain culture
22383         info data. This file was generated with the locale-builder tool.
22384         * appdomain.c: Incement corlib version number.
22385         
22386 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
22388         * appdomain.c: (mono_runtime_init) move mono_thread_init
22389         to before mono_object_new calls so critical sections
22390         are initialized before use.
22392 2004-04-07  Martin Baulig  <martin@ximian.com>
22394         * icall.c
22395         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
22396         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
22397         (ves_icall_MonoGenericParam_initialize): Removed.
22398         (monogenericparam_icalls): Removed.
22399         (generictypeparambuilder_icalls): Added new table for
22400         System.Reflection.Emit.GenericTypeParameterBuilder.
22402         * reflection.c
22403         (mono_reflection_define_generic_parameter): Removed.
22404         (mono_reflection_initialize_generic_parameter): This is now called
22405         from GenericTypeParameterBuilder's .ctor.
22407 2004-04-06  Martin Baulig  <martin@ximian.com>
22409         * class.c (mono_class_init): Don't inflate nested classes in a
22410         generic instance.
22411         (mono_type_get_name_recurse): Include the generic arguments for
22412         generic instances and generic type declarations.
22413         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
22414         (_mono_class_get_instantiation_name): Removed.
22415         (mono_class_create_generic): Always use `gklass->name' as our name.
22417         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
22419         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
22420         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
22421         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
22422         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
22423         closed generic methods here.
22425         * reflection.c
22426         (mono_reflection_generic_inst_get_nested_types): Removed.
22427         (inflate_mono_method): Copy the generic parameters from the
22428         MonoMethodHeader into out MonoGenericMethod.
22430 2004-04-06  Martin Baulig  <martin@ximian.com>
22432         * row-indexes.h
22433         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
22435         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
22437         * reflection.c (build_compressed_metadata): If we have any entries
22438         in the GenericParam, MethodSpec or GenericParamConstraint tables,
22439         set the header version to 1.1.
22441 2004-04-06  Martin Baulig  <martin@ximian.com>
22443         * class.c (mono_class_init): If we're a generic instance,
22444         initialize our nested classes, too.
22445         (_mono_class_get_instantiation_name): Deal with the new `!%d'
22446         suffix. 
22448 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22450         * process.c: quote the argument passed to the shell on windows.
22452 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
22454         * threads.c (mono_alloc_special_static_data): Allow this to be
22455         called during startup.
22457 2004-04-02  Martin Baulig  <martin@ximian.com>
22459         * icall.c
22460         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
22462 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
22464         * icall.c: Fix build.
22466 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
22468         * Makefile.am: Added security.c|h.
22469         * icall.c: Added icall for get_UserName;
22470         * security.c: New file for security related icalls. Added function
22471         get_UserName for System.Environment (fix #56144).
22472         * security.h: New. Header file for security.c
22474 2004-04-02  Dick Porter  <dick@ximian.com>
22476         * icall.c: Deleted the icalls that were obsoleted some time ago
22477         by the ICU string code, and which were mixed into the icall
22478         rearranging.  Fixes bug 55969.
22480         * string-icalls.h: 
22481         * string-icalls.c: Deleted the code that those icalls reference.
22483 2004-04-01  Martin Baulig  <martin@ximian.com>
22485         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
22487         * class.c (mono_class_from_generic_parameter): Don't set 
22488         TYPE_ATTRIBUTE_INTERFACE.
22489         (my_mono_class_from_generic_parameter): Likewise.
22491 2004-04-01  Martin Baulig  <martin@ximian.com>
22493         * loader.c (find_method): Added an optional `MonoClass *ic'
22494         argument to search in a specific interface.
22495         (mono_get_method_constrained): New public function.
22497 2004-04-01  Martin Baulig  <martin@ximian.com>
22499         * reflection.c (mono_image_get_generic_field_token): Use the
22500         `handleref' cache here.
22502 2004-04-01  Martin Baulig  <martin@ximian.com>
22504         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
22506         * reflection.c (create_generic_typespec): Use the `typespec' hash
22507         here, not the `typeref' one.    
22509 2004-04-01  Martin Baulig  <martin@ximian.com>
22511         * class.c (mono_class_inflate_generic_type): Moved the
22512         functionality into a new static inflate_generic_type() which
22513         returns NULL if it didn't do anything.  Only increment the
22514         `mono_stats.inflated_type_count' if we actually inflated
22515         something.
22516         (mono_class_get_full): Check the classes type to see whether we
22517         need to inflate it; also inflate MONO_TYPE_(M)VAR.
22519 2004-04-01  Jackson Harper  <jackson@ximian.com>
22521         * reflection.c: Set culture for assembly references.
22522         
22523 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
22525         * reflection.[ch], icall.[ch], Fix support for pinning variables.
22527 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22529         * assembly.c:
22530         (do_mono_assembly_open): the critical section also covers
22531         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
22533 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22535         * threads.c:
22536         (mono_manage_threads): abort the background threads when finishing.
22537         Fixes bug #47232.
22539 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22541         * gc.c: only close the done_event handle if there was no timeout.
22542         C-ified comments.
22544 2004-03-30  Martin Baulig  <martin@ximian.com>
22546         * icall.c (icall_entries): It's called "System.Activator", not
22547         "System.Activation".    
22549 2004-03-30  Martin Baulig  <martin@ximian.com>
22551         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
22552         (mono_class_create_from_typespec): Likewise.
22554 2004-03-30  Martin Baulig  <martin@ximian.com>
22556         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
22557         `has_ctor_constraint' and `initialized'.
22559 2004-03-30  Martin Baulig  <martin@ximian.com>
22561         * reflection.c (encode_new_constraint): New static function to add
22562         the constructor constraint attribute to a type parameter.
22563         (encode_constraints): Call encode_new_constraint() if necessary.
22565         * reflection.h
22566         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
22568         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
22569         
22570 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
22572         * reflection.c, icall.c: add support for pinning variables. 
22574 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
22576         * marshal.c (mono_marshal_get_managed_wrapper):
22577         init bool local with zero rather than null.
22579 2004-03-29  Martin Baulig  <martin@ximian.com>
22581         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
22582         the "official" behavior here.
22583         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
22585 2004-03-29  Martin Baulig  <martin@ximian.com>
22587         * icall.c: Reflect latest API changes.
22589 2004-03-29  Martin Baulig  <martin@ximian.com>
22591         * loader.c (mono_get_method_from_token): Also call
22592         mono_metadata_load_generic_params () for abstract and interface
22593         methods; replace the type arguments in the method signature with
22594         the ones which are loaded from the metadata.
22596 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
22598         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
22599         of the lock is not the current thread. MS.NET don't do it, in spite of
22600         what the documentation says. See bug #56157.
22602 2004-03-28  Martin Baulig  <martin@ximian.com>
22604         * class.c (mono_class_init): Don't call init_properties() and
22605         init_events() for generic instances; set `prop->parent' when
22606         inflating properties.
22608         * reflection.c (mono_generic_inst_get_object): Call
22609         `mono_class_init (ginst->klass)'.
22610         (mono_type_get_object): Only create a MonoGenericInst if your
22611         generic type is a TypeBuilder.
22612         (do_mono_reflection_bind_generic_parameters): Only set
22613         `ginst->is_dynamic' if our generic type is a TypeBuilder.
22615 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
22617         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
22618         Fixes #56091.
22620 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22622         * icall.c: added Kill_internal icall.
22623         * process.[ch]: added Kill_internal icall.
22625 2004-03-25  Martin Baulig  <martin@ximian.com>
22627         * class.h (MonoStats): Added `generic_instance_count',
22628         `inflated_method_count', `inflated_type_count' and
22629         `generics_metadata_size'.       
22631 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22633         * reflection.c: no warnings now.
22635 2004-03-25  Martin Baulig  <martin@ximian.com>
22637         * class.c (mono_class_get_full): New public function; does a
22638         mono_class_get(), but also takes a `MonoGenericContext *'.
22640         * loader.c (mono_field_from_memberref): Renamed to
22641         `field_from_memberref', made static and added `MonoGenericContext *'
22642         argument.
22643         (mono_field_from_token): Added `MonoGenericInst *' argument.
22644         (method_from_memberef): Likewise.
22645         (mono_get_method_from_token): Likewise.
22646         (mono_get_method_full): New public function; does a
22647         mono_get_method(), but also takes a `MonoGenericContext *'.
22649         * verify.c (mono_method_verify): Get the method's generic context
22650         and pass it to mono_field_from_token(), mono_get_method_full() and
22651         mono_class_get_full().
22653 2004-03-25  Martin Baulig  <martin@ximian.com>
22655         * class.c (mono_class_inflate_generic_type): Take a
22656         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
22657         `MonoGenericMethod *'.
22659 2004-03-25  Martin Baulig  <martin@ximian.com>
22661         * loader.h (MonoMethodInflated): Store the MonoGenericContext
22662         instead of the MonoGenericMethod here.
22664 2004-03-25  Martin Baulig  <martin@ximian.com>
22666         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
22667         each time we create a new MonoGenericInst, we also create a new
22668         context which points back to us.
22670         * class.c (inflate_method): Use `ginst->context' instead of
22671         creating a new context.
22673         * loader.c (method_from_memberref): Use
22674         `klass->generic_inst->context' instead of creating a new context.
22676 2004-03-25  Martin Baulig  <martin@ximian.com>
22678         * class.h (MonoGenericContext): New struct.
22679         (MonoGenericMethod): Removed `generic_inst'.
22681         * class.c (mono_class_inflate_generic_method): Take a
22682         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
22684 2004-03-25  Martin Baulig  <martin@ximian.com>
22686         * loader.h (MonoMethodInflated): New typedef.
22688         * metadata.h (MonoMethodSignature): Removed `gen_method', make
22689         `generic_param_count' consume just 30 bits, added `is_inflated'
22690         and `has_type_parameters' flags (one bit each).
22692         * class.c (mono_class_inflate_generic_method): Create a
22693         MonoMethodInflated instead of a MonoMethodNormal and set
22694         `is_inflated' in the method signature.
22696         * class.h (MonoGenericMethod): Removed `generic_method'.
22698 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
22700         * image.c: Make sure the name of a MonoImage is always an absolute path.
22701           This fixes bug #54415.
22703 2004-03-24  Martin Baulig  <martin@ximian.com>
22705         * class.c (mono_class_setup_vtable): If we're a generic instance,
22706         use our generic type's vtable size.
22708 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
22710         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
22711         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
22712         problems.
22714 2004-03-23  Martin Baulig  <martin@ximian.com>
22716         * class.h (MonoDynamicGenericInst): Added `int count_events' and
22717         `MonoEvent *events'.
22719         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
22720         (typebuilder_icalls): Added "get_event_info"; calls
22721         mono_reflection_event_builder_get_event_info(). 
22723         * reflection.c (mono_reflection_generic_inst_initialize): Added
22724         `MonoArray *events'.
22725         (mono_reflection_event_builder_get_event_info): New function.
22727 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
22729         * object.h: add mono_type_initialization_init
22731         * object.c (mono_runtime_class_init): 
22732         implement class constructor synchronization rules
22733         to cope with threading issues.  
22734         add mono_type_initialization_init
22736         * appdomain.c (mono_runtime_init): call 
22737         mono_type_initialization_init
22739         * class.h: removing initializing field from MonoVTable
22741 2004-03-23  Martin Baulig  <martin@ximian.com>
22743         * class.c (my_mono_class_from_generic_parameter): Use
22744         `param->name' if it's not NULL. 
22746 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
22748         * class.c: do not insert non-virtual methods in the vtable.
22749         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
22750         that means the method is non-virtual. This never would have
22751         happened before.
22753 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
22755         * profiler.c: Added lock for accessing coverage_hash.
22757 2004-03-22  Martin Baulig  <martin@ximian.com>
22759         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
22760         `method->method->signature->generic_param_count != 0' to make it
22761         work for interface methods.
22763 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22765         * process.c: quote the string passed to the shell using g_shell_quote.
22767 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22769         * threads.c:
22770         (mono_threads_manage): don't remove the finalizer thread and self
22771         from the threads hash table so that mono_thread_manage can be called
22772         more than once.
22774 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22776         * process.c: quote the arguments when UseShellExecute is true. Fixes
22777         bug #55790.
22779 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22781         * threads.c: set mono_thread_detach as a cleanup routine for every
22782         thread. This way it's always executed upon thread termination, either
22783         aborted or finished normally. No more xsp hangs!
22785 2004-03-17  Martin Baulig  <martin@ximian.com>
22787         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
22788         `int count_nested' and a `MonoType **nested'.
22790         * reflection.c (mono_reflection_bind_generic_parameters): Moved
22791         most of the functionality into a new static
22792         do_mono_reflection_bind_generic_parameters() and don't take a
22793         `MonoType *nested_in' argument any more.  Don't compute nested
22794         types here.
22795         (mono_reflection_generic_inst_get_nested_types): New public method
22796         to get nested types.
22798         * class.c (mono_class_create_generic): Set `klass->nested_in' if
22799         we're a nested class.
22801         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
22802         mono_reflection_generic_inst_get_nested_types() to compute the
22803         nested types.
22805 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22807         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
22808         descriptive error message under windows.
22809         
22810 2004-03-17  Martin Baulig  <martin@ximian.com>
22812         * class.c (dup_type): Added `const MonoType *original' argument;
22813         copy the attrs from the original type.
22815 2004-03-17  Martin Baulig  <martin@ximian.com>
22817         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
22818         `m->generic_inst_cache' here.
22820 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
22822         * exception.h exception.c: Add stack_overflow_exception.
22824 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22826         * threadpool.c:
22827         (overlapped_callback): call SetEvent *after* invoking the callback.
22828         No need to call CloseHandle.
22830 2004-03-16  Martin Baulig  <martin@ximian.com>
22832         * reflection.c (mono_image_get_fieldref_token): Take a
22833         `MonoReflectionField *' instead of a `MonoClassField *' and a
22834         `MonoClass *'; store the `MonoReflectionField *' in the hash.
22836 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22838         * appdomain.c: don't add the culture to the filename we're looking for
22839         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
22841 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22843         * locales.c: don't ignore symbols when doing case insensitive compares.
22844         Thanks Dick! Fixes bug #54046.
22846         * threads.c: surround 'threads' usage with enter/leave in
22847         mono_thread_manage.
22849 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
22851         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
22852         implicitly marshalled as [Out]. Fixes #55450.
22854         (mono_marshal_get_runtime_invoke): Zero out the result if there is
22855         an exception.
22857 2004-03-16  Martin Baulig  <martin@ximian.com>
22859         * class.c (mono_class_from_generic_parameter): Use the actual
22860         parameter name. 
22862 2004-03-16  Martin Baulig  <martin@ximian.com>
22864         * reflection.c (type_get_signature_size): New static function.
22865         Compues the size of the type in a method signature.
22866         (method_get_signature_size): New static function; calls
22867         type_get_signature_size() to compute the actual size of the
22868         method's signature.
22869         (method_encode_signature): Use method_get_signature_size() to get
22870         the signature's size rather than using `nparams * 10'.
22872 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22874         * file-io.h: define here WapiOverlapped on windows. I don't want the
22875         regular OVERLAPPED one.
22877         * file-io.c:
22878         * threadpool.c: somehow, BindIoCompletionCallback is not found.
22879         Disabling AIO on windows.
22881 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22883         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
22884         bug #55385.
22886 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22888         * appdomain.c: upgraded corlib version.
22890         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
22891         and BeginWrite. Allow opening files for asynchrnous operations.
22893         * file-io.h: new struct that maps FileStreamAsyncResult.
22894         * icall.c: added new icalls.
22895         * process.[ch]: support setting child process environment variables
22896         and use the SHELL or COMSPEC when UseShellExecute is true.
22898         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
22899         callback for async. IO is here and also BindHandle.
22901         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
22902         from here.
22904 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
22906         * reflection.c (create_custom_attr): Allow len == 0.
22908         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
22909         computation on big-endian machines.
22911 2004-03-13  Martin Baulig  <martin@ximian.com>
22913         * class.h (MonoGenericInst): Added `int count_ifaces'.
22915         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
22916         `ginst->count_ifaces' instead `klass->interface_count' since we
22917         may get called before the vtable is created.
22919         * loader.c (mono_method_get_param_names): If we're a generic
22920         instance, return and don't initialize the class.
22922         * reflection.c (mono_reflection_setup_generic_class): Don't call
22923         ensure_runtime_vtable().
22924         (mono_reflection_bind_generic_parameters): Set
22925         `ginst->count_ifaces'.
22927 2004-03-11  Jackson Harper <jackson@ximian.com>
22929         * icall.c:
22930         * unicode.c:
22931         * unicode.h: Remove unused System.Char icalls.
22932         
22933 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
22935         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
22936         code when we P/Invoke the first library in Windows.Forms, instead
22937         of when we first open the assembly.
22939         * assembly.c: Drop the lookup from here.
22941 2004-03-10  Martin Baulig  <martin@ximian.com>
22943         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
22944         class for properties, fields and events.  Finally fixes #54945.
22946 2004-03-10  Martin Baulig  <martin@ximian.com>
22948         * metadata.c (mono_metadata_class_equal): New static function;
22949         checks whether two generic instances or two generic parameters are
22950         equal.
22951         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
22952         compare classes.        
22954 2004-03-10  Martin Baulig  <martin@ximian.com>
22956         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
22958         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
22959         argument and write it into the `reflection_info' field.
22961         * icall.c
22962         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
22963         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
22965 2004-03-09  Jackson Harper  <jackson@ximian.com>
22967         * char-conversions.h: use 8 bits for numeric data its all we need
22968         * icall.c: numeric data is only 8 bits now.
22970 2004-03-09  Martin Baulig  <martin@ximian.com>
22972         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
22974         * class.c (init_properties, init_events): Initialize the new
22975         `parent' field.
22977         * reflection.c (typebuilder_setup_properties): Likewise.
22978         (typebuilder_setup_events): Likewise.
22980         * reflection.h (MonoEventInfo): Replaced `parent with
22981         `declaring_type' and `reflected_type'.
22983         * icall.c (ves_icall_get_property_info): Distinguish between
22984         declaring and reflected type.
22985         (ves_icall_get_event_info): Likewise.
22987 2004-03-09  Martin Baulig  <martin@ximian.com>
22989         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
22990         (ves_icall_Type_GetField): Correctly set field->klass.
22992 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
22994         * loader.h: Fix warning.
22996 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
22998         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
22999         library routine if present.  Notice that it will still continue
23000         executing even if its missing, for those working on the Gtk#
23001         edition of Windows.Forms.
23003         * assembly.c (do_mono_assembly_open): If loading the
23004         System.Windows.Forms call mono_loader_wini_init.
23006 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
23008         * class.h: Added MonoRemoteClass struct.
23009         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
23010         function for MonoStrings.
23011         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
23012         Added internal call for getting the proxy type.
23013         * marshal.c: Get the type of transparent proxies from its remote_class.
23014         Added methods that generate the IL for type checks and casts:
23015         mono_marshal_get_isinst, mono_marshal_get_castclass, 
23016         mono_marshal_get_proxy_cancast.
23017         * marshal.h: Declaration of the previous new methods.
23018         * object.c: Added new moethods for creating and updating MonoRemoteClass
23019         instances: mono_remote_class, mono_upgrade_remote_class, 
23020         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
23021         * verify.c: FIx transparent_proxy_fields layout.
23022         * appdomain.c: Bump corlib version.
23024 2004-03-04  Jackson Harper  <jackson@ximian.com>
23026         * icall.c: Add icall to access char conversion tables.
23027         * char-conversions.h: Character conversion tables.
23028         * Makefile.am: Add char-conversions.h private header file.
23029         
23030 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
23032         * appdomain.c (unload_thread_main): Increase unloading timeout to
23033         10 sec as a temporary workaround for Nant problems.
23035 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
23037         * gc.c: Add checks for GC_enable and GC_disable.
23039         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
23040         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
23041         (bug #54988).
23042         
23043 2004-02-27  Martin Baulig  <martin@ximian.com>
23045         * reflection.c (mono_reflection_bind_generic_parameters): Take a
23046         `MonoReflectionType *' instead of a `MonoType *'.
23048 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
23050         * gc.c (run_finalize): Avoid finalizing the object representing the
23051         finalizer thread.
23052         (finalizer_thread): Fix warning.
23054 2004-02-25  Martin Baulig  <martin@ximian.com>
23056         * class.c (_mono_class_get_instantiation_name): Added `int offset'
23057         argument for nested types.
23058         (mono_class_create_generic): Added support for nested generictypes.
23060         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
23061         `GList *nested'.
23063         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
23065         * reflection.c (method_encode_signature): Increase the minimum
23066         value of `size' from 10 to 11.
23067         (mono_reflection_bind_generic_parameters): Take `int type_argc'
23068         and `MonoType **types' arguments instead of the `MonoArray
23069         *types'; added `MonoType *nested_in'.  Recursively instantiate
23070         nested classes. 
23072 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
23074         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
23075         stack_overflow_ex members which are used by exception handling.
23077         * appdomain.c (mono_runtime_init): Initialize the new members.
23079         * gc.c (mono_gc_enable): New helper function.
23080         * gc.c (mono_gc_disable): New helper function.
23082 2004-02-23  Martin Baulig  <martin@ximian.com>
23084         * icall.c: I must have been really stupid - make it actually work
23085         this time ;-)
23087 2004-02-23  Martin Baulig  <martin@ximian.com>
23089         * loader.c (method_from_memberref): Only inflate the method if
23090         it's in another klass.
23092 2004-02-23  Martin Baulig  <martin@ximian.com>
23094         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
23095         (mono_class_init): If we're a generic instance and an interface,
23096         compute `class->interface_id'; also create `class->interfaces'
23097         here and inflate them.
23099         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
23100         `ginst->is_open'.
23101         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
23103         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
23105 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
23107         * reflection.c (method_encode_code): Improved the error message
23108         generated by the exception.
23110 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23112         * icall.c: Martin did not do what he said in the ChangeLog for
23113         2004-02-18, but put back the changes for properties and events.
23114         Commenting those changes out again and adding comment to bug #54518.
23115         
23116         * process.c: removed warning.
23118 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
23120         * marshal.c (emit_struct_conv): Print an error message instead of
23121         asserting when a type does not have the StructLayout attribute.
23123 2004-02-20  Martin Baulig  <martin@ximian.com>
23125         * reflection.c (mono_type_get_object): Also use the cache for
23126         generic instances.
23127         (mono_reflection_bind_generic_parameters): Always compute
23128         `ginst->ifaces'.        
23130 2004-02-20  Martin Baulig  <martin@ximian.com>
23132         * class.h (MonoGenericMethod): Removed `klass'.
23134         * class.c (mono_class_inflate_generic_method): Added `MonoClass
23135         *klass' argument.
23137 2004-02-20  Martin Baulig  <martin@ximian.com>
23139         * reflection.c (method_encode_methodspec): Actually use the
23140         uninflated signature for the memberref.
23142 2004-02-20  Martin Baulig  <martin@ximian.com>
23144         * class.h (MonoGenericMethod): Removed `declaring'.
23146         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
23147         is NULL, compute it here.
23149 2004-02-20  Martin Baulig  <martin@ximian.com>
23151         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
23153         * metadata.c (mono_metadata_generic_inst_hash): New method.
23154         (mono_metadata_generic_inst_equal): New method.
23156         * reflection.c (mono_reflection_bind_generic_parameters): Use the
23157         `klass->image->generic_inst_cache' cache to avoid creating
23158         duplicate MonoGenericInst's.
23160         * class.c (mono_class_inflate_generic_type): Use the cache.
23162 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
23164         * object.c: fixed gc descriptor calculation for embedded valuetypes.
23166 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23168         * icall.c: added Socket.WSAIoctl icall.
23170         * socket-io.[ch]: implemented
23171         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
23173 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
23175         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
23177 2004-02-18  Urs C Muff  <umuff@quark.com>
23179         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
23180         this work on PPC and other big-endian architectures.
23182         * debug-mono-symfile.h: Prepended the names of all the `guint32'
23183         fields with an underscore to make sure they're only accessed by
23184         the read32() macro.
23186 2004-02-18  Martin Baulig  <martin@ximian.com>
23188         * icall.c: Put the klass->refclass changes back for methods and
23189         fields, but not for properties and events.  We're currently not
23190         distinguishing between DeclaringType and ReflectedType for
23191         properties and events, that's what caused the regressions.
23193 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23195         * object.c:
23196         (mono_async_result_new): the handle can be NULL.
23198         * threadpool.c: Use an event instead of a semaphore, don't initialize
23199         it until needed. This saves quite a few semaphores from being created
23200         when using the threadpool.
23202 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
23204         * object.c (mono_string_is_interned_lookup): Fix interning of long
23205         strings. Fixes #54473.
23207         * domain.c (ldstr_equal): Optimize if the two strings are equal.
23209         * icall.c: Revert the klass->refclass changes since they introduce
23210         regressions (bug #54518).
23212 2004-02-18  Martin Baulig  <martin@ximian.com>
23214         * class.c (mono_class_init): If we're a generic instance and don't
23215         come from a TypeBuilder, inflate our members here.
23216         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
23217         (mono_class_create_generic): New public method.
23218         (mono_class_initialize_generic): Removed.
23219         (get_instantiation_name): Renamed to
23220         _mono_class_get_instantiation_name() and made it public.
23222 2004-02-18  Martin Baulig  <martin@ximian.com>
23224         * class.c (mono_class_inflate_generic_type): Clear the new
23225         instance's `nginst->klass' when inflating a generic instance.
23226         (mono_class_is_subclass_of): Added (basic) support for generic
23227         instances.
23229 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
23231         * appdomain.h, domain.c: use a MonoCodeManager instead of a
23232         MonoMempool to hold compiled native code.
23234 2004-02-17  Martin Baulig  <martin@ximian.com>
23236         * class.h (MonoDynamicGenericInst): Added `count_properties' and
23237         `properties'.
23239         * reflection.c (mono_reflection_generic_inst_initialize): Added
23240         `MonoArray *properties' argument.
23242         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
23244 2004-02-17  Martin Baulig  <martin@ximian.com>
23246         * icall.c (ves_icall_Type_GetFields): Renamed to
23247         ves_icall_Type_GetFields_internal() and added a
23248         `MonoReflectionType *rtype' argument; pass it to
23249         mono_field_get_object() to set the field's "reflected" type.
23250         (ves_icall_Type_GetConstructors): Likewise.
23251         (ves_icall_Type_GetEvents): Likewise.
23252         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
23253         argument; pass it to mono_method_get_object() to set the method's
23254         "reflected" type.       
23256 2004-02-17  Martin Baulig  <martin@ximian.com>
23258         * class.h (MonoDynamicGenericInst): New type.
23259         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
23261         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
23262         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
23263         (ves_icall_MonoGenericInst_GetFields): New interncall.
23265         * class.c (mono_class_from_generic): Don't call
23266         mono_class_initialize_generic() if this is a dynamic instance;
23267         ie. it's being created from a TypeBuilder.
23268         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
23269         `class->byval_arg.type'.
23271         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
23272         to `inflate_method' and made static.
23273         (mono_reflection_inflate_field): Removed.
23274         (mono_reflection_generic_inst_initialize): New public method.
23276         * reflection.h (MonoReflectionGenericInst): Removed `methods',
23277         `ctors' and `fields'; added `initialized'.
23279 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
23281         * debug-helpers.c (mono_method_full_name): Fix output for empty
23282         namespaces.
23284 2004-02-12  Martin Baulig  <martin@ximian.com>
23286         * class.h (MonoClassField): Added `MonoType *generic_type'.
23288         * reflection.c (mono_image_get_fieldref_token): Added support for
23289         instantiated generic types.
23290         (field_encode_inflated_field): Removed.
23291         (mono_image_get_inflated_field_token): Removed.
23292         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
23294         * reflection.h (MonoReflectionInflatedField): Removed.
23296 2004-02-12  Martin Baulig  <martin@ximian.com>
23298         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
23299         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
23301         * reflection.c (mono_image_get_methodspec_token): Take a
23302         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
23303         (mono_image_create_token): Check whether we have a
23304         `method->signature->gen_method' and call
23305         mono_image_get_methodspec_token() if appropriate.
23306         (inflated_method_get_object): Removed.
23307         (mono_reflection_bind_generic_method_parameters): Return a
23308         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
23309         (mono_reflection_inflate_method_or_ctor): Likewise.
23311         * reflection.h (MonoReflectionInflatedMethod): Removed.
23313 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
23315         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
23316         for custom valuetype marshalling.
23318         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
23320 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23322         * icall.c: fixed WSAGetLastError_internal name.
23324 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
23326         * threads.c (mono_thread_attach): Allow this to be called multiple
23327         times for a thread.
23328         
23329         * threads.c (build_wait_tids): Do not wait for ourselves.
23331         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
23332         appdomain list is empty.
23334         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
23335         memory returned by mono_string_builder_to_utf16, since it points into
23336         managed memory. Thanks to Bernie Solomon for noticing this.
23338         * icall.c: Add AppDomainSetup icalls.
23340         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
23342         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
23343         types.
23345         * reflection.c (reflection_methodbuilder_to_mono_method): Save
23346         custom attributes to the method_aux struct. Also fix array indexes etc.
23348         * loader.c (mono_method_get_param_names): Make dynamic case work again.
23349         
23350 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
23352         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
23353         (both static and runtime) and reduce startup time.
23355 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
23357         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
23358         AsAny marshalling conversion instead of crashing.
23360         * marshal.c: Fix warnings.
23362 2004-02-09  Martin Baulig  <martin@ximian.com>
23364         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
23366         * reflection.h (MonoReflectionInflatedMethod): Removed the
23367         `declaring' field, it's now in the unmanaged MonoGenericMethod.
23369         * reflection.c (method_encode_methodspec): Removed the `method'
23370         argument; we get it from `gmethod->declaring'.
23371         (inflated_method_get_object): Removed the `declaring' argument.
23373 2004-02-09  Martin Baulig  <martin@ximian.com>
23375         * class.h (MonoGenericMethod): New type.
23376         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
23377         `generic_method'.
23379         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
23380         a `MonoGenericMethod *gen_method' one.
23382         * class.c (mono_class_inflate_generic_type): Take an additional
23383         `MonoGenericMethod * argument.  This is only non-NULL if we're
23384         inflating types for a generic method.   
23385         (mono_class_inflate_generic_signature): Renamed to
23386         inflate_generic_signature() and made static; take a
23387         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
23388         (inflate_generic_header): Take a `MonoGenericMethod *' argument
23389         instead of a `MonoGenericInst *' one.
23390         (mono_class_inflate_generic_method): Likewise.
23392         * reflection.c (encode_generic_method_sig): Take a
23393         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
23394         (method_encode_methodspec): Likewise.
23395         (inflated_method_get_object): Likewise. 
23397         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
23398         field with a `MonoGenericMethod *gmethod' one.  
23400 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
23402         * class.h (mono_class_has_parent): add parens to expansion
23403         so you can ! this.
23405 2004-02-08  Martin Baulig  <martin@ximian.com>
23407         * image.h (MonoImage): Removed `generics_cache'.
23409         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
23410         instead of a `MonoType *' argument; removed the `inflate_methods'
23411         argument.  Don't inflate methods here.
23413         * loader.c (find_method): If it's a generic instance, call
23414         mono_class_init() on the `sclass->generic_inst->generic_type'.
23416         * metadata.c (mono_type_size): Make this work on uninitialized
23417         generic instances; call it on the `ginst->generic_type's class.
23419         * reflection.c (mono_reflection_bind_generic_parameters): Call
23420         mono_class_from_generic() to create the `ginst->klass'.
23422 2004-02-08  Martin Baulig  <martin@ximian.com>
23424         * class.h (MonoClass): Changed type of `generic_inst' from
23425         `MonoType *' to `MonoGenericInst *'.
23427 2004-02-08  Martin Baulig  <martin@ximian.com>
23429         * icall.c (ves_icall_Type_BindGenericParameters): Just call
23430         mono_type_get_object(), this is now creating a `MonoGenericInst'
23431         for MONO_TYPE_GENERICINST.
23432         (ves_icall_MonoGenericInst_GetParentType): Likewise.
23433         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
23435         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
23436         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
23437         (inflated_method_get_object): Added `MonoClass *refclass' argument.
23438         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
23439         and reflected type.
23441         * reflection.h (MonoReflectionInflatedMethod): Removed
23442         `declaring_type' and `reflected_type'.
23444 2004-02-08  Martin Baulig  <martin@ximian.com>
23446         * class.h (MonoGenericInst): Added `MonoType *parent' and
23447         `MonoType **ifaces'.
23449         * reflection.h (MonoReflectionGenericInst): Removed `klass',
23450         `parent' and `interfaces'.
23452         * reflection.c (mono_reflection_bind_generic_parameters): Take a
23453         `MonoType *' argument and return a `MonoType *'.
23455         * icall.c
23456         (ves_icall_MonoGenericInst_GetParentType): New interncall.
23457         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
23459 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
23461         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
23462         valuetype marshalling.
23464 2004-02-06  Martin Baulig  <martin@ximian.com>
23466         * class.c
23467         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
23468         (my_mono_class_from_generic_parameter): Likewise.
23470 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
23472         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
23473         contents of the symbol files lazily.
23475         * object.h (MonoThread): Add 'name' and 'name_len' fields.
23477         * threads.h threads.c icall.c: New icalls for getting and setting the
23478         threads name.
23480 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
23482         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
23483         Raise an exception when the domain is not found.
23485 2004-02-03  Martin Baulig  <martin@ximian.com>
23487         * reflection.c (mono_image_get_methodspec_token): Use the
23488         uninflated signature; fixes gen-33.
23490 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
23492         * gc.c threads.c: Make the finalizer thread a normal managed thread so
23493         the finalizer code can use thread functionality.
23495         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
23496         the finalizer thread.
23498         * threads.c: Make some functions more robust.
23500         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
23502         * metadata.h: Add new marshalling conventions.
23504         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
23505         stringbuilder marshalling. Fixes #53700.
23507         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
23509         * reflection.c (mono_image_get_type_info): Save declarative security
23510         info.
23512         * reflection.c (mono_image_get_field_info): Handle uninitialized 
23513         unmanaged fields as well.
23515         * appdomain.c: Bump corlib version.
23517 2004-02-01  Martin Baulig  <martin@ximian.com>
23519         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
23520         method type arguments.  
23522 2004-01-30  Duncan Mak  <duncan@ximian.com>
23524         * marshal.h: Add prototype for
23525         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
23526         and
23527         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
23528         fix the build.
23530 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
23532         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
23533         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
23535 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
23537         * marshal.c (mono_marshal_get_native_wrapper): Add support for
23538         custom marshalling of valuetypes.
23540         * marshal.c: Fix some warnings.
23542 2004-01-29  Martin Baulig  <martin@ximian.com>
23544         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
23545         for generic method parameters.
23547         * reflection.c (method_encode_methodspec): Write the uninflated
23548         signature into the methodspec table.
23549         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
23550         is always the uninflated method.
23551         (reflection_methodbuilder_to_mono_method): Copy the generic
23552         parameters from the MethodBuilder into `header->gen_params'.
23554 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
23556         * class.c (mono_class_from_generic_parameter): Fix warning.
23558 2004-01-27  Martin Baulig  <martin@ximian.com>
23560         * class.c (mono_class_from_generic_parameter): Don't create
23561         `klass->methods' here.  
23563 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
23565         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
23566         extension since it does not work with libraries named lib<FOO>.dll.so.
23568 2004-01-25  Martin Baulig  <martin@ximian.com>
23570         * class.c (mono_class_inflate_generic_type): Added support for
23571         MONO_TYPE_GENERICINST.
23573         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
23574         inflate methods on open constructed types.      
23576 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23578         * object.c: fire ProcessExit event in the root AppDomain after running
23579         Main. Fixes bug #53299.
23581 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
23583         * socket-io.c: include the new socket-wrappers.h header.
23584         Use the wrappers instead of the unix socket functions to make the code
23585         more clear.
23587 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
23589         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
23591         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
23592         Fixes #22532.
23594 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
23596         * reflection.c (mono_image_create_pefile): Handle the case when the
23597         entry point is not a MethodBuilder.
23599         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
23600         field to ReflectionMethod since it is not allways a builder.
23602         * reflection.c (type_get_fully_qualified_name): New helper function to
23603         return the fully qualified name of a type.
23605         * reflection.c (encode_marshal_blob): Always emit the fully qualified
23606         type name for custom marshallers.
23608         * reflection.c (mono_marshal_spec_from_builder): Ditto.
23610         * class.c (mono_class_setup_vtable): If a parent class already 
23611         implements an interface, use the implementing methods from that class.
23612         Fixes #53148.
23614 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23616         * threadpool.c: just return instead of ExitThread to allow for thread
23617         clean up earlier.
23619 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
23621         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
23622         when closing resource modules.
23624         * reflection.c (mono_image_create_pefile): Handle the case when the
23625         entry point is not a MethodBuilder.
23627         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
23628         field to ReflectionMethod since it is not allways a builder.
23630 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23632         * marshal.c (mono_marshal_get_managed_wrapper): 
23633         mono_marshal_alloc takes native int so CONV_I
23634         the arg for 64bits.
23636 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
23638         * reflection.c (fixup_cattrs): New function to fixup the methoddef
23639         tokens in the cattr table. Fixes #53108.
23641 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23643         * loader.c: don't trim ".dll" before looking up in the config file.
23644         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
23646 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
23648         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
23649         Return the module which contains the resource as well.
23650         (ves_icall_System_Reflection_Module_Close): New icall.
23652         * appdomain.c: Bump corlib version number.
23654         * image.c (mono_image_addref): New public function.
23656         * assembly.c: Call mono_image_addref.
23658         * reflection.c (mono_module_get_object): Increase reference count of 
23659         the image.
23661         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
23662         Fixes #22532.
23664         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
23665         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
23666         proper exceptions on DllImport problems.
23668 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
23670         * class.c, metadata.c: eliminate CSIZE macro.
23672 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
23674         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
23675         * object.h: Added async_callback field in MonoAsyncResult.
23676         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
23677         * verify.c: Added async_callback in MonoAsyncResult layout.
23679 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
23681         * reflection.c (mono_reflection_get_custom_attrs): Add support
23682         for Modules.
23684 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23686         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
23687         marshalling.
23688         (mono_marshal_method_from_wrapper): Add null pointer check.
23690 2004-01-16  Martin Baulig  <martin@ximian.com>
23692         * debug-mono-symfile.h: Set version number to 36 and reflect
23693         latest symbol writer changes.
23695 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
23697         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
23698         multi-dimensional arrays.
23699         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
23700         (mono_class_from_mono_type): Use bounded_array_class_get.
23701         
23702         * class.c (mono_bounded_array_class_get): New function which takes
23703         a 'bounded' bool argument to distinguish vectors from one dimensional
23704         arrays.
23706         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
23707         bounded_array_class_get if the array has bounds.
23709         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
23710         Search modules loaded using AssemblyBuilder:AddModule as well.
23712 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23714         * appdomain.c: increased corlib version.
23715         * filewatcher.c: removed g_print.
23716         * icall.c:
23717         (get_property_info): only allocate what is actually requested.
23718         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
23720 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23722         * Makefile.am: added filewatcher.[ch]
23723         * filewatcher.[ch]: FileSystemWatcher runtime support.
23724         * icall.c: added new FSW icalls.
23726 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
23728         * string-icalls.c: fix stringbuilder regression as suggested by
23729         Iain McCoy <iain@mccoy.id.au>.
23731 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
23733         * process.c (process_read_stringtable_block): Recognize '007f' as
23734         a language neutral stringtable block.
23736 2004-01-12  Patrik Torstensson
23738         * object.h (MonoStringBuilder) : Changed layout to support our
23739         new stringbuilder class.
23740         * marshal.c: Change marshalling to support the new layout of 
23741         string builder.
23742         * appdomain.c: increased version number because new layout of
23743         string builder.
23745 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
23747         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
23748         assembly name as an string instead of an AssemblyName, since it is
23749         easier to extract info from it.
23751         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
23752         the culture subdirectories too. Fixes #52231.
23754 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23756         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
23757         It takes 2 new parameters with an optional name for the method to look
23758         for and case ignoring info.
23760         * threadpool.c: removed unused variable.
23762 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23764         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
23765         It takes 2 new parameters with an optional name for the property to look
23766         for and case ignoring info.
23767         Fixes bug #52753.
23769 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
23771         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
23772         Fix #52451.
23774 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23776         * appdomain.c:
23777         * assembly.c: escape the uri before passing it to g_filename_from_uri.
23778         Fixes bug #52630.
23780 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
23782         * reflection.c: Add support for more than one unmanaged resource.
23784         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
23785         in field->def_value, as done in all other cases.
23787         * reflection.c (mono_reflection_get_custom_attrs): Add support for
23788         TypeBuilders.
23790         * reflection.c (mono_reflection_create_runtime_class): Remove 
23791         errorneous assignment to klass->element_class, since it is already
23792         done in mono_reflection_setup_internal_class.
23794 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23796         * gc.c: added missing LeaveCriticalSection.
23797         * icall.c: indented a couple of lines.
23798         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
23799         if we call EndInvoke inside a callback. Fixes bug #52601.
23801 2004-01-07  Martin Baulig  <martin@ximian.com>
23803         * mono-debug-debugger.h
23804         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
23806 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
23808         * appdomain.c: Use messages in NotImplementedException.
23810         * exception.c (mono_get_exception_not_implemented): Now this takes
23811         a message argument.
23813         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
23814         exception instead of g_asserting an aborting when something is not
23815         implemented.
23817         Add some inline docs.
23819 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
23821         * reflection.h: Update after changes to object layout.
23823         * reflection.c: Implement saving of unmanaged aka win32 resources.
23825         * appdomain.c: Bump version number.
23827         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
23828         Handle missing domains gracefully.
23830 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
23832         * file-io.c : On Windows, there are much more invalid_path_chars.
23834 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
23836         * class.h, object.c: prepare for GetType () speedup.
23838 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
23840         * profiler.c: workaround for --profile null reference exception on
23841           cygwin. Patch by Patrik Torstensson.
23843 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
23845         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
23846         make work for unaligned access.
23848 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
23850         * class.c: small cleanup (class->fields [i] -> field).
23851         * image.c: check address of metadata is valid.
23853 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
23855         * assembly.h assembly.c (mono_assembly_loaded): New public function to
23856         search the list of loaded assemblies.
23858         * reflection.c (mono_reflection_type_from_name): Use 
23859         mono_assembly_loaded instead of mono_image_loaded.
23861         * reflection.c: Fix warnings.
23863 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
23865         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
23866         is dynamic. This is needed since an assembly can contain both dynamic and
23867         non-dynamic images.
23869         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
23870         assembly->dynamic.
23872         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
23874         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
23875         to store modules loaded using AddModule.
23877         * reflection.c (mono_image_fill_file_table): Generalize this so it works
23878         on Modules.
23880         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
23882         * reflection.c (mono_image_fill_export_table_from_module): New function to
23883         fill out the EXPORTEDTYPES table from a module.
23885         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
23886         into a separate function. Also handle loaded non-dynamic modules.
23888         * reflection.c (mono_image_basic_init): Fix memory allocation.
23890         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23892         * assembly.c (mono_assembly_load_references): Make this public.
23894 2003-12-19  Martin Baulig  <martin@ximian.com>
23896         * class.c (mono_class_initialize_generic): Made this static, take
23897         a `MonoGenericInst *' instead of a `MonoClass *'.
23898         (mono_class_from_generic): Call mono_class_initialize_generic()
23899         unless we're already initialized or being called from
23900         do_mono_metadata_parse_generic_inst().
23902         * class.h (MonoGenericInst): Added `initialized' and
23903         `init_pending' flags.
23905         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
23906         `mono_class_init (gklass)' or mono_class_initialize_generic()
23907         here; set `generic_inst->init_pending' while parsing the
23908         `type_argv'.
23910 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
23912         * locales.c: include string.h for memxxx prototypes
23914 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
23916         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
23917         constructor when accessing literal fields.
23919 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
23921         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23923         * reflection.c (assembly_add_resource_manifest): New function to fill
23924         the MANIFESTRESOURCE table.
23926         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
23928         * reflection.h: Update to changes in class layout.
23930         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
23931         Reenable call to mono_runtime_is_shutting_down ().
23933         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
23934         determine if the runtime is shutting down.
23936 2003-12-16  Jackson Harper <jackson@ximian.com>
23938         * icall.c: comment out call to mono_runtime_is_shutting_down to
23939         fix build.
23940         
23941 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
23943         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
23944         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
23946 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
23948         * reflection.c: move definition of swap_with_size
23949         to before its first call
23951 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
23953         * appdomain.c (mono_runtime_is_shutting_down): New public function.
23955         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
23956         icall.
23958         * object.c: Fix warnings.
23960         * icall.c (ves_icall_Type_Get...): Only consider inherited static
23961         members if FlattenHierarchy is set.
23963         * reflection.c (mono_image_add_decl_security): New function to emit
23964         declarative security.
23966         * reflection.h reflection.c: Add support for declarative security.
23968         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
23969         
23970 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
23972         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
23973         
23974         * appdomain.c verify.c: Moved corlib version checking into its own
23975         function in appdomain.c since it needs to create vtables etc.
23977 2003-12-13  Patrik Torstensson <p@rxc.se>
23979         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
23980         instead of unwrapped server.
23982 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
23984         * verify.c (check_corlib): Fix field index.
23986 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
23988         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
23989         GetGacPath icall.
23991 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
23993         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
23994         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
23995         cope with sizeof(size_t) != sizeof(guint32).
23997 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23999         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
24000         in case of failure.
24002 2003-12-10  Mark Crichton <crichton@gimp.org>
24004         * icall.c: removed the GetNonZeroBytes.  We now handle this case
24005         in managed code.
24007         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
24009 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
24011         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
24012         marked as deleted.
24014 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
24016         * verify.c (check_corlib): Handle the case when the version field is 
24017         initialized by a static constructor.
24019 2003-12-08  Patrik Torstensson  <p@rxc.se>
24021     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
24023 2003-12-08  Martin Baulig  <martin@ximian.com>
24025         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
24026         a MonoReflectionGenericParameter, also take the parameter index
24027         and name as arguments.
24028         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
24029         (ves_icall_MonoGenericParam_initialize): New interncall.
24030         (ves_icall_Type_make_byref_type): New interncall.
24032         * reflection.h (MonoReflectionGenericParam): Derive from
24033         MonoReflectionType, not just from MonoObject.  Added `refobj' and
24034         `index' fields.
24036         * reflection.c (mono_reflection_define_generic_parameter): Create
24037         and return a new MonoReflectionGenericParam; don't initialize the
24038         constraints here.
24039         (mono_reflection_initialize_generic_parameter): New public method;
24040         initializes the constraints and creates the `param->pklass'.
24042 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
24044         * reflection.h reflection.c: Use the new fields 'num_types', 
24045         'num_fields' and 'num_methods' to track the number of types etc.
24047         * verify.c (check_corlib): Check corlib version number.
24049 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
24051         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
24052         function works on all methods.
24054 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
24056         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
24057         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
24058         the custom_type_info flag of the transparent proxy.
24059         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
24060         objects that supports IRemotingTypeInfo.
24061         * object.h: Added custom_type_info field in transparent proxy.
24063 2003-12-06  Martin Baulig  <martin@ximian.com>
24065         * class.c (mono_class_create_from_generic): Removed.
24066         (mono_class_from_generic): Check `ginst->klass' before doing
24067         anything else.  This is important to fully support "recursive"
24068         generic types.
24070         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
24071         empty `generic_inst->klass' before doing anything else.
24073 2003-12-06  Dick Porter  <dick@ximian.com>
24075         * verify.c: 
24076         * object.h:
24077         * icall.c:
24078         * locales.c: Use C structs to access class fields.  Don't do a
24079         conversion between MonoString and UChar because both are
24080         platform-endian UTF-16.  Compare now takes startindex and count
24081         parameters.  Add a char overload for IndexOf.  Speed up the
24082         invariant string IndexOf.
24084 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
24086         * Makefile.am (monosn_LDADD): Fix parallel build.
24088 2003-12-04  Martin Baulig  <martin@ximian.com>
24090         * icall.c
24091         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
24092         (ves_icall_Type_make_array_type): New interncall.       
24094 2003-12-04  Martin Baulig  <martin@ximian.com>
24096         * locales.c: also change it in the !HAVE_ICU case.
24098 2003-12-04  Dick Porter  <dick@ximian.com>
24100         * icall.c:
24101         * locales.c: construct_compareinfo is now in CompareInfo, not
24102         CultureInfo.
24104 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
24106         * image.c (mono_image_load_file_for_image): Cache loaded images in the
24107         image->files array.
24109         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
24110         table as well.
24112         * assembly.c (mono_assembly_load_references): Only load references
24113         once.
24115         * class.c (mono_class_from_name): Avoid linear search of the 
24116         EXPORTEDTYPE table.
24118         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
24120 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
24122         * image.h (MonoImage): Add 'field_cache' field.
24124         * loader.c (mono_field_from_token): Cache field lookups.
24125         
24126         * reflection.c (mono_module_get_object): Fix name property.
24128         * icall.c (ves_icall_get_enum_info): Update after changes to 
24129         mono_metadata_get_constant_index ().
24131         * icall.c: Get rid of get_type_info icall, use a separate icall for
24132         each type property to avoid needless memory allocations. Fixes #51514.
24134         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
24135         to avoid needless binary searches.
24137         * class.c (class_compute_field_layout): Move the initialization of
24138         field->def_value to mono_class_vtable ().
24140         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
24141         non-corlib types.
24143         * object.c (mono_object_allocate): Make it inline.
24145         * object.c (mono_object_allocate_spec): Make it inline.
24146         
24147 2003-12-02  Dick Porter  <dick@ximian.com>
24149         * locales.c (create_NumberFormat): NumberFormatInfo construction.
24150         Patch by Mohammad DAMT (mdamt@cdl2000.com).
24152 2003-12-01  Dick Porter  <dick@ximian.com>
24154         * threads.c: Fix signature and call in CreateMutex and
24155         CreateEvent.
24157 2003-12-01  Dick Porter  <dick@ximian.com>
24159         * icall.c: 
24160         * locales.c: Implement string compares and searching
24162         * object.h: Add extra Thread field
24164 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
24166         * reflection.c (fixup_method): Add support for MonoCMethod.
24168 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
24170         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
24172         * reflection.c (assembly_name_to_aname): Allow extra characters in
24173         assembly names. Fixes #51468.
24175 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
24177         * exception.c (mono_exception_from_name_domain): New helper function.
24179         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
24180         exception object in the correct domain.
24182         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
24183         formatting + make a copy a the input data.
24185         * loader.c (mono_get_method_from_token): Methods which contain
24186         native code do not have entries in the ImplMap.
24188         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
24189         Thanks to Gonzalo for spotting this.
24190         
24191         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
24192         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
24194         * assembly.h (mono_assembly_load_from): Split the second part of 
24195         assembly loading into a new public function.
24197         * exception.h (mono_get_exception_bad_image_format): New function.
24199 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
24201         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
24202         Enumerate all modules inside a dynamic assembly. Fixes #51293.
24203         
24204         * icall.c: Add new icall for creating dynamic methods.
24206         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
24208         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
24210         * reflection.c (mono_reflection_create_dynamic_method): New icall to
24211         create a dynamic method.
24213         * reflection.c (resolve_object): New helper function.
24215         * reflection.c: Generalize ReflectionMethodBuilder and the functions
24216         which manipulate it so they can also work on dynamic methods.
24218         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
24219         creating the MonoReflectionMethodAux structure if it is not needed.
24220         
24221         * reflection.h verify.c: Update after changes to object layout.
24223         * reflection.c (method_builder_encode_signature): Fix compilation on
24224         gcc 2.95.x.
24226 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
24228         * appdomain.h: Added support for context static fields. Added static_data
24229           field to MonoAppContext and renamed thread_static_fields to a more
24230           generic special_static_fields in MonoAppDomain, since it can now contain
24231           context static fields.
24232         * domain.c: Updated hashtable name.
24233         * object.c: Replaced field_is_thread_static() for a more generic
24234           field_is_special_static() which also checks for context static attribute.
24235           In mono_class_vtable(), added support for static context fields.
24236         * threads.c: Changed methods that manage thread static fields to more
24237           generic methods so they can be reused both for thread and context static
24238           data.
24239         * threads.h: Declared some new methods.
24241 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
24243         * reflection.h: Update after changes to the managed types.
24245         * reflection.c (encode_custom_modifiers): New helper function.
24247         * reflection.c (method_encode_signature): Emit custom modifiers.
24249         * reflection.c (field_encode_signature): Emit custom modifiers.
24251 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
24253         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
24255         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
24256         implementation.
24258         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
24259         icall.
24261         * object.c (mono_field_get_value_object): New function.
24263         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
24264         specific.
24266 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
24268         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
24269         return a preallocated out-of-memory exception instance.
24271         * object.c (out_of_memory): Use the new function.
24273         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
24274         flag is before the custom modifiers. Fixes #49802.
24276 2003-11-16  Martin Baulig  <martin@ximian.com>
24278         * class.c (mono_class_is_open_constructed_type): Implemented the
24279         MONO_TYPE_GENERICINST case.
24281 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
24283         * assembly.c (mono_assembly_fill_assembly_name): New function to
24284         fill out the MonoAssemblyName structure.
24285         (mono_assembly_open): Use the new function.
24287         * icall.c (fill_reflection_assembly_name): New helper function.
24289         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
24290         new function.
24292         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
24294 2003-11-15  Martin Baulig  <martin@ximian.com>
24296         * class.c (mono_class_is_open_constructed_type): New public
24297         function; checks whether a type is an open constructed type,
24298         ie. whether it still contains type parameters.
24299         (mono_class_inflate_generic_type): If we're a type parameter and
24300         the inflated type is also a MONO_TYPE_(M)VAR, return the original
24301         type.
24303         * class.h (MonoGenericInst): Added `guint32 is_open'.
24305         * loader.c (method_from_methodspec): Check whether we're an open
24306         or closed constructed type and set `ginst->is_open'.
24308         * reflection.c (mono_reflection_bind_generic_parameters): Check
24309         whether we're an open or closed constructed type and set
24310         `ginst->is_open'.
24311         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
24312         from open constructed types.
24314 2003-11-15  Martin Baulig  <martin@ximian.com>
24316         * reflection.c (mono_reflection_bind_generic_parameters): If we're
24317         a generic instance (instead of a generic type declaration) with
24318         unbound generic parameters, bind them to our actual types.
24320 2003-11-14  Martin Baulig  <martin@ximian.com>
24322         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
24324         * reflection.c (mono_reflection_bind_generic_parameters): If we're
24325         an interface type, populate `res->interfaces' with instantiated
24326         versions of all the interfaces we inherit.
24328 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
24330         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
24331         when MONO_PATH is set but doesn't contain the install dir.
24333 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24335         * icall.c:
24336         (ves_icall_Type_GetInterfaces): don't return an interface twice when
24337         it's also implemented in base classes. Fixes bug #50927.
24339 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
24341         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
24342         if this method is called from a finalizer. Fixes #50913.
24344 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
24346         * threads.c: Implement VolatileRead/VolatileWrite
24348         * icall.c: Add new icalls for VolatileRead/VolatileWrite
24350 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24352         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
24353         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
24354         2.95.3.
24356         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
24357         from Peter Ross (pro@missioncriticalit.com).
24358         
24359 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
24361         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
24363 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24365         * assembly.c (mono_assembly_load_references): Disable check because it
24366         triggers on older corlibs which lots of people have.
24368 2003-11-12  Jackson Harper  <jackson@ximian.com>
24370         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
24371         load corlib.dll if mscorlib.dll is not found.
24372         * assembly.h: Remove corlib name define.
24373         * class.c:
24374         * domain.c:
24375         * image.c: Change corlib name to mscorlib.
24376         
24377 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
24379         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
24381 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
24383         * appdomain.h: Added loader_optimization here to sync with the C#
24384         code, and add disallow_binding_redirects field.
24386 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
24388         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
24390         * reflection.c (mono_image_build_metadata): Fix crash on modules
24391         with no types.
24393         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
24395         * icall.c (ves_icall_get_method_info): Return callingConvention as
24396         well.
24398         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
24399         namespaces from the EXPORTEDTYPE table as well.
24401         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
24402         from all modules inside the assembly.
24403         
24404 2003-11-11  Martin Baulig  <martin@ximian.com>
24406         * reflection.c (mono_reflection_bind_generic_parameters): Make
24407         this work for interfaces.
24409 2003-11-11  Martin Baulig  <martin@ximian.com>
24411         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
24413 2003-11-11  Martin Baulig  <martin@ximian.com>
24415         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
24416         "MonoInflatedMethod" and "MonoInflatedCtor".
24418 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
24420         * reflection.c (resolution_scope_from_image): Use the assembly table
24421         from the manifest module, since other modules don't have it.
24423         * debug-helpers.c (mono_type_full_name): New helper function.
24425         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
24427         * image.c (mono_image_load_file_for_image): New public function which
24428         is a replacement for the load_file_for_image in class.c.
24430         * assembly.c (mono_assembly_load_module): A wrapper for the function
24431         above which does assembly association and reference loading too.
24433         * class.c (mono_class_from_name): Call mono_assembly_load_module.
24435 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24437         * appdomain.c: not all of the attributes for the full assembly name
24438         are required and the order doesn't matter. Fixes bug #50787.
24440 2003-11-10  Dick Porter  <dick@ximian.com>
24442         * locales.c: Use platform-endian UTF16
24444 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
24446         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
24447         
24448 2003-11-10  Martin Baulig  <martin@ximian.com>
24450         * metadata.c
24451         (mono_metadata_load_generic_params): Make this actually work.
24453         * reflection.c (mono_reflection_bind_generic_parameters): If our
24454         parent is a generic instance, pass all the `types' to it, no
24455         matter whether it has the same number of type parameters or not.
24457 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
24459         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
24461         * assembly.c (mono_assembly_load_references): Move the image<->assembly
24462         assignment code to this function so it gets called recursively for all
24463         modules.
24465         * image.c (load_modules): Remove the assembly assignment since it is
24466         now done by mono_assembly_load_references.
24467         
24468         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
24469         Add 'module' argument.
24470         (mono_module_get_types): New helper function.
24471         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
24473 2003-11-08  Martin Baulig  <martin@ximian.com>
24475         * class.c (mono_class_inflate_generic_method): Interface method
24476         don't have a header.
24478         * reflection.c (mono_image_get_methodspec_token): Take an
24479         additional `MonoGenericInst *' argument instead of reading it from
24480         the header; this is necessary to support interfaces.
24481         (mono_image_create_token): Pass the `MonoGenericInst *' from the
24482         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
24483         (inflated_method_get_object): Take an additional `MonoGenericInst *'
24484         argument.
24486         * reflection.h (MonoReflectionInflatedMethod): Added
24487         `MonoGenericInst *ginst'.
24489 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
24491         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
24493 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
24495         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
24497 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
24499         * reflection.c 
24500         (reflection_methodbuilder_from_method_builder):
24501         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
24502         initialize a ReflectionMethodBuilder structure.
24503         (mono_image_get_methodbuilder_token):
24504         (mono_image_get_ctorbuilder_token): New functions to emit memberref
24505         tokens which point to types in another module inside the same assembly.
24507         * reflection.c: Use the new helper functions.
24508         
24509         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
24511         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
24512         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
24514         * reflection.c (resolution_scope_from_image): Emit a moduleref if
24515         neccesary.
24517         * reflection.c (mono_image_build_metadata): Emit metadata only for the
24518         current module. Emit the manifest only for the main module.
24520         * reflection.c (mono_image_create_token): Add assertion when a 
24521         memberref needs to be created.
24523         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
24525         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
24526         larger buffer for the custom attribute blob. Fixes #50637.
24527         
24528 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24530         * threadpool.c: notify listener on async processing handles after
24531         invoking the async callback. Thanks to Zoltan.
24533 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24535         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
24536         avoid code duplication.
24538         * reflection.h (MonoDynamicImage): New type which is currently unused,
24539         but will be used through the ref.emit code in place of 
24540         MonoDynamicAssembly.
24542         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
24543         object layout.
24545         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
24546         a MonoDynamicImage instead of just a MonoImage.
24547         
24548         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
24549         icalls to ModuleBuilder but keep their semantics, so they will work
24550         with moduleb->assemblyb. This will change later.
24551         
24552 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24554         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
24555         object layout.
24557         * reflection.c (mono_image_build_metadata): Avoid creation of a default
24558         main module, since it is now done by the managed code.
24560 2003-11-03  Martin Baulig  <martin@ximian.com>
24562         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
24563         `ginst->klass' here.
24564         (method_encode_methodspec): Don't use the `ginst->generic_method's
24565         klass if it's a generic instance, use `ginst->klass' in this case.
24567 2003-11-03  Martin Baulig  <martin@ximian.com>
24569         * reflection.c (mono_image_get_generic_method_param_info):
24570         Removed, use mono_image_get_generic_param_info() instead.
24571         (mono_image_get_type_info): Write the GenericParam table before
24572         the Method table.  This is neccessary because in the GenericParam
24573         table, type parameters of the class (ie. '!0' etc.) must come
24574         before the ones from its generic methods (ie. '!!0' etc).
24576 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
24578         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
24580 2003-11-02  Martin Baulig  <martin@ximian.com>
24582         * reflection.c (create_generic_typespec): Take a
24583         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
24584         the generic parameters from it.
24586 2003-11-02  Martin Baulig  <martin@ximian.com>
24588         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
24589         instead of a `MonoClassField *' since we just need the type.
24590         (create_generic_typespec): New static function.  Creates a
24591         TypeSpec token for a generic type declaration.
24592         (mono_image_get_generic_field_token): New static function.
24593         (mono_image_create_token): If we're a FieldBuilder in a generic
24594         type declaration, call mono_image_get_generic_field_token() to get
24595         the token.
24597 2003-11-02  Martin Baulig  <martin@ximian.com>
24599         * reflection.h
24600         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
24601         `MonoReflectionGenericInst *declaring_type' and
24602         `MonoReflectionGenericInst *reflected_type' fields.
24604         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
24605         `MonoReflectionGenericInst *declaring_type' and a
24606         `MonoReflectionGenericInst *reflected_type' argument instead of a
24607         single `MonoReflectionGenericInst *type' one.  Set
24608         `res->declaring_type' and `res->reflected_type' from them.
24609         (mono_reflection_inflate_field): Likewise.      
24611 2003-11-02  Martin Baulig  <martin@ximian.com>
24613         * class.c (mono_class_setup_vtable): Don't store generic methods
24614         in the vtable.  
24616 2003-11-02  Martin Baulig  <martin@ximian.com>
24618         * reflection.h (MonoReflectionGenericInst): Added
24619         `MonoReflectionType *declaring_type'.
24621         * reflection.c (mono_reflection_bind_generic_parameters): Use
24622         `if (tb->parent)' instead of `klass->parent'.
24624 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
24626         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
24627         with an empty ASSEMBLY table.
24629         * reflection.c (mono_image_build_metadata): Avoid using the same loop
24630         variable in the inner and outer loops.
24632 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
24634         * metadata.h (mono_metadata_make_token): Put parentheses around macro
24635         argument.
24637         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
24638         
24639         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
24640         icalls. Instead, do everything in managed code. This is needed since
24641         it is hard to restore the original domain etc. in unmanaged code in the
24642         presence of undeniable exceptions.
24644         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
24645         New icalls to push and pop appdomain refs.
24647 2003-10-31  Martin Baulig  <martin@ximian.com>
24649         * class.c (inflate_generic_type): Renamed to
24650         mono_class_inflate_generic_type() and made it public.
24652         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
24653         New interncall.
24655         * loader.c (mono_field_from_memberref): Also set the retklass for
24656         typespecs.
24658         * fielder.c (mono_image_get_inflated_field_token): New static
24659         method; creates a metadata token for an inflated field.
24660         (mono_image_create_token, fixup_method): Added support for
24661         "MonoInflatedField".
24662         (fieldbuilder_to_mono_class_field): New static function.
24663         (mono_reflection_inflate_field): New public function.
24665         * reflection.h
24666         (MonoReflectionGenericInst): Added `MonoArray *fields'.
24667         (MonoReflectionInflatedField): New typedef.     
24669 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
24671         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
24672         for Solaris and other platforms without s6_addr16
24674 2003-10-30  Martin Baulig  <martin@ximian.com>
24676         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
24677         argument instead of two.
24678         (mono_class_inflate_generic_signature): Likewise.
24679         (inflate_generic_header): Likewise.
24680         (mono_class_inflate_generic_method): Likewise.  In addition, if
24681         `ginst->klass' is set, it becomes the new `method->klass'.
24683         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
24684         field.
24686         * reflection.c (encode_generic_method_sig): Write a 0xa as the
24687         first byte. [FIXME]
24688         (method_encode_methodspec): If we have generic parameters, create
24689         a MethodSpec instead of a MethodRef.
24690         (fixup_method): Added support for "MonoInflatedMethod" and
24691         "MonoInflatedCtor".
24692         (mono_image_create_token): Added support for "MonoInflatedMethod"
24693         and "MonoInflatedCtor".
24694         (inflated_method_get_object): New static function; returns a
24695         managed "System.Reflection.MonoInflatedMethod" object.
24696         (mono_reflection_bind_generic_method_parameters): Return a
24697         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
24698         (mono_reflection_inflate_method_or_ctor): Likewise.
24699         (mono_image_get_generic_method_param_info): Initialize unused
24700         fields to zero.
24701         (mono_image_get_generic_param_info): Likewise.
24703         * reflection.h (MonoReflectionInflatedMethod): New public
24704         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
24705         "S.R.MonoInflatedCtor" classes.
24707         * loader.c (method_from_memberref): If we're a TypeSpec and it
24708         resolves to a generic instance, inflate the method.
24710 2003-10-28  Dick Porter  <dick@ximian.com>
24712         * object.c (mono_runtime_run_main): Convert command-line arguments
24713         into utf8, falling back to the user's locale encoding to do so.
24715 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
24717         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
24718         at this time.
24720         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
24722         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
24723         up icalls at method definition time. Partially fixes #33569.
24725 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
24727         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
24728         marshalling of arrays. Fixes #50116.
24730         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
24732         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
24733         points to a vtable in the dying appdomain.
24735         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
24736         listeners into unmanaged code inside the lock.
24738         * object.c (mono_class_vtable): Turn off typed allocation in non-root
24739         domains and add some comments.
24741 2003-10-25  Martin Baulig  <martin@ximian.com>
24743         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
24745         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
24747         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
24748         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
24749         currently parsing.  Create the generic class and store it in
24750         `generic_inst->klass' before parsing the type arguments.  This is
24751         required to support "recursive" definitions; see mcs/tests/gen-23.cs
24752         for an example.
24753         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
24754         to support recursive typespec entries.
24756         * class.c (mono_class_setup_parent): If our parent is a generic
24757         instance, we may get called before it has its name set.
24758         (mono_class_from_generic): Splitted into
24759         mono_class_create_from_generic() and mono_class_initialize_generic().
24761 2003-10-25  Martin Baulig  <martin@ximian.com>
24763         * icall.c (ves_icall_Type_BindGenericParameters): Return a
24764         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
24765         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
24766         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
24768         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
24769         (create_typespec): Likewise.
24770         (mono_reflection_bind_generic_parameters): Return a
24771         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
24772         (mono_reflection_inflate_method_or_ctor): New public function.
24774         * reflection.h (MonoReflectionGenericInst): New typedef.        
24776 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
24778         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
24779         inside the domain lock. Fixes #49993.
24780         
24781         * object.c (mono_class_vtable): When typed allocation is used, 
24782         allocate vtables in the GC heap instead of in the mempool, since the
24783         vtables contain GC descriptors which are used by the collector even
24784         after the domain owning the mempool is unloaded.
24786         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
24788         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
24789         reflect what it does. Also invalidate mempools instead of freeing
24790         them if a define is set.
24792         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
24793         of the appdomain.
24794         
24795         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
24796         hold the finalizable objects in this domain.
24798         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
24799         appdomain.
24801         * appdomain.c (mono_domain_set): New function to set the current
24802         appdomain, but only if it is not being unloaded.
24804         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
24805         appdomain which is being unloaded.
24806         
24807         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
24808         unloading of the root appdomain.
24810         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
24811         icall to execute a method in another appdomain. Intended as a 
24812         replacement for InternalSetDomain, which can confuse the code 
24813         generation in the JIT.
24815         * appdomain.c (mono_domain_is_unloading): New function to determine
24816         whenever an appdomain is unloading.
24818         * appdomain.c (mono_domain_unload): New function to correctly unload
24819         an appdomain.
24821         * assembly.c (mono_assembly_load_references): Check that an assembly
24822         does not references itself.
24824         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
24825         domain manually, it asks the finalizer thread to do it, then waits for
24826         the result. Also added a timeout.
24828         * icall.c: Register the new icalls.
24830         * threads.h threads.c: Export the mono_gc_stop_world and 
24831         mono_gc_start_world functions.
24832         
24833         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
24834         function to fill out the mempool with 0x2a.
24836 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
24838         * reflection.h (MonoReflectionMethodAux): New structure to store
24839         information which is rarely used, thus is not in the MonoMethod
24840         structure.
24842         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
24843         store the aux info.
24845         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
24846         and marshalling info into the aux structure.
24848         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
24849         from the aux structure.
24851         * loader.c (mono_method_get_param_names): Retrieve the param names from
24852         the aux structure.
24853         
24854 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
24856         * exception.h exception.c: Add AppDomainUnloadedException && fix 
24857         warning.
24859 2003-10-21  Dick Porter  <dick@ximian.com>
24861         * socket-io.c
24862         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
24863         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
24865 2003-10-21  Martin Baulig  <martin@ximian.com>
24867         * reflection.c (mono_reflection_bind_generic_parameters):
24868         `klass->parent' is NULL for interfaces.
24870 2003-10-21  Martin Baulig  <martin@ximian.com>
24872         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
24874 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
24876         * exception.c (mono_exception_from_name_msg): New helper function for
24877         creating exceptions and initializing their message field.
24879         * exception.c: Simplify functions using the new helper.
24881         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
24882         New function.
24884         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
24885         mono_raise_exception, since otherwise gcc doesn't generate the function
24886         epilog for raise_exception, confusing the stack unwinding in the JIT.
24887         Fixes #45043.
24889         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
24890         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
24891         Fixes #49499.
24893 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24895         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
24896         utf8.
24898 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
24900         * icall.c: Removed GetUninitializedObject method because
24901           AllocateUninitializedClassInstance does the same.
24903 2003-10-18  Martin Baulig  <martin@ximian.com>
24905         * class.c (inflate_generic_signature): Renamed to
24906         mono_class_inflate_generic_signature() and made it public.
24907         (my_mono_class_from_generic_parameter): New static function; if we
24908         don't already have the generic parameter's MonoClass, create a
24909         very simple one which is just used internally in the runtime and
24910         not passed back to managed code.
24912         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
24914         * metadata.h (MonoMethodSignature): Moved the
24915         `MonoGenericParam *gen_params' to the MonoMethodHeader.
24916         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
24918         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
24919         ves_icall_MonoMethod_GetGenericArguments(); this is now an
24920         interncall on the MonoMethod class, not on MethodInfo.
24921         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
24922         calling mono_reflection_bind_generic_method_parameters() directly.
24924         * loader.c (mono_method_get_signature): If this is a MethodSpec;
24925         return the already computed `method->signature'.
24926         (method_from_methodspec): New static function to load a method
24927         from a MethodSpec entry.
24928         (mono_get_method_from_token): Call the new method_from_methodspec()
24929         for MethodSpec tokens.  
24930         (mono_get_method_from_token): If we're a generic method, load the
24931         type parameters.
24933         * reflection.c (mono_image_get_memberref_token): Allow
24934         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
24935         table.
24936         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
24937         (mono_image_create_token): First check whether it's a generic
24938         method (so we'd need to create a MethodSpec), then do the other
24939         two alternatives.
24940         (mono_reflection_bind_generic_method_parameters): Return a
24941         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
24942         called directly from the interncall.
24944 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
24946         * reflection.c (load_public_key): Move loading of the public key
24947         into managed code.
24949         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
24951         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
24952         fields.
24954         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
24955         culture, hash_alg and public_key. Fixes #49555.
24957 2003-10-17  Martin Baulig  <martin@ximian.com>
24959         * class.h (MonoGenericInst): Moved this declaration here and added
24960         `MonoMethod *generic_method'.
24962         * icall.c
24963         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
24964         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
24966         * metadata.c (mono_metadata_type_equal): Two types of
24967         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
24968         index; ie. don't compare the address of the `MonoGenericParam'
24969         structure.
24970         (mono_metadata_load_generic_params): Removed the `MonoMethod
24971         *method' argument.
24973         * metadata.h (MonoGenericInst): Moved declaration to class.h.
24974         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
24976         * reflection.c (method_encode_signature): Encode the number of
24977         generic parameters.
24978         (encode_generic_method_sig): New static function.
24979         (method_encode_methodspec): New static function; creates an entry
24980         in the MethodSpec table for a generic method.
24981         (mono_image_get_methodspec_token): New static function.
24982         (mono_image_create_token): Call mono_image_get_methodspec_token()
24983         for generic methods.
24984         (mono_reflection_bind_generic_method_parameters): New public
24985         function.  Instantiates a generic method.
24987 2003-10-16  Martin Baulig  <martin@ximian.com>
24989         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
24990         *gen_params' here from MonoMethodHeader.
24992         * metadata.c (mono_metadata_parse_method_signature): If we have
24993         generic parameters, initialize `method->gen_params' and then set
24994         the correct `type->data.generic_param' in all the parameters.
24996 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
24998         * threads.c (mono_threads_get_default_stacksize): New function to 
24999         return the default stacksize.
25001         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
25002         termination of the finalizer thread, since the previous method had
25003         race conditions. Fixes #49628.
25005         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
25006         as for the other managed threads.
25008 2003-10-16  Martin Baulig  <martin@ximian.com>
25010         * class.c (inflate_generic_signature): Copy `generic_param_count'
25011         and `gen_params'.
25013         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
25014         New interncall.
25016         * metadata.c (mono_metadata_parse_method_signature): Actually set
25017         the `method->generic_param_count' here.
25018         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
25020 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
25022         * object.h: Add a new field to TypedRef to simplify the implementation
25023         of the REFANY opcodes in the JIT.
25025         * icall.c: Make use of the new field.
25027         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
25028         dynamically.
25030 2003-10-15  Martin Baulig  <martin@ximian.com>
25032         * class.c (mono_class_from_gen_param): Renamed to
25033         mono_class_from_generic_parameter() and moved most of the
25034         functionality from mono_reflection_define_generic_parameter()
25035         here; ie. we create a "real" class here.
25036         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
25037         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
25038         previously been called.
25040         * class.h (MonoGenericParam): Moved the declaration of this struct
25041         here from metadata.h and added `MonoMethod *method'.
25043         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
25044         interncall.
25046         * loader.c (mono_get_method_from_token): If we have any generic
25047         parameters, call mono_metadata_load_generic_params() to read them
25048         from the MONO_TABLE_GENERICPAR.
25050         * metadata.c (mono_metadata_load_generic_params): Added
25051         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
25053         * metadata.h (MonoMethodSignature): Replaced
25054         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
25055         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
25057         * reflection.c (mono_reflection_define_generic_parameter): Moved
25058         most of the functionality into the new
25059         mono_class_from_generic_parameter(); set the `method' field if
25060         we're a method parameter.       
25062 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
25064         * marshal.c (emit_struct_conv): if native size is 0
25065         emit no code.
25067 2003-10-14  Martin Baulig  <martin@ximian.com>
25069         * icall.c: The generics API has changed in the spec since it was
25070         added to System.Type; these modifications make it match the spec
25071         again.
25072         (ves_icall_Type_GetGenericParameters): Renamed to
25073         `ves_icall_Type_GetGenericArguments'.
25074         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
25075         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
25076         `ves_icall_MonoType_get_HasGenericArguments'.
25077         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
25078         `ves_icall_MonoType_get_IsGenericParameter'.
25079         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
25080         this is no interncall anymore.
25081         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
25082         `ves_icall_TypeBuilder_get_IsGenericParameter'.
25084 2003-10-14  Martin Baulig  <martin@ximian.com>
25086         * reflection.c (mono_reflection_bind_generic_parameters): Also
25087         inflate generic methods if we're reading the class from IL.
25089 2003-10-13  Martin Baulig  <martin@ximian.com>
25091         * reflection.c (mono_reflection_define_generic_parameter): This
25092         method isn't called directly from the icall anymore; take a
25093         `MonoReflectionAssemblyBuilder *' so we can use this for type and
25094         method generic parameters.
25095         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
25096         (method_builder_encode_signature): Encode generic parameters.
25097         (mono_image_get_method_info): Write generic params to the
25098         MONO_TABLE_GENERICPARAM table.
25100         * reflection.h (MonoReflectionMethodBuilder): Added
25101         `MonoArray *generic_params'.
25103         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
25105         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
25106         wrapper for mono_reflection_define_generic_parameter().
25107         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
25109 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
25111         * marshal.h: Add missing function to fix build.
25113         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
25114         the SetLastError pinvoke attribute.
25116         * marshal.c (mono_marshal_set_last_error): New helper function called
25117         by the generated code.
25118         
25119         * marshal.c (mono_mb_emit_branch): New helper function.
25121         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
25123         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
25124         classes as parameters and return values of delegates. Fixes #29256. 
25126 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
25128         * locales.c: use gint32 in non HAVE_ICU case
25130 2003-10-11  Martin Baulig  <martin@ximian.com>
25132         * mono-debug.c (mono_debug_add_method): Added a workaround for
25133         bug #48591.
25135 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
25137         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
25138         delegates passed to native code must use the STDCALL calling 
25139         convention. Fixes #35987.
25141 2003-10-10  Martin Baulig  <martin@ximian.com>
25143         * class.c (inflate_generic_type): If we're inflating for a generic
25144         type instance (and not for a generic method), return
25145         MONO_TYPE_MVAR unchanged.
25147 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25149         * string-icalls.c: Join ignores null strings in the source array.
25150         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
25151         * threads.c: GetAvailableTheads is slightly more accurate.
25153 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
25155         * threads.h threads.c : add mono_threads_set_default_stacksize
25156         and pass default to CreateThread calls.
25158 2003-10-09  Dick Porter  <dick@ximian.com>
25160         * icall.c:
25161         * locales.h:
25162         * locales.c: Internal calls for constructing CultureInfo and
25163         related objects from libicu (if its available.)
25165 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
25167         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
25169 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25171         * threadpool.c: added an argument to async_invoke_thread that is the
25172         item to process, pass the MonoAsyncResult to the thread start function
25173         when creating a new thread. This way we don't need to acquire any lock
25174         when we're creating a new thread. Readded a semaphore for faster
25175         response times (instead of that Sleep i added).
25177 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
25179         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
25180         get daylight change dates better on Windows, fix handling
25181         of platforms without tm_gmtoff.
25183 2003-10-06  Martin Baulig  <martin@ximian.com>
25185         * class.c (inflate_generic_method): Renamed to
25186         mono_class_inflate_generic_method() and made public.
25187         (mono_class_init): Don't inflate the generic methods here.
25188         (mono_class_from_generic): Added `gboolean inflate_methods'
25189         argument.  Inflate the methods here.
25191         * loader.c (mono_method_get_param_names): Ignore instances of
25192         generic types for the moment.
25194         * reflection.c (fixup_method): Added support for inflated methods.
25195         (mono_image_create_token): Use mono_image_get_methodref_token()
25196         for inflated methods.
25197         (mono_custom_attrs_from_param): Ignore instances of generic types
25198         for the moment.
25199         (mono_reflection_bind_generic_parameters): New public function.
25200         Moved all the functionality from
25201         ves_icall_Type_BindGenericParameters() here and added support for
25202         dynamic types.
25203         (mono_reflection_define_generic_parameter): Initialize
25204         `klass->methods' here.
25206         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
25207         functionality into mono_reflection_define_generic_parameter().
25208         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
25209         TypeBuilder, return that TypeBuilder.
25211 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25213         * appdomain.c: removed mono_delegate_semaphore.
25215         * threadpool.c:
25216         (mono_thread_pool_add): moved hash table creation inside and the thread 
25217         creation outside of the critical region.
25218         (mono_thread_pool_finish): removed obsolete code.
25219         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
25220         continue or exit the thread depending on the queue.
25222 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
25224         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
25225         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
25226         handle more bool marshalling options
25228 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
25230         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
25231         arrays of structs. Also add a more descriptive error message when
25232         a structure member is marshalled as LPArray.
25234 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
25236         * marshal.c (mono_marshal_get_native_wrapper): Add support for
25237         marshalling arrays of complex types. Fixes #29098. Also remove an
25238         usused and incomplete function.
25240 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
25242         * gc.c: report heap_size - free_bytes as total memory allocated
25243         (bug#49362).
25245 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
25247         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
25248         fix timezone handling problems on Windows.
25249         
25250         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
25251         asserts when the year is outside the range handled by ms the functions.
25253         * class.c (setup_interface_offsets): If the class is an interface,
25254         fill out its interface_offsets slot.
25256 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25258         * threadpool.c: mark threadpool threads as background.
25260 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
25262         * decimal.c - define DECINLINE to nothing if not using GCC
25264 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
25266         * assembly.c: More refcount fixes.
25268 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25270         * string-icalls.c: if we're not trimming, return the same string.
25271         When not splitting, don't create a new string.
25273 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25275         * image.c:
25276         (mono_image_open): increment the ref_count inside the critical section.
25278 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
25280         * image.c (mono_image_open): Fix reference counting bug.
25282 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
25284         * marshal.c (mono_marshal_type_size) struct alignment changed for 
25285         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
25286         64bits. Avoid leak in mono_marshal_get_native_wrapper when
25287         mono_lookup_pinvoke_call throws.        
25289 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
25291         * reflection.c (mono_reflection_parse_type): Fix #49114.
25293         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
25294         temporary workaround for cygwin header problem.
25296         * object.c (mono_object_isinst): Synchronize this with the code
25297         generated by the JIT for casts.
25299 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
25301         * reflection.c (encode_type): Fix #38332.
25303 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
25305         * marshal.c (mono_marshal_method_from_wrapper): New function to return
25306         the original method from the wrapper method.
25308 2003-09-25  Martin Baulig  <martin@ximian.com>
25310         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
25311         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
25312         (ves_icall_Type_get_IsGenericInstance): New interncall.
25314 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
25316         * object.c: fix cast warning in big endian code.
25318 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
25320         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
25321         
25322 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25324         * assembly.c: don't call check_env from mono_assembly_load. It's
25325         already done once in mono_assemblies_init and may cause headaches when
25326         multiple threads are loading assemblies.
25328 2003-09-19  Martin Baulig  <martin@ximian.com>
25330         * reflection.c (mono_reflection_define_generic_parameter): Don't
25331         allocate `klass->methods', set `klass->flags' to
25332         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
25334 2003-09-18  Martin Baulig  <martin@ximian.com>
25336         * class.c (mono_class_init): Don't create `class->methods' if it's
25337         already initialized.
25339         * metadata.c (mono_metadata_load_generic_params): Make this
25340         actually work.
25342         * reflection.c (mono_reflection_define_generic_parameter): Set
25343         parent class and interfaces from the constraints.
25345         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
25346         to keep this struct in sync with the declaration in TypeBuilder.cs.
25348 2003-09-17  Martin Baulig  <martin@ximian.com>
25350         * metadata.h (MonoType): Replaced the data's `int type_param'
25351         field with `MonoGenericParam *generic_param'.
25352         (MonoGenericParam): Added `MonoClass *klass'.
25354         * class.c (mono_class_from_gen_param): Removed the
25355         `MonoImage *image' and `int type_num' arguments.
25357         * metadata.c (mono_metadata_parse_generic_param): New static
25358         method; creates a MonoGenericParam which just contains the index.
25359         (do_mono_metadata_parse_type): Call
25360         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
25361         MONO_TYPE_MVAR.
25363         * reflection.c (mono_image_typedef_or_ref): Generic type
25364         parameters may be in the same assembly, but never use a typedef
25365         for them.
25366         (mono_reflection_define_generic_parameter): We're now creating a
25367         "real" class for the type parameter; it's now safe to call
25368         mono_class_from_mono_type() on the class'es type, it'll do the
25369         right thing.
25371 2003-09-16  Martin Baulig  <martin@ximian.com>
25373         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
25374         `symfile->range_entry_size' and `symfile->class_entry_size' here;
25375         the `symfile' data structure must be fully initialized before it
25376         gets added to the table.
25378 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
25380         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
25382         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
25383         class init trampolines.
25385 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
25387         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
25388         to the built-in profiler to turn off time and allocation profiling
25389         respectively.
25391 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
25393         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
25394         g_direct_equal.
25396         * debug-helpers.c (mono_method_full_name): Print the wrapper type
25397         in human readable form.
25399 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
25401         * reflection.c icall.c: Fixed warnings.
25403         * image.c (load_class_names): Use a temporary hash table to hold the
25404         namespaces in order to avoid doing many string comparisons.
25406         * image.h: Fix typo.
25408         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
25409         Pass NULL instead of g_direct_equal to the GHashTable constructor 
25410         since the NULL case is short-circuited inside g_hash_table_lookup, 
25411         leading to better performance.  
25413         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
25414         obtain the first custom attribute for a given index. Depends on the
25415         CustomAttribute table being sorted by the parent field.
25417         * reflection.c (mono_custom_attrs_from_index): Use the new function 
25418         for better performance.
25420 2003-09-07  Martin Baulig  <martin@ximian.com>
25422         * class.c (mono_class_init): If we're a generic instance, inflate
25423         all our methods instead of loading them from the image.
25424         (mono_class_from_generic): Set `class->methods = gklass->methods'.
25426 2003-09-07  Martin Baulig  <martin@ximian.com>
25428         * mono-debug-debugger.c: Added support for constructors.
25430 2003-09-06  Martin Baulig  <martin@ximian.com>
25432         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
25433         New interncall.
25435         * reflection.c (mono_reflection_setup_generic_class): Call
25436         ensure_runtime_vtable() to create the vtable.
25438 2003-09-05  Martin Baulig  <martin@ximian.com>
25440         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
25441         MONO_TYPE_MVAR.
25443 2003-09-04  Martin Baulig  <martin@ximian.com>
25445         * reflection.c (mono_reflection_define_generic_parameter): Generic
25446         parameters start with zero.
25448 2003-09-04  Martin Baulig  <martin@ximian.com>
25450         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
25452         * reflection.h (MonoReflectionGenericParam): New typedef.
25453         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
25454         the generic parameters from the managed TypeBuilder.
25456         * reflection.c (mono_reflection_define_generic_parameter): New function.
25457         (mono_reflection_create_runtime_class): Encode generic parameters.
25458         (mono_reflection_setup_generic_class): New function; this is
25459         called after adding adding all generic params to the TypeBuilder.
25460         (encode_type): Added MONO_TYPE_VAR.
25462 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
25464         * class.h class.c (mono_class_needs_cctor_run): Moved this method
25465         here from the JIT.
25467         * assembly.h assembly.c: Moved the AOT loading code into an assembly
25468         load hook.
25470 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
25472         * reflection.h reflection.c class.h class.c: Delete duplicate 
25473         definition of mono_type_get_name () from reflection.c and export the
25474         one in class.c.
25476         * class.c: Class loading fixes from Bernie Solomon 
25477         (bernard@ugsolutions.com).
25479         * reflection.c: Endianness fixes from Bernie Solomon 
25480         (bernard@ugsolutions.com).
25481         
25482 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
25484         * assembly.h assembly.c: Define a file format version for AOT
25485         libraries.
25486         
25487         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
25489         * appdomain.h (MonoJitInfo): New field to determine whenever the
25490         code is domain neutral.
25491         
25492 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
25494         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
25496 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
25498         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
25499         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
25500         Avoid caching the result since strings must be domain specific. Fixes
25501         #48050.
25503 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
25505         * marshal.c (mono_marshal_init): Make this callable multiple times
25506         since it is hard to find a correct place to call it.
25508         * object.c (mono_runtime_class_init): Execute static constructors in
25509         the correct appdomain.
25511         * image.c (build_guid_table): Handle the case when multiple images have
25512         the same GUID.
25514 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25516         * icall.c: added a couple of icalls for System.Web.
25518 2003-08-28  Martin Baulig  <martin@ximian.com>
25520         * icall.c (ves_icall_Type_BindGenericParameters): Use
25521         `klass->generic_inst' instead of `&klass->byval_arg' in the
25522         mono_type_get_object() call.  The returned type must be
25523         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
25525 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
25527         * NOTES: New file.
25529         * object.c (mono_class_proxy_vtable): Make it thread safe.
25531         * pedump.c: Fix warning.
25533         * object.c appdomain.h: Get rid of metadata_section. 
25534         It is no longer needed and it was causing deadlocks with domain->lock.
25536         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
25538 2003-08-26  Martin Baulig  <martin@ximian.com>
25540         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
25542 2003-08-26  Martin Baulig  <martin@ximian.com>
25544         * pedump.c (main): Call mono_metadata_init(),
25545         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
25546         and mono_loader_init().
25548 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
25550         * loader.h: Add missing include to fix build.
25552         * image.h: mono_image_load_references is no more.
25554         * assembly.c: Reworked assembly loading to make it really thread safe.
25555         After these changes, the assembly returned by mono_assembly_open is
25556         fully initialized, i.e. all its references assemblies are loaded.
25558         * assembly.c (mono_image_load_references): Renamed to 
25559         mono_assembly_load_references, and made private, since clients no
25560         longer need to call it.
25562         * class.c: Removed calls to mono_assembly_load_references, since it was
25563         a source of deadlocks.
25565         * loader.h loader.c class.h class.c: Protect data structures using a 
25566         new lock, the loader lock.
25568         * class.c (mono_class_setup_vtable): Create temporary hash tables and
25569         GPtrArrays only when needed.
25571         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
25572         into empty structures by mcs. Fixes pinvoke7.cs.
25573         
25574         * domain.c (mono_init): Call a new initialization function.
25576         * appdomain.c (mono_runtime_init): Call the new initializer function
25577         of the marshal module.
25579         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
25580         inserted into empty structures by mcs. Fixes pinvoke7.cs.
25582         * marshal.h marshal.c: Added locks around the wrapper caches to make
25583         this module thread safe.
25585         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
25586         this argument. Fixes pinvoke1.exe.
25588 2003-08-25  Lluis Sanchez <lluis@ximian.com>
25590         * object.h: Added call_type field to MonoMethodMessage and the corresponding
25591         enumeration of values. Removed fields to store remote call output values in
25592         MonoAsyncResult. Not needed any more.
25593         * object.c: Initialize call_type and async_result fields in mono_message_init.
25594         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
25595         dispatching the message.
25596         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
25597         async call to finish. To do it use a message with EndInvoke call type.
25599 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
25601         * loader.h loader.c (mono_method_hash_marhal_info): New function which
25602         determines whenever a method has marshalling info.
25604 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25606         * assembly.c: fix the build on windows.
25608 2003-08-22 Lluis Sanchez <lluis@ximian.com>
25610         * object.cs: Fixed bug #47785.
25612 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
25614         * string-icalls.c (StringReplace): If their are no occurances of
25615         the old string found return a reference to the supplied
25616         string. This saves some memory and matches MS behavoir.
25617         
25618 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25620         * socket-io.c: fixed compilation for systems that define AF_INET6
25621         and don't define SOL_IP/SOL_IPV6.
25623 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
25625         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
25626         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
25628         * rawbuffer.c rawbuffer.h: Make this module thread safe.
25630         * domain.c: Make this module thread safe.
25632         * domain.c (mono_init): Call new initialization function.
25634         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
25635         reference types too. Fixes #38812.
25637         * image.c (mono_image_init): Fixed warnings.
25639         * class.c (mono_class_from_typeref): Handle assembly load failure
25640         correctly.
25642         * appdomain.c (add_assemblies_to_domain): Handle the case when
25643         the references of an assembly are not yet loaded.
25645         * metadata.c image.c assembly.c: Moved initialization of global
25646         variables to a separate function called at startup since lazy 
25647         initialization of these variables is not thread safe.
25648         
25649         * image.c assembly.c: Made this module thread safe by adding locks in 
25650         the appropriate places.
25652         * domain.c (mono_init): Call the new initialization functions of the
25653         three modules.
25655 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
25657         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
25658           make a direct call. It is proxy's work to make the call asynchronous.
25659           mono_delegate_end_invoke(): If the targe is a proxy, just collect
25660           the return values.
25661         * object.cs: mono_method_call_message_new(): read AsyncResult and
25662           state object from parameters list, if this info is requested.
25663         * object.h: Added fields to store remote call output values in
25664           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
25666 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25668         * object.h: add needed fields to MonoThread.
25669         * threads.c, threads.h: allow registering a function to cleanup data
25670         allocated per thread by the JIT.
25672 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25674         * loader.h: portability fix by Bernie Solomon
25675         * <bernard@ugsolutions.com>.
25677 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
25679         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
25680         return a MonoArray. This simplifies the code and also ensures that
25681         the cache allways contains an object reference as a value.
25683         * icall.c (ves_icall_get_parameter_info): Simplified using the new
25684         function.
25686 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25688         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
25689         fixes a problem with byte ordering when getting the address family for
25690         a socket.
25692 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
25694         * .cvsignore: Added monosn.
25696         * reflection.h reflection.c loader.c: Added support for parameter
25697         marshalling to dynamically created types. Fixes #47295.
25699 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
25701         * rand.c: remove useless warnings.
25703 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25705         * class.c: implemented ldtoken for methods and fieldrefs.
25707 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25709         * threadpool.c: when mono_async_invoke was called, no one took care of
25710         monitoring the queue. So if the method invoked took some time and we
25711         got new async invoke requests after 500 ms (the thread created waited
25712         that long in WaitForSingleObject), the new async invoke was not called
25713         until the previous one finished.
25715         This is fixed now. Thanks to Totte for helping with it.
25717 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25719         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
25721 2003-08-11  Martin Baulig  <martin@ximian.com>
25723         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
25725 2003-08-06  Martin Baulig  <martin@ximian.com>
25727         * mono-debug-debugger.c: Added support for static fields,
25728         properties and methods.
25730 2003-08-06  Martin Baulig  <martin@ximian.com>
25732         * mono-debug-debugger.c: Don't store the MonoString's vtable to
25733         make this work for applications with multiple application domains.
25735 2003-08-04  Martin Baulig  <martin@ximian.com>
25737         * mono-debug-debugger.c: Completely reworked the type support; the
25738         most important thing is that we're now just using one single
25739         `MonoType' instance per type.
25741 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
25743         * mono-endian.h, mono-endian.c, icall.c: Added icall
25744         ves_icall_System_Double_AssertEndianity to assert double word endianity
25745         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
25747 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25749         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
25750         support, icalls and fixes.
25752 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
25754         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
25755         classes that are a punctuation character in .NET is not the same a
25756         g_unichar_ispunct.
25758 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25760         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
25762 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
25764         * icall.c: Add new MemCopy internalcall.
25765         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
25766         Simplified code; It is not necessary to handle all the cases here,
25767         as the C# code takes care of it.  Only handle the case of the name
25768         resource embedded into the assembly.
25770         Changed signature to return the data pointer and the size of the
25771         data. 
25773 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
25775         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
25776         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
25778 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
25780         * socket-io.c: ignore EINTR error in select.
25782 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
25784         * class.h, class.c: removed unused subclasses field in MonoClass.
25786 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
25788         * icall.c: improve fix of get_base_definition(). If the parent class
25789           doesn't have the mehod, look at the parent of the parent.
25790         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
25791           to check if a parameter is an in or out parameter
25792           (PARAM_ATTRIBUTE_IN is not set by default).
25793           mono_method_return_message_restore(): Use mono_class_value_size to
25794           get the size of a value type. mono_type_stack_size (parameterType)
25795           does not return the correct value if parameterType is byRef.
25796           mono_load_remote_field(), mono_load_remote_field_new(),
25797           mono_store_remote_field(), mono_store_remote_field_new():
25798           raise exception if the remote call returns an exception.
25800 2003-07-28  Martin Baulig  <martin@ximian.com>
25802         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
25803         method.  This is a wrapper around mono_runtime_invoke() which
25804         boxes the instance object if neccessary.
25806 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
25808         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
25809         metadata.h, row-indexes.h, verify.c: first cut of generics support.
25811 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25813         * icall.c: disable mcs bug workaround.
25815 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
25817         * object.c (mono_runtime_class_init): Take the metadata_section
25818         mutex before obtaining the domain mutex.
25820         * appdomain.h: Added definition of metadata_section mutex here. 
25822         * object.c: define metadata_mutex here.
25824 2003-07-24  Ravi Pratap  <ravi@ximian.com>
25826         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
25827         fixed.
25829 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
25831         * reflection.c: Fix bug #46669
25833 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25835         * exception.c:
25836         * exception.h:
25837         * icall.c:
25838         * object.h: fill in the type name for TypeLoadException.
25840 2003-07-23  Ravi Pratap  <ravi@ximian.com>
25842         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
25843         relationship between TypeBuilders while compiling corlib) and bug
25844         45993 (Array types returned from the runtime while compiling
25845         corlib were from the loaded corlib).
25847 2003-07-22  Martin Baulig  <martin@ximian.com>
25849         * mono-debug-debugger.c: Reworked the type support a bit more;
25850         distinguish between types and classes.
25852 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
25854         * icall.c: add IsArrayImpl icall.
25856 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
25858         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
25859         initializing real_size only once. Also fix bug #46602.
25861 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
25863         * object.c: Renamed mono_metadata_section to metadata_section.
25865 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
25867         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
25868           empty array if the type is an array. Fixed.
25869           ves_icall_MonoMethod_get_base_definition: if the base method
25870           is abstract, get the MethodInfo from the list of methods of
25871           the class.
25872         * reflection.c: ParameterInfo.PositionImpl should be zero-based
25873           and it was 1-based. Fixed in mono_param_get_objects.
25875 2003-07-20  Martin Baulig  <martin@ximian.com>
25877         * mono-debug.h: Set version number to 31.
25878         (mono_debug_init): Added `MonoDomain *' argument.
25880         * mono-debug-debugger.c: Reworked the type support; explicitly
25881         tell the debugger about builtin types; pass the `klass' address to
25882         the debugger.
25884 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
25886         * image.c: Allow new metadata tables to be loaded without a
25887         warning. Also update the warning message to give the new constant value.
25888                 
25889 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
25891         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
25892         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
25893         array type representation changes.
25895 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
25897         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
25898         on Environment.Exit () call.
25900 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
25902         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
25903         requires a matching corlib.
25905 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
25907         * Changelog: My editor decided to add a CR to each line. Sorry about that.
25908           Committed again without the CRs.
25909         
25910 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
25912         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
25913           getting it from the "this" socket instance. Did not work
25914           if the socket is a subclass of Socket.
25915           Also fixed bug #35371.
25917 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
25919         * metadata.c: fixed size for TypedByRef.
25920         * loader.c: when searching for a method, consider the vararg amrker.
25921         * unicode.c, decimal.c: constify some arrays.
25923 2003-07-15  Dick Porter  <dick@ximian.com>
25925         * socket-io.c: Fixed compilation for gcc < 3.2.
25927         Fixed compilation for machines that don't have AF_INET6 (thanks to
25928         Bernie Solomon <bernard@ugsolutions.com> for that part.)
25930         Fixed compile warnings.
25931         
25932         Fixed formatting and line endings.
25934 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
25936         * socket-io.h:
25937         * socket-io.c: Added IPv6 support.
25939 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
25941         * class.c (mono_class_is_assignable_from): New function to implement
25942         the is_assignable_from logic. Used by mono_object_isinst, 
25943         Type::IsAssignableFrom () and the interpreter.
25945         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
25946         Object, even interfaces.
25947         
25948         * object.c (mono_object_isinst): Implement in terms of 
25949         is_assignable_from.
25951         * icall.c (ves_icall_type_is_assignable_from): New icall.
25953 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
25955         * domain.c (foreach_domain): fix compiler warning.
25957 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
25959         * image.c (load_metadata_ptrs): use g_strndup because strndup is
25960         not available on all plattforms
25962 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
25964         * image.h image.c: Store the metadata version string in MonoImage.
25965         * icall.c: New icall to retrieve the image version.
25966         * reflection.c (create_dynamic_image): Fill in the image version field
25967         * reflection.c (build_compressed_metadata): Use the image version
25968         from the image structure.
25970 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25972         * appdomain.c: modified comment.
25973         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
25974         That will be its last iteration when mono_gc_cleanup is called from
25975         mono_runtime_cleanup and before the domain is unloaded.
25977         Fixes bug #45962.
25979 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
25981         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
25982         attributes.
25984 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
25986         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
25987         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
25988         Bernie Solomon <bernard@ugsolutions.com>.
25990 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
25992         * object.c, object.h: provide mono_object_new_fast() for faster
25993         allocation in some special cases.
25995 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
25997         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
25998         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
26000 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
26002         * threadpool.c: fix leaks.
26004 2003-07-01  Dick Porter  <dick@ximian.com>
26006         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
26007         using MonoGHashTables.  Fixes threadpool bug posted to list.
26009 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
26011         * image.h, image.c: added support to load an assembly from a byte array.
26012         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
26013         assembly bundle support.
26015 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
26017         * threadpool.c (mono_thread_pool_add): keep a reference to the
26018         AsyncResult to prevent GC
26020 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
26022         * class.c: leak fix.
26024 2003-06-25  Dick Porter  <dick@ximian.com>
26026         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
26027         for the async object, the WaitHandle object will close the handle.
26028         Fixes bug 45321.
26030 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
26032         * class.c: in mono_array_class_get (), lookup from the hash with the
26033         same type we insert: this works around a bug in
26034         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
26035         lluis. The real fix will have to wait for after the release.
26037 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
26039         * icall.c: fix memory leak when getting type members.
26041 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
26043         * reflection.c: added more pubtoken special cases.
26045 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
26047         * class.c: handle field offset correctly when class size
26048         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
26050 2003-06-20  Martin Baulig  <martin@ximian.com>
26052         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
26053         *image' field.
26055 2003-06-20  Martin Baulig  <martin@ximian.com>
26057         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
26059 2003-06-20  Martin Baulig  <martin@ximian.com>
26061         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
26062         just distinguish between variables in registers and variables at
26063         an offset relative to a register.
26065 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26067         * icall.c: #ifdef out latest changes until mcs is fixed.
26069 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
26071         * icall.c: return members in metadata order.
26073 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
26075         * icall.c: avoid infinite loop in GetTimeZoneData.
26077 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
26079         * icall.c: added Marshal.Prelink/All icalls.
26081 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
26083         * object.c, object.h: fix warnings and do some overflow checking
26084         when creating arrays.
26086 2003-06-17  Dick Porter  <dick@ximian.com>
26088         * file-io.h:
26089         * file-io.c: File attributes need to be tweaked slightly when
26090         passed from the managed to the w32 world.
26092 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
26093         * profiler.h profiler-private.h profiler.c: Rework last patch
26094         based on suggestion by Paolo.
26095         
26096 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
26098         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
26099         instruction level coverage data collection.
26100         * profiler.h profiler.c (: Added new callback function which can be
26101         used by the profiler to limit which functions should have coverage
26102         instrumentation.
26103         * profiler.c (mono_profiler_load): Call g_module_build_path to
26104         generate the file name of the profiler library.
26106 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
26108         * profiler.c, profiler.h, profiler-private.h: added basic block 
26109         coverage profiling API.
26111 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
26113         * reflection.c (mono_reflection_create_runtime_class): Add support
26114         for events in dynamically generated code.
26116         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
26117         not allocated.
26119 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
26121         * icall.c: when getting timezone info, return reasonable values if we
26122         can't get the actual data.
26124 2003-06-14  Dick Porter  <dick@ximian.com>
26126         * threads.c (start_wrapper): Remove the reference to the thread
26127         object in the TLS data, so the thread object can be finalized.
26128         This won't be reached if the thread threw an uncaught exception,
26129         so those thread handles will stay referenced :-( (This is due to
26130         missing support for scanning thread-specific data in the Boehm GC
26131         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
26133 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
26135         * reflection.c: ensure streams and tables are first allocated with
26136         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
26138 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
26140         * icall.c: fixed GetElementType for byrefs (bug# 44792).
26142 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
26144         * reflection.c (mono_reflection_create_runtime_class): Add support for
26145         properties to dynamically created classes.
26146         * reflection.c: Fix a few places where non-MonoObjects were inserted
26147         into the tokens hashtable.
26149 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
26151         * object.c: some support to handle out of memory exceptions.
26153 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
26155         * marshal.c (mono_marshal_get_native_wrapper): support reference
26156         return types
26158 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
26160         * object.h, object.c: more portability stuff from Bernie Solomon.
26161         Unexport mono_object_allocate(). Added mono_object_unbox ().
26162         Set exitcode when an unhandled exception is thrown.
26164 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
26166         * marshal.c (mono_marshal_get_native_wrapper): use custom
26167         marshaler for return types.
26169 2003-06-10  Dick Porter  <dick@ximian.com>
26171         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
26172         ip_mreq is available
26174 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
26176         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
26177         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
26178         by Bernie Solomon <bernard@ugsolutions.com>.
26180 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
26182         * gc.c (mono_gc_init): Avoid error message on shutdown when
26183         GC_DONT_GC=1 is used.
26185         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
26186         New icall to return the GUID of a module.
26188 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
26190         * class.c: ensure instance size always includes the parent's size
26191         even whem class size is set explicitly (fixes bug#44294).
26193 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
26195         * profiler.h, profiler.c: made the simple profiler thread-safe,
26196         get more accurate timing info. Allow the loading of an
26197         externally-developed profiler module.
26199 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
26201         * marshal.c (mono_marshal_get_native_wrapper): improved
26202         class/byref arguments.
26203         (mono_marshal_get_native_wrapper): better string marshaling support.
26205 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
26207         * class.c: ensure .pack and .size are handled correctly and
26208         simplified layout of static fields.
26210 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
26212         * appdomain.c
26213         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
26215         * loader.c (mono_lookup_pinvoke_call): look for modules in the
26216         current directory (fix bug 44008)
26218 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
26220         * marshal.c (mono_marshal_get_native_wrapper): started support for
26221         custom marshalers.
26222         (mono_delegate_to_ftnptr): consider marshalling specifications
26224 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
26226         * reflection.c, reflection.h: emit custom marshal info.
26228 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26230         * object.c: free the GError.
26231         * icall.c: added CloseEvent_internal.
26232         * threads.[ch]:
26233         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
26234         call.
26236 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
26238         * loader.c (mono_method_get_signature): Add support for dynamic
26239         assemblies.
26241 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
26243         * reflection.c: fixed bug #43905.
26245 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
26247         * class.c, domain.c, icall.c, metadata.h, object.h: support for
26248         handling TypedReference and ArgIterator.
26249         * loader.c, loader.h: added function to get signature at call site.
26251 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
26253         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
26254         data readonly. Buglets and warning fixes. Some MethodSpec support.
26256 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
26258         * class.h, class.c, object.c: remove relative numbering support.
26260 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
26262         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
26263         free the string, until we get a chance to fix Gtk#
26265 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26267         * marshal.c: revert last patch.
26269 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
26271         * icall.c: updates for new mono_class_vtable() not calling
26272         the type constructor anymore.
26274 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
26276         * object.h, object.c: separate vtable creation from type
26277         initialization. Make running the .cctor thread safe.
26279 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
26281         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
26283 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
26285         * loader.c (mono_get_method): consider calling convention
26287 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
26289         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
26290         to return the invisible global type for a module.
26292         * reflection.c (mono_image_build_metadata): Emit global fields too.
26294 2003-05-20  Peter Williams  <peterw@ximian.com>
26296         * loader.c (mono_lookup_internal_call): Add a few newlines.
26298 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
26300         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
26301         literal strings.
26303         * appdomain.c (set_domain_search_path): Recalculate search path when
26304         AppDomainSetup.PrivateBinPath changes.
26306         * object.c (mono_class_compute_gc_descriptor): It turns out some
26307         parts of the class libs (like System.Thread) holds pointers to
26308         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
26309         to treat native int a pointer type here.
26310         
26311 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
26313         * appdomain.h, domain.c: add hashtable for jump target resolution.
26315 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
26317         * reflection.h reflection.c icall.c: Added new icalls 
26318         GetManifestResourceInfoInternal, GetModulesInternal and support
26319         infrastructure.
26321 2003-05-16  Dick Porter  <dick@ximian.com>
26323         * icall.c:
26324         * file-io.h:
26325         * file-io.c: Implement System.IO.MonoIO::GetTempPath
26327 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
26329         * object.c: mono_store_remote_field: little fix to previous patch.
26331 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
26333         * class.c: add constructors to array classes.
26334         * icall.c: special case array construction for InternalInvoke (),
26336 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
26338         * class.h class.c reflection.c object.c: Added support for field
26339         defaults in dynamically generated classes.
26341 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
26343         * reflection.c: properly encode charset for ddlimport.
26345 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
26347         * threads.c: allow compiling without GC.
26349 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
26351         * appdomain.h, object.c, object.h, threads.c, threads.h: added
26352         handling of thread static data.
26354 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
26356         * reflection.h, reflection.c: added mono_custom_attrs_free ().
26358 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
26360         * class.c (mono_array_class_get): always set the serializable flags
26361         (mono_array_class_get): always set the SEALED attribute for array types
26363 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
26365         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
26366         attributes (fix for bug 42021).
26368 2003-05-12  Dick Porter  <dick@ximian.com>
26370         * gc.c: Don't run finalizers when the finalizer thread is
26371         finishing up, because the default domain has already been
26372         destroyed.
26374 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
26376         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
26377         value is null, we should throw an exception.   This is slightly
26378         different than the other conventions used for the constructor.
26380 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26382         * socket-io.c: fixed windows build.
26384 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26386         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
26388 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
26390         * object.c (mono_string_new_wrapper): Compatibility fix for MS
26391         compilers.
26393 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
26395         * class.c (mono_class_layout_fields): Add experimental GC aware
26396         auto layout facility. Requires class library changes to work correctly.
26398         (mono_class_setup_vtable): Avoid overriding explicit interface
26399         method implementations. Fixes iface3.exe test.
26401         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
26402         object reference.
26403         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
26404         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
26406         * metadata.h: Add new type classification macro which determines
26407         whenever the type holds an object reference.
26409 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
26411         * marshal.c (mono_marshal_get_native_wrapper): cleanups
26413 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
26415         * gc.c (finalizer_thread): Work around a GC bug.
26417 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
26419         * marshal.c (emit_struct_conv): allow unions
26421         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
26423 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
26425         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
26427 2003-05-06  Martin Baulig  <martin@ximian.com>
26429         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
26431 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26433         * socket-io.c:
26434         (Select_internal): allow NULLs, don't create arrays if not needed.
26435         Coupled with Socket.cs changes.
26437         * threadpool.c:
26438         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
26439         register a finalizer for it that will close the semaphore handle. This
26440         fixes the leak and make Lupus' test run with > 4080 loops.
26442 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
26444         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
26445         Jerome Laban (bug #42287)
26447 2003-05-02  Martin Baulig  <martin@ximian.com>
26449         * debug-mono-symfile.h
26450         (MonoSymbolFile): Moved declaration into mono-debug.h.
26451         (MonoDebugMethodJitInfo): Likewise.
26452         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
26453         argument.
26454         (_mono_debug_address_from_il_offset): Take a
26455         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
26457         * mono-debug.h
26458         (MonoDebugDomainData): New struct.
26459         (mono_debug_get_domain_data): New function.
26460         (mono_debug_add_method): Take an additional `MonoDomain *'
26461         argument.
26462         (mono_debug_source_location_from_address): Likewise.
26463         (mono_debug_il_offset_from_address): Likewise.
26464         (mono_debug_address_from_il_offset): Likewise.
26466 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
26468         * reflection.c: one more check for null type in custom attrs.
26470 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26472         * reflection.c: avoid warning (comparison is always false due to limited
26473         range of data type).
26475 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26477         * icall.c: throw an exception in Type.GetField if the argument 'name'
26478         is NULL.
26480 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
26482         * reflection.c: fixed handling of enums in named arguments to custom
26483         attributes (bug #42123).
26485 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
26487         * reflection.c: use the right array element type and handle
26488         a null for a Type argument, too.
26490 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
26492         * reflection.c: handle arrays as arguments to custom attributes.
26494 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
26496         * reflection.c: handle a string value in a custom attr
26497         ctor that takes an object.
26499 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
26501         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
26502         (fix bug #42063)
26504 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
26506         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
26508 2003-04-27  Martin Baulig  <martin@ximian.com>
26510         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
26511         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
26512         MONO_DEBUGGER_EVENT_BREAKPOINT.
26513         (mono_breakpoint_trampoline_code): Removed.
26514         (mono_debugger_event_handler): The last argument is now a
26515         `guint32'.
26516         (mono_debugger_insert_breakpoint_full): Removed the
26517         `use_trampoline' argument.
26518         (mono_debugger_method_has_breakpoint): Likewise.
26519         (mono_debugger_trampoline_breakpoint_callback): Renamed to
26520         mono_debugger_breakpoint_callback(); take the method and
26521         breakpoint number as arguments.
26523 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
26525         * metadata.c: fix off by one when loading parameters attributes.
26527 2003-04-24  Martin Baulig  <martin@ximian.com>
26529         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
26531 2003-04-24  Martin Baulig  <martin@ximian.com>
26533         * mono-debug-debugger.c: Moved all code which interacts with the
26534         Mono Debugger here.
26536         * debug-mono-symfile.c: This code now just deals with the symbol
26537         file itself, the debugger code is now in mono-debug-debugger.c.
26539 2003-04-23  Martin Baulig  <martin@ximian.com>
26541         * mono-debug.c (mono_debug_source_location_from_il_offset):
26542         New method; like mono_debug_source_location_from_address(), but
26543         takes an IL offset instead of a machine address.
26545 2003-04-23  Martin Baulig  <martin@ximian.com>
26547         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
26548         `line' field; this is now computed by the debugger.
26550 2003-04-23  Martin Baulig  <martin@ximian.com>
26552         * mono-debug.[ch]: New files.  This is the new debugging interface.
26554         * mono-debug-debugger.[ch]: New files.  Moved all code which
26555         interacts with the Mono Debugger here.
26557 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
26559         * domain.c (mono_init): initialize mono_defaults.monitor_class
26561 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
26563         * reflection.c (method_encode_code): Add a spicy exception to help
26564         future compiler authors.
26566 2003-04-21  Martin Baulig  <martin@ximian.com>
26568         * icall.c
26569         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26570         Make this work with relative pathnames; g_filename_to_uri() needs
26571         an absolute filename.
26573 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
26575         * icall.c: Track name changes in Object and ValueType.
26577 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
26579         * metadata.c (mono_type_stack_size): size should be a multiple of
26580         sizeof (gpointer)
26582 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26584         * gc.c:
26585         (internal_domain_finalize): moved into mono_domain_finalize. No need
26586         to create another thread because the finalizers will be run in the
26587         finalizer thread.
26588         
26589         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
26590         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
26591         to be run (MS does this too).
26593 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
26595         * object.c (mono_class_compute_gc_descriptor): Update comment.
26597         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
26599         * image.h: Add synchronized wrapper cache.
26601         * image.c (do_mono_image_open): Initialize cache.
26603         * reflection.c (create_dynamic_mono_image): Initialize cache.
26605 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26607         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
26608         ves_icall_System_Buffer_ByteLengthInternal.
26610 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
26612         * reflection.c: setup klass->nested_in earlier. Allow
26613         a dash in the assembly name.
26615 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
26617         * metadata.c (mono_type_to_unmanaged): dont access
26618         type->data.klass for MONO_TYPE_OBJECT
26619         (mono_type_to_unmanaged): consider System.Delegate class
26621 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
26623         * class.c: just setup supertypes in the proper place instead of
26624         initializing the full element class for arrays.
26626 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
26628         * class.c: ensure the element class of arrays is initialized.
26629         Setup the supertype info for array classes, too.
26631 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
26633         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
26635 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26637         * Makefile.am: re-added -m option when running cygpath. This way,
26638         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
26639         separator.
26640         * mono-config.c: same codepath for locating mono config file for WIN32
26641         and the rest.
26642         * assembly.c: if mono_assembly_setrootdir is called, don't override
26643         the value set.
26645 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26647         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
26648         MONO_ASSEMBLIES variable.
26650 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
26652         * icall.c: added Assembly::GetNamespaces() icall.
26654 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26656         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
26658 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
26660         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
26661         * object.c: fixed bug in the construction of vtable for proxies
26663 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
26665         * object.c (mono_array_new): Mark mono_array_new as an icall.
26667 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26669         * class.c: fixed test for public method when overriding interfaces.
26670         Closes bug #40970.
26672 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
26674         * appdomain.h, domain.c: added mono_domain_foreach() to
26675         be able to access the currently loaded appdomains.
26676         * object.c: make string interning work across sppdomains.
26677         Mark some functions for use as icalls.
26679 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
26681         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
26683         * reflection.h reflection.c: Allocate long living data using 
26684         GC_MALLOC_ATOMIC so the collector does not need to scan it.
26686         * reflection.c: Double the allocation size in streams instead of
26687         increasing it, to prevent unneccesary copying on large assemblies.
26688         
26689         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
26690         creation if the assembly does not have the Run flag set.
26692 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
26694         * class.h: avoid the C++ keywords in header files (Jerome Laban
26695         spotted and fixed this).
26697 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26699         * object.c:
26700         (mono_unhandled_exception): fill in the arguments for the
26701         UnhandledException event. Only trigger that event for the default
26702         domain (as MS does).
26704 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
26706         * object.c: Improve typed allocation stuff based on suggestions from
26707         Paolo. Also turn it on if the GC library supports it.
26709 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
26711         * object.c object.h class.h: Added experimental typed allocation
26712         facility using the interfaces in gc_gcj.h.
26714         * os/gc_wrapper.h: Added new include files.
26715         
26716 2003-04-03  Martin Baulig  <martin@ximian.com>
26718         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
26719         which is not yet enabled by default.
26721         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
26722         functions.
26723         (mono_gc_lock, mono_gc_unlock): New static functions.
26725         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
26726         functions; stop/start the world for the garbage collector.  This
26727         is using the windows API; we need to complete the SuspendThread()/
26728         ResumeThread() implementation in the io-layer to make this work on Unix.
26729         (mono_gc_push_all_stacks): New public function; tells the garbage
26730         collector about the stack pointers from all managed threads.
26732 2003-04-03  Martin Baulig  <martin@ximian.com>
26734         * object.h (MonoThread): Added `gpointer stack_ptr'.
26736         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
26738 2003-04-03  Martin Baulig  <martin@ximian.com>
26740         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
26742 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
26744         * reflection.c (typebuilder_setup_fields): Initialize field.first and
26745         field.last.
26747 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
26749         * loader.c (mono_lookup_internal_call): Report the corlib that is
26750         out of sync.
26752 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
26754         * icall.c (ves_icall_type_GetTypeCode): fixed check for
26755         System.DBNull (it's class not valuetype).
26757 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
26759         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
26760         if the array method was already assigned a token (fixes bug#40646).
26762 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
26764         * reflection.c (mono_reflection_get_type): Attempt type resolve even
26765         if no assembly is given.
26767 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
26769         * metadata.h: Added the new tables.
26771         * row-indexes.h: Added definitions for new tables.
26773         * metadata.c: Add schemas for new tables, and add support for
26774         computing the sizes of them.
26776         * class.c: Update for handling the new type cases.
26778 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
26780         * metadata.h (MONO_TYPE_IS_VOID): new macro
26782 2003-03-31  Martin Baulig  <martin@ximian.com>
26784         * threads.h (MonoThreadCallbacks): Added `thread_created'.
26786         * threads.c (mono_thread_new_init): Call `thread_created' in the
26787         mono_thread_callbacks.
26789 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
26791         * loader.h: added marshalbyrefobject_class to mono_defaults
26792         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
26793         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
26794           generation of output parameters.
26795           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
26796         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
26797           contextbound and the target object belongs to the context of the caller.
26798         * object.h: added context and unwrapped_server variables in MonoRealProxy.
26799         * object.c: Implemented support for interfaces and abstract classes
26800           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
26801           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
26803 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
26805         * class.h class.c (mono_class_is_subclass_of): New function.
26806         
26807         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
26808         routines for most common case (calls from ArrayList::ToArray).
26810         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
26811         routine so programs which call Environment::Exit() can be profiled.
26813         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
26814         Added MONO_ARCH_SAVE_REGS.
26816         * icall.c (ves_icall_type_is_subtype_of): Use new function.
26818 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
26820         * blob.h: Add a couple of new MonoType types definitions.
26822         * tabledefs.h: Add a couple of new call convs.
26824 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
26826         * reflection.h (MonoReflectionDynamicAssembly): track changes in
26827         the layout of the class.
26829         * reflection.c (alloc_table): double the size on overflow to avoid
26830         unnecessary copying.
26832         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
26833         avoid filling out metadata tables and blobs. Also set mb->ilgen to
26834         null so it can be garbage collected.
26835         
26836 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
26838         * reflection.c (mono_reflection_get_type): Return the resolved type
26839         only if it is in the assembly we searched.
26841         * reflection.c (ensure_runtime_vtable): Initialize method slots.
26843         * class.c (mono_class_setup_vtable): Set the slot of the overriding
26844         method.
26846 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26848         * appdomain.c:
26849         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
26850         the right one is 'file:///blah', but MS allows it.
26851         * assembly.c:
26852         (mono_assembly_open): allow 'file://blah'
26854         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
26856 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
26858         * socket-io.c: fixes bug #40310.
26860 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
26862         * reflection.c (mono_reflection_parse_type): handle deeply nested
26863         types correctly.
26865         * reflection.c (mono_image_create_token): Use unique token values
26866         since they will be put into a hash table.
26868         * class.c (mono_class_setup_vtable): If a method occurs in more than
26869         one place in the vtable, and it gets overriden, then change the
26870         other occurances too.
26872         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
26873         object as return type.
26875 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26877         * icall.c: Deleted "ToString" implementation for double and float
26878         because they are full implemented in managed code.
26880 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
26882         * reflection.c, reflection.h: implemented and exported functions
26883         to retrieve info about custom attributes.
26885 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26887         * appdomain.c: moved Uri handling to assembly.c
26888         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
26889         work when using a file Uri in *nix and windows.
26891         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
26892         GetReferencedAssemblies.
26894 2003-03-18  Dick Porter  <dick@ximian.com>
26896         * icall.c: Rename a couple of internal calls
26898         * threads.c: Set the thread state to Stopped when a thread exits.
26899         Fixes bug 39377.
26901 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
26903         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
26904         New icall.
26906         * object.c (mono_class_vtable): fix warning.
26908 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
26910         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
26912         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
26913         memory.
26914         (method_encode_clauses): Create exception info structures in the right
26915         order.
26916         (mono_reflection_setup_internal_class): Initialize supertypes field.
26918         * class.c object.c: Handle interfaces which implement other interfaces 
26919         correctly.
26921         * class.h class.c: Move the supertypes array initialization code into 
26922         a separate function so it can be used for dynamic types too. Also call
26923         it earlier, in mono_class_init(), since it can be used before the
26924         type is initialized.
26926 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26928         * Makefile.am:
26929         * assembly.c:
26930         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
26932         * appdomain.c:
26933         * appdomain.h:
26934         * marshal.c:
26935         * object.c: remove warnings.
26937 2003-03-13  Martin Baulig  <martin@ximian.com>
26939         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
26940         (MonoDebugLexicalBlockEntry): New types.
26942         * debug-mono-symfile.c
26943         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
26945 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26947         * process.c: ret can be any non-zero value accroding to MS doc.
26949 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
26951         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
26952         fixing a warning for a miss-used prototype, would have cause
26953         random memory corruption.
26955 2003-03-07  Martin Baulig  <martin@ximian.com>
26957         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
26958         getting really annoying ....
26960 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
26962         * reflection.c (fixup_method): added support for array methods.
26964 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
26966         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
26967         (pointed out by Michael Adams).
26969 2003-03-04  Dick Porter  <dick@ximian.com>
26971         * icall.c: Temporarily reverted the Double and Single ToString()
26972         change, because it broke nunit.
26974 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
26976         * object.h, threads.h: make include files compatible with C++
26977         (patch by Jerome Laban <jlaban@wanadoo.fr>).
26979 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
26981         * icall.c: Erased ToString helper functions for Double and Single.
26982         Now, that implementations ar all in managed code (Double and Single
26983         Formatters).
26985 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
26987         * appdomain.c: Added method for initializing the default context of
26988         a domain. Added internal call for getting the default context.
26989         * appdomain.h: Added context variable in MonoDomain struct.
26990         * domain.c: mono_domain_set also sets the default context of the domain
26991         * icall.c: Mapped internal method InternalGetDefaultContext.
26992         * object.c: mono_object_get_virtual_method returns always a remoting
26993         wrapper if the object is a transparent proxy.
26994         mono_runtime_invoke_array: when creating an object by calling the
26995         constructor, if the created object is a proxy, then the constructor should
26996         be called using the a remoting wrapper.
26998 2003-03-03  Dick Porter  <dick@ximian.com>
27000         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
27001         variable so it compiles on solaris.  Problem spotted by
27002         Christopher Taylor <ct@cs.clemson.edu>
27004 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27006         * appdomain.c:
27007         (get_info_from_assembly_name): don't leak value.
27009         * icall.c:
27010         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
27011         result.
27013 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
27015         * assembly.c: export mono_image_load_references ().
27016         * class.c: handle function pointers. mono_class_from_name() now
27017         supports nested type names directly.
27019 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
27021         * reflection.h reflection.c: Encode already created dynamic methods 
27022         and fields correctly as a DEF instead of a REF.
27024         * reflection.c: Get rid of the force_ref argument to 
27025         mono_image_typedef_or_ref since it was wrong in the first place.
27027         * string-icalls.c: add error checking to string constructors according
27028         to the MSDN docs.
27030         * reflection.c: Emit types in the order their TypeBuilders were 
27031         created. Previously, a new table index was assigned to each type before
27032         the tables were emitted. This was wrong because the signature blob
27033         might already refer to a type by its original table index.
27035 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
27037         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
27038         change.
27039         
27040 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27042         * Makefile.am: make assemblies dir have \ instead of / on windows.
27044 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
27046         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
27047         iterate over the NESTEDCLASS table using a linear search since the
27048         table is not guaranteed to be sorted by the secondary key.
27050         * class.c (mono_class_create_from_typedef): fixed up call to
27051         mono_metadata_nesting_typedef.
27052         
27053 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
27055         * marshal.c (mono_string_to_byvalstr): clear the memory as
27056         suggested by Jerome Laban <jlaban@wanadoo.fr>
27058 2003-02-26  Dick Porter  <dick@ximian.com>
27060         * process.c: Cope with padding in .rsrc blocks
27062 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
27064         * metadata.h: reverted the filter_len change, it breaks reflection
27065         
27066 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
27068         * metadata.h: added a new field to store the filter_len
27069         
27071 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
27073         * reflection.c: handle custom attributes for types and members
27074         created with Reflection.Emit (bug#38422).
27076 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
27078         * reflection.c: define RTSpecialName automatically for constructors for
27079         compatibility with MS.NET.
27081         * reflection.c (mono_reflection_create_runtime_class): initialize
27082         nested_in field of dynamically created classes.
27084 2003-02-22  Martin Baulig  <martin@ximian.com>
27086         * debug-mono-symfile.h: Incremented version number.
27088 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
27090         * object.h icall.c process.c: fix warnings.
27092 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
27094         * appdomain.h appdomain.c:
27095         (mono_domain_try_type_resolve): split the 
27096         name_or_tb argument into a name and a tb argument.
27097         (mono_domain_has_type_resolve): new function to check whenever the
27098         application has registered a TypeResolve event handler.
27099         
27100         * icall.c reflection.h reflection.c: move the type resolve logic into
27101         mono_reflection_get_type () so it will be invoked when 
27102         Assembly::GetType () is called.
27104         * reflection.c:
27105         (mono_reflection_get_type): renamed to get_type_internal.
27106         (mono_reflection_get_type): fixed type name generation so it works 
27107         for nested types too.
27108         (mono_reflection_get_type): call has_type_resolve () to avoid the 
27109         costly type name generation if there is no resolve event handler.
27111 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
27113         * class.c, image.c: load exported types from file references.
27115 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
27117         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
27118           used to cache the managed methods used to create proxies and make 
27119           remote invocation of methods.
27120         * class.h: Added in MonoVTable a flag to indicate that a class needs 
27121           to be remotely created.
27122         * object.c: Modified the method mono_class_vtable(). It now initializes 
27123           the remote flag of the vtable. Modified mono_object_new_specific(), 
27124           so now it checks the remote flag.
27125         * icall.c: Added a couple of internal methods, one for enabling instance 
27126           creation interception for a type, and one for creating objects bypassing
27127           the remote check.
27129 2003-02-18  Martin Baulig  <martin@ximian.com>
27131         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
27132         New interncall to get a method's metadata token.
27134         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
27135         New interncall for the debugger.
27137 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
27139         * class.c (mono_class_setup_vtable): allocate supertype array
27141 2003-02-18  Martin Baulig  <martin@ximian.com>
27143         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
27145 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27147         * reflection.c:
27148         (assembly_name_to_aname): jump over unknown properties (i've found
27149         something like: 'type, assembly, version=xxx, custom=null, public...',
27150         so now will ignore custom=null and still get the rest of the values).
27152 2003-02-17  Dick Porter  <dick@ximian.com>
27154         * threads.c: Have Thread.Start() wait for a semaphore to signal
27155         that the thread has set up all its local data.  This fixes bug
27156         34323, where Abort() raced the new thread's TLS data.
27158         Also removes the handle_store() call from start_wrapper, because
27159         threads are now always created suspended and there is no longer a
27160         race between the parent and child threads to store the info.
27162 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
27164         * image.c: explain the #- heap issue in a message, hopefully
27165         avoiding FAQs on mono-list.
27167 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27169         * icall.c:
27170         (GetEntryAssembly): if the domain has not invoked
27171         AppDomain.ExecuteAssembly yet, return the assembly of the default
27172         AppDomain.
27174 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
27176         * class.c (mono_ldtoken): make it work in dynamic assemblies.
27178 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
27180         * metadata.c, reflection.c: simple speedup to type hash
27181         and equals code.
27183 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
27185         * image.c, image.h, class.c, assembly.c: move module loading
27186         to MonoImage. When loading metadata, consider alignemnet from
27187         the start of metadata, not from the metadata address in memory.
27189 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
27191         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
27192         AssemblyBuilder objects. Factored out custom attribute creation into
27193         a separate function.
27194         (create_custom_attr): new function to create custom attributes.
27196 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
27198         * Makefile.am: Got tired of typing the full pathname to pedump.
27199         Until there is another option, am installing this.
27201 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
27203         * class.c (class_compute_field_layout): always set field->parent 
27204         (mono_ldtoken): use mono_defaults.fieldhandle_class;
27206 2003-02-11  Dick Porter  <dick@ximian.com>
27208         * threads-types.h:
27209         * monitor.c: Rewrote Monitor, making lock much faster and
27210         Pulse/Wait work as specified.  Also uses much fewer handles, and only
27211         creates them as needed.
27213         * exception.c: Added SynchronizationLockException
27215         * threads.c: Deleted old Monitor implementation.  The new one is
27216         in a new file.
27218 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
27220         * class.c: handled TypedReference type code. Set the correct size for
27221         class data. Setup interface_offsets for interface classes, too.
27223 2003-02-09  Martin Baulig  <martin@ximian.com>
27225         * debug-mono-symfile.h: Reflect latest symbol writer changes.
27227 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
27229         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
27230         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
27231         * object.c: fixed mono_object_get_virtual_method () for interfaces.
27232         * verify.c: check for code that runs after the end of the method.
27234 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
27236         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
27237         "System.Math::Round2".
27238         * sysmath.h: Added Floor, Round and Round2 definitions.
27239         * sysmath.c: Modified certain functions that were not 100% compliant
27240         with MS.NET (math precision) and added the implementation of Floor,
27241         Round and Round2.
27243 2003-02-07  Martin Baulig  <martin@ximian.com>
27245         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
27247 2003-02-07  Martin Baulig  <martin@ximian.com>
27249         * debug-mono-symfile.c: Reflected latest symwriter changes.
27250         (mono_debug_create_mono_symbol_file): Removed.
27251         (mono_debug_open_mono_symbol_file): Take an argument which
27252         specifies whether to create a dynamic symbol file.
27254 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
27256         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
27258 2003-02-05  Martin Baulig  <martin@ximian.com>
27260         * reflection.c (mono_image_build_metadata): Make this public,
27261         protect it against being called multiple times, don't create
27262         resources and don't build the compressed metadata here.
27263         (mono_image_create_pefile): Do this here.
27265         * icall.c
27266         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
27268 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27270         * socket-io.c: fixed bug #36322.
27272 2003-02-06  Piers Haken <piersh@friskit.com>
27274         * appdomain.[ch]:
27275         * class.h:
27276         * debug-mono-symfile.c:
27277         * icall.c:
27278         * loader.c:
27279         * mono-config.c:
27280         * monosn.c:
27281         * reflection.c:
27282         * socket-io.c: warning cleanups
27284 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
27286         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
27287         function. works like remoting invoke, but does a check for the Proxy first.
27289 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
27291         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
27293 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
27295         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
27296         array of pointers.
27297         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
27298         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
27300         * object.c (mono_store_remote_field_new): used by the new jit
27301         instead of mono_store_remote_field
27302         (mono_load_remote_field_new): used by the new jit
27303         instead of mono_load_remote_field
27305 2003-02-05  Patrik Torstensson
27307         * appdomain.c: changed unload to take the domain id instead
27308         of domain
27309         
27310         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
27313 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27315         * appdomain.c: don't look for assemblies in ApplicationBase if
27316         PrivateBinPathProbe is set.
27318 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27320         * object.c: make the first argument in main_args contain the absolute
27321         path to the assembly. Fixes bug #37511.
27323 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27325         * icall.c: get correct UTC offset for countries not using daylight
27326         time saving. Fixes bug #30030.
27328 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27330         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
27331         and 1 are the family).
27333 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
27335         * icall.c (ves_icall_InternalExecute): removed wrong assertion
27337         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
27339 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
27341         * reflection.c: added support for SignatureHelper tokens, which is
27342         needed by the Calli opcode.
27344         * reflection.h: track changes to SignatureHelper class.
27346         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
27348 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27350         * appdomain.c: fixed loading assemblies from PrivateBinPath.
27352 2003-02-03  Patrik Torstensson
27353         * appdomain.[c|h], domain.c : 
27354          - Added support for getting a domain via domain id
27355          - Support for setting and getting domain from System.AppDomain 
27356            (used in cross appdomain channel)
27357          - Added support for get/set for a MonoAppContext on a thread 
27358            (Context class in System.Runtime.Remoting.Contexts),
27359          - Removed hack in Get/SetData and ExecuteAssembly.
27360         
27361         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
27362         the managed world to get control when a proxy is created.
27364         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
27365         
27366 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
27368         * icall.c
27369         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27370         Populate the codebase field as well.
27372 2003-02-02  Martin Baulig  <martin@ximian.com>
27374         * debug-mono-symfile.c
27375         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
27376         (mono_debug_symfile_add_method): Allow interncalls.
27378 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27380         * icall.c: throw parse exception if strtod fails or the string is empty.
27382 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
27384         * marshal.c: handle object type separately from defined
27385         class types.
27387 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
27389         * marshal.c: handle NATIVE_LPSTR for strings when it's
27390         explicitly specified.
27392 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
27394         * reflection.c, reflection.h, icall.c: setup the reflection
27395         handle cache for ModuleBuilders and AssemblyBuilders.
27397 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
27399         * reflection.c (reflection_methodbuilder_to_mono_method): set
27400         pinvoke flag
27402 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27404         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
27406 2003-01-29  Dick Porter  <dick@ximian.com>
27408         * threads.c: No need for the fake_thread kludge now that Thread
27409         doesn't run a class constructor
27410         
27411 2003-01-29  Dick Porter  <dick@ximian.com>
27413         * threads.c: Use g_direct_hash instead of the rather bogus
27414         g_int_hash
27416 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
27418         * marshal.c (mono_marshal_get_native_wrapper): add check for null
27419         (fix pinvoke12.exe)
27420         (mono_marshal_get_struct_to_ptr): generate valid IL code
27421         (mono_marshal_get_ptr_to_struct): generate valid IL code
27422         (*): correctly set sig->pinvoke, we need to memdup the signature
27423         to do that
27425 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
27427         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
27428         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
27430 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
27432         * profiler.c: provide more callers information.
27434 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
27436         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
27438         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
27440         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
27442 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27444         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
27445         exception instead of going into an infinite loop on dates which it 
27446         can't yet handle.
27448         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
27449         out-of-range exception if needed.
27451         * class.c (mono_class_setup_vtable): allow a virtual method to provide
27452         an implementation for an interface method and to override an inherited
27453         method at the same time. 
27454         Imagine a scenario when a virtual method is used to override a
27455         virtual abstract method in a parent class, and this same method 
27456         provides an implementation for an method inherited from an interface. 
27457         In this case, the interface resolution code will set im->slot, which 
27458         means that the virtual method override pass will skip this method 
27459         which means a pointer to the abstract method inherited from the parent
27460         will remain in the vtable of this non-abstract class.
27462         * class.c: (mono_class_setup_vtable): continue search for a real 
27463         method if only an abstract method is found.     
27465 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
27467         * reflection.c: add size to encoding for ByValStr and ByValArray
27468         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
27470 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27472         * class.c (mono_class_setup_vtable): pass the override info as an
27473         argument.
27475         * class.c (mono_class_setup_vtable): set the slot of overriding methods
27476         correctly.
27477         
27478         * reflection.c (ensure_runtime_vtable); add support for method 
27479         overrides.
27480         
27481 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27483         * reflection.c (resolution_scope_from_image): Hack to work to work with
27484         dynamic assemblies.
27486         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
27487         added a 'force_ref' argument to force this function to allways return 
27488         a TypeRef. This is needed by mono_image_get_memberref_token ().
27489         
27490 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27492         * reflection.c (mono_image_get_type_info): interfaces really don't have
27493         a parent.
27495         * reflection.c (mono_image_basic_init): fill out missing fields of
27496         image structure.
27498         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
27499         dynamic assemblies. This is required so dynamic assemblies show up in
27500         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
27501         Type::GetType() etc. This is consistent with MS behaviour.
27503         * image.c image.h reflection.c: add newly created classes to the name 
27504         cache so mono_class_get () will find them.      
27506 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
27508         First part of changes to get IKVM.NET running under mono.
27509         
27510         * appdomain.h, appdomain.c: added new function 
27511         mono_domain_try_type_resolve() which will emit TypeResolve events. 
27512         This function will call AppDomain::DoTypeResolve to do the actual work.
27514         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
27515         moved existing code dealing with dynamic tokens to a new function 
27516         called mono_reflection_lookup_dynamic_token (). This function will 
27517         raise TypeResolve events when appropriate. Since reflection.c is not 
27518         part of libmetadata, a new hook function called 
27519         mono_lookup_dynamic_token() is added to class.c which will call this.
27521         * assembly.h assembly.c: make the invoke_load_hook function public,
27522         so it can be called for dynamic assemblies.
27524         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
27526         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
27527         type isn't found.
27529         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
27530         MonoGHashTable, since it contains pointers to objects which the GC 
27531         needs to track.
27533         * assembly.c (search_loaded): remove unused variable.
27534         
27535 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
27537         * object.c: fixed issue exposed by gcc-generated IL programs
27538         that use RVA data for pointers.
27540 2003-01-25  Martin Baulig  <martin@ximian.com>
27542         * threads.c (start_wrapper): Moved the initialization of
27543         `start_func' above the mono_new_thread_init() call to which we
27544         pass it as argument.
27546 2003-01-24  Martin Baulig  <martin@ximian.com>
27548         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
27549         the MonoThread pointer.
27551 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
27553         * icall.c: Rename `PowImpl' to Pow.
27555 2003-01-23  Dick Porter  <dick@ximian.com>
27557         * threads.c (start_wrapper): Create a Thread object if needed, so
27558         the Main() thread can do the class initialisation in a subthread
27559         that has been set up to allow managed code execution.
27561         Pass the thread ID instead of the MonoThread pointer to the thread
27562         start and attach callbacks.  This change is required, because the
27563         jit thread start callback must be called _before_ the Thread
27564         object can be created.
27565         
27566         (mono_thread_init): Removed much object creation code that is no
27567         longer needed.  No managed code is called from here now.
27569         * object.c (mono_runtime_exec_managed_code): Create a subthread
27570         for Main, and call back to the runtime to use it.
27571         Set the exit code when Main exits.
27573         * gc.c: Make sure domain finalisation happens in a subthread.
27574         Re-enable threaded GC, fixing bug 31333 (again).
27576         * environment.c: System.Environment internall calls (so far just
27577         ExitCode is here, the others are still in icall.c)
27579         * appdomain.c (mono_runtime_cleanup): All threads running managed
27580         code should have finished before mono_runtime_cleanup() is
27581         reached, so no need to clean up threads.
27583 2003-01-22  Martin Baulig  <martin@ximian.com>
27585         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
27586         `gpointer func' arguments.      
27587         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
27588         but added `MonoThread *thread' argument.
27589         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
27591         * threads.c (mono_new_thread_init): Added `gpointer func' argument
27592         and pass it to the mono_thread_start_cb callback.
27593         (mono_install_thread_callbacks): New public function to install a
27594         set of callbacks which are set by the debugger.
27595         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
27597 2003-01-22  Martin Baulig  <martin@ximian.com>
27599         * Makefile.am: Install debug-mono-symfile.h.
27601 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
27603         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
27605 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
27607         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
27608         * class.c (mono_ptr_class_get): correctly set access levels of pointers
27609         (mono_array_class_get): correctly set access levels of arrays
27611 2003-01-20      Patrik Torstensson
27612         * image.h (MonoAssemblyName): changed major, minor, build, revision
27613         from signed to unsigned.
27615 2003-01-20  sean kasun <skasun@azstarnet.com>
27617         * reflection.c (load_cattr_value): Now this handles
27618         MONO_TYPE_SZARRAY.  Fixes bug #35629
27620 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
27622         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
27623         integer value
27625 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27627         * decimal.c: fixed bug #26056.
27629 2003-01-17  Martin Baulig  <martin@ximian.com>
27631         * gc.c: Raise an ExecutionEngineException instead of using g_error().
27633 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27635         * exception.[ch]:
27636         (mono_get_exception_type_initialization): new function.
27638         * object.c: throw a TypeInitializationException when an exception is
27639         thrown invoking the class constructor.
27641 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27643         * reflection.c: fixed attribute reading.
27645 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27647         * icall.c:
27648         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
27649         provided, look for the type in the calling assembly and then in
27650         mscorlib; if the assembly name is provided, only try that one.
27652 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
27654         * object.c: register the vtable before there is a chance it's
27655         queried again recursively.
27657 2003-01-13  Duncan Mak  <duncan@ximian.com>
27659         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
27660         gc-internal.h. 
27661         
27662 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
27664         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
27666 2003-01-11  Martin Baulig  <martin@ximian.com>
27668         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
27669         this to 20 for the release.
27671 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
27673         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
27675         * loader.c (mono_method_get_marshal_info): bug fix
27677         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
27678         structures with explicit layout
27680 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
27682         * profiler.c: made the output more readable (and sorted). 
27683         Added caller information for the allocation profiler.
27685 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
27687         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
27689 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27691         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
27692         to get value types.
27693         
27694 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
27696         * object.c, profiler.h, profiler.c, profiler-private.h:
27697         Added object allocation profiler.
27699 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
27701         * reflection.h, reflection.c: handle global methods.
27702         Compress blob entries.
27704 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
27706         * marshal.c: fix compilation.
27708 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
27710         * loader.c (mono_method_get_marshal_info): impl.
27712         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
27714 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27716         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
27717         for reference types.
27719 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
27721         * loader.c: fixed off by one error in loaded parameter names.
27723 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
27725         * marshal.c (mono_marshal_get_icall_wrapper): like
27726         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
27727         instead of a MonoMethod.
27729 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27731         * decimal.c: fixed bug #36537.
27733 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
27735         * marshal.c: throw a missing method exception if a
27736         P/Invoke method is not found.
27738 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
27740         * icall.c: allow a null this for constructors.
27742 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
27744         * icall.c: raise the proper exceptions if the arguments to the
27745         internal Invoke are incorrect.
27747 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
27749         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
27751 2003-01-03  Martin Baulig  <martin@ximian.com>
27753         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
27755 2002-12-31  Martin Baulig  <martin@ximian.com>
27757         * debug-mono-symfile.c: Completely rewrote the type section.
27758         Instead of using individual malloc()ed fields, we use one big
27759         continuous memory area and offsets into this area.
27760         See the comments in the source code for details.
27762 2002-12-30  Martin Baulig  <martin@ximian.com>
27764         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
27766 2002-12-30  Martin Baulig  <martin@ximian.com>
27768         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
27769         line number table in this data blob instead of using an external
27770         pointer.
27772 2002-12-28  Martin Baulig  <martin@ximian.com>
27774         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
27776 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
27778         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
27779         as a boxed return type.
27781 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
27783         * appdomain.c
27784         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
27785         g_build_filename to properly get separators on the filename created.
27787         * object.h: Small change, introduce MonoMarshalByRefObject to
27788         track the layout of that structure in the C# universe as we make
27789         changes there.
27791 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
27793         * object.c: removed assert to allow static fields on interfaces.
27794         * loader.c: a TypeSpec may be used for any type, not just arrays.
27796 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
27798         * class.c, class.h: added mono_class_array_element_size ().
27799         Ignore static methods in interfaces.
27801 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27803         * threads.c: fixed the build under cygwin.
27805 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
27807         * reflection.c: handle nullref constants. Allocate keys for
27808         reflection handles with the GC.
27810 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27812         * threads.c, threads.h: added mono_thread_get_abort_signal()
27813         to get a suitable signal for thread abort.
27815 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
27817         * metadata.c: fix handling of ExportedType table.
27819 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27821         * icall.c: added WriteWindowsDebugString internal call.
27823 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27825         * reflection.h: added fields to match C# implementation.
27827 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27829         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
27831 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
27833         * gc.h, gc-internal.h: Rename header for GC internal calls to
27834         gc-internal.h from gc.h as to not clash with Boehm GC having its
27835         header installed as <gc.h> in outside include paths.
27836         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
27837         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
27839 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27841         * icall.c: assign minor, build and revision in FillName.
27843 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
27845         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
27846         Added support for running code generated by Reflection.Emit.
27848 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27850         * appdomain.c: check for NULL argument in LoadFrom.
27852 2002-12-10  Dick Porter  <dick@ximian.com>
27854         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
27856 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27858         * appdomain.c: fix buglet when building exe file name.  Handle full
27859         assembly name (needed after latest changes to AssemblyName).
27860         * image.c:
27861         (mono_image_close): free some hashtables.
27863 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
27865         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
27866         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
27867         on some systems (redhat 7.3) 
27869 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
27871         * threads.c: delete the critical section of a sync block,
27872         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
27874 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
27876         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
27878 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27880         * appdomain.[ch]: handle the assembly preload event to try loading the
27881         assemblies using the paths we have in the current domain.
27883         * assembly.[ch]: created an assembly preload hook that is called to try
27884         loading the assembly by other means that the ones provided here.
27886         * domain.c: initialize the domain search path.
27888         From now on, assemblies (TODO: except corlib and System) are loaded
27889         according to these rules when using mono_assembly_load ():
27891                 1. It tries to load the assembly from the ApplicationBase
27892                 of the current domain appending .dll and .exe (TODO: have to
27893                 try loading from name/name.dll and name/name.exe).
27895                 2. It tries the search path specified in PrivateBinPath for the
27896                 current domain (if any).
27898                 3. Previous behavior.
27900 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
27902         * icall.c: implemented GetInterfaceMap() related icall.
27903         * domain.c, loader.h: load MethodInfo in mono_defaults.
27905 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
27907         * gc.c: disable the finalizer thread for now, untill all the issues
27908         with it are resolved.
27910 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
27912         * string-icalls.c: handle embedded nulls in string ctor when the
27913         length is specified.
27915 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
27917         * class.c: look for explicit interface implementation in parent
27918         classes, too.
27920 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
27922         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
27924 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
27926         * gc.c: protect handles with a critical section.
27928 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27930         * icall.c:
27931         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
27932         parameters. If no assembly specified, try getting the type from all
27933         the assemblies in the current domain, else, load the assembly and get
27934         the type from it.
27936 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27938         * marshal.c: applied patch from Aleksey Demakov that fixes
27939         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
27941 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27943         * icall.c: fixed get_location.
27945 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
27947         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
27948         declarations to make it work with older gcc. 
27950         * loader.c (mono_get_method): set signature->pinvoke for native calls
27952 2002-11-20  Dick Porter  <dick@ximian.com>
27954         * threads.c (mono_thread_init): Set the main thread's handle
27956 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
27958         * gc.c: allow compilation without GC support. Changed to match the
27959         mono coding style.
27961 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
27963         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
27965 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
27967         * reflection.c: set a public key token on the core assemblies.
27969 2002-11-18  Dick Porter  <dick@ximian.com>
27971         * threads.c: Split out some thread initialisation so that other
27972         files can set the start callback function.
27974         * gc.c: Run finalisers in a separate thread, to avoid stack
27975         overflow.  Fixes bug 31333.
27977         * appdomain.c: Set up GC finalisation thread.
27979         * reflection.c: 
27980         * object.c: 
27981         * domain.c: Use gc.h macros for GC_malloc
27982         
27983 2002-11-15  Dick Porter  <dick@ximian.com>
27985         * threadpool.c: 
27986         * threads.c:
27987         * appdomain.c: Removed mono_runtime_init_with_attach(),
27988         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
27989         merging the extra parameter with the existing function.  Removed
27990         unneeded code in mono_thread_attach().
27992 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
27994         * image.c (mono_image_loaded_by_guid): a method to get loaded
27995         images by guid. 
27996         (load_metadata_ptrs): we store the guid as string.
27998 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
28000         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
28002         * metadata.c (mono_guid_to_string): imported method form Zoltan
28003         Varga (slightly modified)
28005         * assembly.c (mono_assembly_open): load precompiled code
28007         * loader.h (MonoMethod): we store the method token for use in the
28008         aot compiler. 
28010 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28012         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
28013         the hook function called when an assembly is loaded.
28014         
28015         * domain.c: Modified file.
28016         (mono_domain_assembly_load): removed hash table insertion of assemblies.
28018         Fixes bug #33196.
28020 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
28022         * reflection.c: Map PEFileKind to the value expected by the WinNT
28023         image loader. 
28025 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28027         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
28028         Read until the buffer is filled completely.
28030 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28032         * icall.c: implemented MonoType.InternalGetEvent ().
28034 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28036         * appdomain.c: implemented InitAppDomainSetup. Delayed
28037         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
28038         the entry_assembly.
28040         * assembly.c: base_dir is now an absolute path ending with
28041         G_DIR_SEPARATOR.
28043         * icall.c: modified get_location according to the above changes.
28045         * object.c: init AppDomain.SetupInformation for the default domain after
28046         we have the entry assembly.
28048         * domain.c: when unloading a domain, setup = NULL.
28050 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
28052         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
28054 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
28056         * object.h, object.c: introduced mono_object_get_virtual_method ()
28057         to lookup the method invoked on an object when a callvirt is done on
28058         a method.
28059         * icall.c: make MethodInfo::Invoke() always do a virtual call.
28061 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28063         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
28064         current domain when loaded an assembly and failed to load it.
28066         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
28068 2002-10-31  Dick Porter  <dick@ximian.com>
28070         * icall.c: 
28071         * file-io.h: 
28072         * file-io.c: Return the error status in a parameter, as the
28073         GetLastError() value has long since been blown away if we try and
28074         look it up in a subsequent internal call invocation.  Delete the
28075         GetLastError() internal call, because it's useless.
28077 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
28079         * class.[ch]: added cast_class to fix bug 29517
28081 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
28083         * marshal.c: create valid IL code in the filter clause:
28084         the new JIT is less forgiving:-)
28086 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28088         * icall.c: removed get_property internal call.
28090 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
28092         * appdomain.h domain.c: Added an ID to appdomains.
28093         
28094         * threads.c threads.h icall.c: Implement icall
28095         Thread:GetDomainID(), and remove unused icall 
28096         CurrentThreadDomain_internal.
28098 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28100         * icall.c: Don't recurse through the base types in GetConstructor.
28101         Fixes bug #32063. 
28103 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
28105         * mempool.h, mempool.c: added mono_mempool_empty() and
28106         mono_mempool_stats().
28108 2002-10-23  Dick Porter  <dick@ximian.com>
28110         * file-io.c: 
28111         * file-io.h: 
28112         * icall.c: Added MonoIO.GetFileType internal call
28114 2002-10-17  Dick Porter  <dick@ximian.com>
28116         * appdomain.c (mono_runtime_cleanup): Don't signal the async
28117         delegate semaphore before waiting for all threads to finish,
28118         because new threads can also call async delegates.  Fixes bug
28119         32004.
28121         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
28122         of 3 seconds, in case another async job is queued.  (This part is
28123         needed because the bug fix reintroduced the 3s exit lag.)  This
28124         makes the mono_runtime_shutdown flag superfluous.
28126 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
28128         * reflection.c: include ehader size in method section headers.
28129         Really check for suplicated modules entries.
28131 2002-10-17  Martin Baulig  <martin@gnome.org>
28133         * debug-mono-symfile.c: Added back support for locals.
28135 2002-10-14  Martin Baulig  <martin@gnome.org>
28137         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
28138         MONO_TYPE_VOID.
28140 2002-10-14  Martin Baulig  <martin@gnome.org>
28142         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
28143         mono_class_get() instead of looking in the class cache. 
28145 2002-10-13  Martin Baulig  <martin@gnome.org>
28147         * debug-mono-symfile.c: Set version number to 28, include the
28148         signature in method names.
28150 2002-10-13  Martin Baulig  <martin@gnome.org>
28152         * debug-mono-symfile.h: Set version number to 27.
28154 2002-10-11  Martin Baulig  <martin@gnome.org>
28156         * gc.c: Don't register/unregister NULL pointers as disappearing links.
28158 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
28160         * metadata.c, metadata.h: added helper function to allocate signatures.
28162 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28164         * icall.c: added internal call to get the location of machine.config.
28166 2002-10-08  Martin Baulig  <martin@gnome.org>
28168         * debug-mono-symfile.c: Ignore classes with a pending init for the
28169         moment.
28171 2002-10-03  Dick Porter  <dick@ximian.com>
28173         * threads.c: Freebsd pthread_t is a pointer
28175 2002-10-03  Dick Porter  <dick@ximian.com>
28177         * socket-io.c: Implemented GetHostName_internal
28179 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28181         * mono-config.c:
28182         (mono_config_parse_file): don't leak the text.
28184 2002-10-02  Martin Baulig  <martin@gnome.org>
28186         * debug-mono-symfile.c: Added support for methods.
28188 2002-10-01  Martin Baulig  <martin@gnome.org>
28190         * debug-mono-symfile.c: Don't emit methods and line numbers for
28191         the dynamic symbol file, just write the type table.  We can easily
28192         have an external helper program which creates a symbol file for an
28193         IL file.        
28195 2002-10-01  Dick Porter  <dick@ximian.com>
28197         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
28198         Only add the handle to the cleanup array when we're about to
28199         launch the thread.  Bug 31425 deadlocked when the test was run on
28200         mono under w32.
28202 2002-10-01  Martin Baulig  <martin@gnome.org>
28204         * debug-mono-symfile.c: Added support for properties.
28206 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
28208         * reflection.c: unaligned store fix from Mark Crichton
28209         <crichton@gimp.org>.
28211 2002-09-27  Martin Baulig  <martin@gnome.org>
28213         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
28214         New interncall.
28216 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
28218         * assembly.h, assembly.c: use a sane API to hook into the assembly
28219         loading process instead of a useless special-purpouse hack
28220         (ngen needs a hook, too, for example).
28222 2002-09-27  Dick Porter  <dick@ximian.com>
28224         * threads.c (mono_thread_init): Call GetCurrentProcess() so
28225         io-layer can set up some process handle info.  Not needed on w32,
28226         but doesn't hurt either.
28228         * process.c: Pass the program name in the second parameter to
28229         CreateProcess, so the path is searched.  Include the working
28230         directory. Implemented process name, process enumeration, and some
28231         process detail internal calls.
28232         
28233         * icall.c: Added internal calls for process lookup, and some
28234         process details
28236 2002-09-26  Martin Baulig  <martin@gnome.org>
28238         * assembly.c (mono_install_open_assembly_hook): New global
28239         function to install a function to be invoked each time a new
28240         assembly is loaded.
28241         (mono_assembly_open): Run this callback function if set.
28243         * debug-mono-symfile.c: Put back line numbers for the dynamic
28244         symbol file and also record the .il file as source file.  This
28245         allows us to install the temporary symbol file as `file.dbg' just
28246         like a compiler-generated one.
28248 2002-09-26  Nick Zigarovich <nick@chemlab.org>
28250         * Corrected typo in gc.c (BOHEM vs BOEHM).
28252 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28254         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
28255         GetProperties. Also avoid calling g_slist_length in GetProperties and
28256         GetMethods.
28258 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28260         * reflection.c: avoid unaligned stores (bug spotted by
28261         Mark Crichton  <crichton@gimp.org>).
28263 2002-09-25  Martin Baulig  <martin@gnome.org>
28265         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
28266         instead of guint64 for addresses and added prologue/epilogue info.
28268 2002-09-25  Martin Baulig  <martin@gnome.org>
28270         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
28271         store line number info.  For the dynamic symbol file, we only need
28272         to provide the JIT generated dynamic line number info for the dynamic
28273         symbol file.
28275 2002-09-25  Martin Baulig  <martin@gnome.org>
28277         * debug-mono-symfile.h: Incremented version number.
28279 2002-09-24  Martin Baulig  <martin@gnome.org>
28281         * class.c (mono_debugger_class_init_func): New global function
28282         pointer variable.
28283         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
28284         call it.
28286         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
28287         function.  This is called via the mono_debugger_class_init_func
28288         hook to add all types to the dynamic type table.
28289         (ves_icall_MonoDebugger_GetType): New interncall to get a class
28290         from its metadata token.
28292         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
28293         New interncall for the debugger.
28295 2002-09-24  Nick Drochak <ndrochak@gol.com>
28297         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
28298         before using it in case it is null.
28299         
28300 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28302         * metadata.c: allow custom modifiers in local var signatures
28303         (bug spotted by Zoltan Varga).
28305 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
28307         * class.c: deal with the <Module> class that may have a NULL vtable.
28308         Eliminate warnings.
28310 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28312         * image.c, image.h: more strong name helpers.
28313         * monosn.c: more work: convert pem keys to cryptoapi format.
28315 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
28317         * string-icalls.c: speedup IndexOf.
28319 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28321         * icall.c: updates from Zoltan.2.Varga@nokia.com.
28323 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28325         * icall.c: cleanup: use mono_object_domain ().
28327 2002-09-23  Martin Baulig  <martin@gnome.org>
28329         * debug-mono-symfile.c: Improved type support.
28331 2002-09-22  Martin Baulig  <martin@gnome.org>
28333         * debug-mono-symfile.c: Added support for reference types and strings.
28335 2002-09-22  Martin Baulig  <martin@gnome.org>
28337         * debug-mono-symfile.c: Started to work on the type table.
28339 2002-09-21  Martin Baulig  <martin@gnome.org>
28341         * debug-mono-symfile.c: Largely reworked the symbol table format.
28342         The symbol table is now incrementally updated each time a new
28343         method is added.  We're now also using our own magic and version
28344         so that you don't need to recompile all your classes if the
28345         dynamic table changes.
28346         (mono_debug_update_mono_symbol_file): Removed.
28347         (mono_debug_symfile_add_method): New function to add a method.
28349 2002-09-21  Martin Baulig  <martin@gnome.org>
28351         * icall.c
28352         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
28353         New interncall.
28355         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
28356         New interncall to get a method from its metadata token.
28358 2002-09-21  Martin Baulig  <martin@gnome.org>
28360         * debug-mono-symfile.c: Create type table.
28362 2002-09-20  Martin Baulig  <martin@gnome.org>
28364         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
28366 2002-09-20  Martin Baulig  <martin@gnome.org>
28368         * debug-mono-symfile.c: Provide information about params and locals.
28370 2002-09-20  Martin Baulig  <martin@gnome.org>
28372         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
28373         New interncall.
28375         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
28376         interncall to get a method from its metadata token.
28378 2002-09-20  Martin Baulig  <martin@gnome.org>
28380         * debug-mono-symfile.c: Added a few checks for method->header
28381         being non-NULL.  This should never happen, but for the moment
28382         let's use a g_warning() rather than a g_assert().
28384 2002-09-19  Mark Crichton  <crichton@gimp.org>
28386         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
28387         even if support for it isn't present.  Added an #ifdef to fix this.
28389         * socket-io.c: Added checks back for Solaris support.
28391 2002-09-19  Martin Baulig  <martin@gnome.org>
28393         * debug-mono-symfile.c (read_string, write_string): Reflect latest
28394         changes in the symbol file format.
28396 2002-09-18  Martin Baulig  <martin@gnome.org>
28398         * debug-mono-symfile.c: Set version number to 21.
28400 2002-09-18  Dick Porter  <dick@ximian.com>
28402         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
28403         on netbsd.  Fixes bug 30051.
28405 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28407         * reflection.c:
28408         (set_version_from_string): little fix.
28410 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28412         * monosn.c, Makefile.am: added strong name utility.
28413         * reflection.h, reflection.c: implemented delayed signing,
28414         locale, version and hash id assembly attributes.
28416 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
28418         * loader.c, metadata.c: load param attributes in signatures.
28420 2002-09-16  Martin Baulig  <martin@gnome.org>
28422         * debug-mono-symfile.c: Added string table with all method names.
28424 2002-09-14  Martin Baulig  <martin@gnome.org>
28426         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
28427         fast method lookup.
28429 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28431         * reflection.c: record the public key token of referenced assemblies.
28433 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
28435         * image.c, image.h: added functions to get the strong name and the
28436         public key of an assembly.
28437         * pedump.c: use them.
28439 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
28441         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
28443 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
28445         * marshal.c (mono_marshal_get_managed_wrapper): Added
28446         MONO_TYPE_BOOLEAN 
28448 2002-09-11  Martin Baulig  <martin@gnome.org>
28450         * gc.c: Call GC_unregister_disappearing_link() on all links when
28451         finalizing them, this is necessary to aviod a crash in boehm's
28452         finalize handler.
28454 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28456         * gc.c: handle GetTarget for finalized objects spotted and fixed by
28457         nick@chemlab.org.
28459 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
28461         * icall.c: implemented MonoType::Module.
28462         * reflection.c, reflection.h: mono_module_get_object () from
28463         Tomi Pakarinen <tomi.pakarinen@welho.com>.
28465 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
28467         * icall.c: ignore overridden methods in GetMethods ().
28468         Fix for FieldInfo::SetValue().
28469         * object.c: handle float/double in runtime invoke.
28471 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
28473         * object.c: allow a constructor to be called again on an object.
28475 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28477         * class.h, class.c: move field layout code to it's own function and
28478         export it. Get an interface id earlier. Move fields in MonoClass
28479         so they are more cache friendly and align the bitfields.
28480         * loader.c: temporary handle get_param_names() for a runtime method.
28481         * reflection.c, reflection.h: more code to handle runtime creation of
28482         types.
28484 2002-09-09  Martin Baulig  <martin@gnome.org>
28486         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
28487         signature with the pinvoke field being set for the actual call.
28489 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28491         * icall.c: removed some unused icalls. Start of map of glib charsets
28492         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
28494 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28496         * debug-helpers.c: break infinite loop (found and fixed by
28497         Holger Arnold <harnold@gmx.de>).
28499 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28501         * icall.c: target may be null in create_delegate.
28503 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
28505         * marshal.c: handle a boolean return type.
28507 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28509         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
28511 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28513         * gc.c: fix weakreferences.
28515 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
28517         * icall.c: added icall to get default codepage.
28519 2002-09-03  Dick Porter  <dick@ximian.com>
28521         * threads.h: 
28522         * threads.c: Use MonoThread instead of MonoObject where
28523         apropriate.
28525         Store running thread objects in a hash table, so that we have all
28526         the info to hand when waiting for them to finish
28527         (means we don't need OpenThread() any more, so mingw builds should
28528         be fully functional again.)
28530         * verify.c:
28531         * object.h: Added thread ID to MonoThread
28533 2002-09-03  Martin Baulig  <martin@gnome.org>
28535         * icall.c (System.Reflection.Assembly::get_location): New interncall.
28537 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28539         * icall.c: fixed leak in get_temp_path. Thanks lupus.
28541 2002-09-03  Martin Baulig  <martin@gnome.org>
28543         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
28544         argument to store the end address of the disassembled instruction.
28546         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
28547         here from debug-symfile.h.
28548         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
28549         JIT into this struct.
28550         (MonoSymbolFile): Added `char *image_file' field.
28551         (MonoDebugGetMethodFunc): Removed.
28552         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
28553         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
28554         (mono_debug_find_method): New method.
28556         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
28557         create a full symbol file.
28558         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
28559         and static symbol files.
28560         (mono_debug_find_method): The symbol file keeps an internal method hash,
28561         call this to get a MonoDebugMethodInfo from a MonoMethod.
28563         * debug-symfile.[ch]: Removed.
28565 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
28567         * image.c (do_mono_image_open): Remove linker version check.
28569 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
28571         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
28572         wrappers for instance methods.
28573         
28574 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28576         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
28578 2002-08-28  Dick Porter  <dick@ximian.com>
28580         * Makefile.am: Export HOST_CC for w32 builds
28582 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
28584         * file-io.c process.c: MonoString are null terminated, no
28585         need for mono_string_to_utf16() anymore.
28587 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28589         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
28591 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
28593         * icall.c, reflection.h: speedup System.MonoType.
28595 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
28597         * reflection.c: allow null as the value of a string argument in
28598         custom attributes constructors.
28600 2002-08-27  Martin Baulig  <martin@gnome.org>
28602         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
28603         `trampoline_address' field.
28605 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
28607         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
28608         check (fixes bug #29486) 
28610 2002-08-27  Martin Baulig  <martin@gnome.org>
28612         * debug-mono-symfile.c: Changed the file format in a way that allows us
28613         open it read-only and to use a specially malloced area for all the
28614         dynamic data.  We can now also generate a symbol file on-the-fly if we're
28615         debugging IL code and there is no MCS generated symbol file for it.
28617 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
28619         * object.c: added a define for a good string and array
28620         creation speedup (not enabled by default because we need to deal with
28621         the synch stuff).
28623 2002-08-26  Martin Baulig  <martin@gnome.org>
28625         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
28626         function to create a dynamic symbol file.  This is used by the
28627         debugger to create a symbol file for IL code on-the-fly.
28629 2002-08-26  Martin Baulig  <martin@gnome.org>
28631         * loader.c (mono_lookup_pinvoke_call): Include the error message
28632         from g_module_error() in the error message.
28634 2002-08-24  Martin Baulig  <martin@gnome.org>
28636         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
28637         function to update the symbol file.  The symbol file is mmap()ed
28638         writable, but private.  This allows us to install the symbol file
28639         together with the assembly.
28641 2002-08-24  Martin Baulig  <martin@gnome.org>
28643         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
28644         but they can read the new symbol file format which mcs is now creating.
28646         * debug-symfile.c (mono_debug_find_source_location): Moved to
28647         debug-mono-symfile.c; this is now operating on the new symbol file.
28649 2002-08-23  Martin Baulig  <martin@gnome.org>
28651         * debug-helpers.c (mono_method_desc_from_method): New function to get
28652         a MonoMethodDesc from a MonoMethod.
28654 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28656         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
28657         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
28659 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
28661         * string-icalls.[ch]: make helper methods static.
28663 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28665         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
28666         types to it and to SetValueInternal.
28668         * object.c: Moved handle_enum label to its proper place. This was the
28669         f... bug! ;-)
28671         This time i compiled mcs and gtk-sharp and they both work.
28673 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28675         * icall.c: reverted partially my previous patch until 
28676         object.c:set_value handles enums correcly.
28678 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28680         * icall.c:
28681         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
28682         (ves_icall_System_Environment_get_MachineName): removed warning when
28683         compiling under cygwin.
28685 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
28687         * object.c: fixed field_get_value() for reference types.
28689 2002-08-22  Dick Porter  <dick@ximian.com>
28691         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
28692         Don't free a buffer while it's still needed.  Patch from Jonathan
28693         Liger <Jonathan.liger@wanadoo.fr>
28695 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
28697         * icall.c (ves_icall_System_Environment_get_Platform): Add new
28698         internal call.
28700 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
28702         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
28703         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
28705         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
28706         we call unmanaged code which throws exceptions.
28708 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28710         * appdomain.h: added per-domain entry_assembly.
28711         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
28712         arguments.
28713         * icall.c: Assembly::GetEntryAssembly icall.
28714         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
28715         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
28717 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28719         * appdomain.h, gc.c: added mono_domain_finalize ().
28721 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28723         * object.c:
28724         (mono_print_unhandled_exception): changed g_warning by g_printerr
28725         because g_log has a 1024 characters limit (yeah, i got a big stack
28726         trace). Don't print exception name, that should be in ToString 
28727         returned string.
28729 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28731         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
28732         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
28734 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28736         * object.c:
28737         (mono_print_unhandled_exception): after previous commit, i realized
28738         that MS calls ToString on the exception. I changed this function to
28739         do that. This way we get stack_trace for free.
28741 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28743         * object.c:
28744         (mono_print_unhandled_exception): invoke Message property instead of
28745         getting 'message' field from Exception. Don't allocate memory for
28746         'trace' and 'message' if not needed.
28748 2002-08-18  Dick Porter  <dick@ximian.com>
28750         * unicode.c: Fix asserts to match Encoder.cs checks
28752 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28754         * marshal.c: fix unaligned store issue and a few wrong
28755         opcode argument types.
28757 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28759         * icall.c: added GetUninitializedObjectInternal internal call.
28761 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
28763         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
28764         to the right domain.
28766 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
28768         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
28770         * class.c (class_compute_field_layout): set blittable to false for Strings
28772         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
28774 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28776         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
28777         first chunk of code to create types at runtime. Code to
28778         handle ReflectedType/DeclaringType. Make reflection handles
28779         domain specific.
28781 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
28783         * class.c: set correct name in arrays.
28785 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
28787         * appdomain.c (mono_domain_transfer_object): make it work with
28788         valuetypes. bug fixes.
28790 2002-08-12  Dick Porter  <dick@ximian.com>
28792         * object.h: Rename some parameters to avoid c++ keywords (Patch
28793         from Joseph Wenninger <kde@jowenn.at>)
28795 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
28797         * icall.c: added icall to implement Assembly.GetFile*.
28799 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28801         * reflection.h, reflection.c: code to embed managed resources.
28803 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28805         * class.c: move all the type size stuff into
28806         class_compute_field_layout().
28808 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28810         * class.c: ensure enums have always the correct instance size.
28811         * unicode.c: remove wrong assert.
28813 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
28815         * assembly.c: fix mem corruption issue.
28816         * image.h, image.c: added mono_image_get_resource () to access
28817         managed resources.
28818         * icall.c: implemented Assembly.EntryPoint property and some
28819         Managed Resources related internalcalls.
28822 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28824         * image.c, image.h: impemented mono_image_get_entry_point ().
28825         * appdomain.c: use mono_image_get_entry_point.
28827 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28829         * reflection.c: support the object type argument when loading
28830         custom attributes.
28832 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
28834         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
28835         String as return type.
28837 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
28839         * reflection.c: fix encoding of named args for custom attrs to match
28840         the ms implementation. Read them back when instantiating custom
28841         attributes.
28843 2002-08-02  Radek Doulik  <rodo@ximian.com>
28845         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
28846         by Dietmar as quick fix
28847         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
28848         16 as stack size, used on more places as quick fix before Dietmar
28849         will fix it properly
28851 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
28853         * object.h, object.c: added accessors for fields and properties.
28855 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
28857         * class.c, class.h: made mono_class_get_field_from_name ()
28858         loop on parent types.
28859         Added mono_class_get_property_from_name ().
28861 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
28863         * class.c, class.h: move the code to setup the type vtable in its own
28864         function so that it can be reused also for types created at runtime.
28865         Eliminate the "class" identifier from the header file.
28866         * reflection.c: setup the vtable for enums so that we can create
28867         objects for use in SetConstant ().
28869 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
28871         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
28872         instead of the delegate itself as this pointer (bug #28383)
28874 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
28876         * marshal.c (mono_marshal_get_managed_wrapper): added return type
28877         conversions.
28879 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28881         * loader.c: don't set the pinvoke bit on icalls.
28883 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
28885         * debug-helpers.c (mono_method_full_name): only print a number to
28886         indicate wrapper type (so that the output is more readable in traces).
28888 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
28890         * class.c (mono_class_init): include method override patch from Paolo
28892 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
28894         * icall.c: fixed GetTypeCode().
28896 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
28898         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
28899         use real delegate invoke function to make it work with multicast
28900         delegates (fix bug# 28291).
28902 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
28904         * object.c: load constant strings.
28906 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28908         * reflection.c: no magic numbers.
28909         * tabledefs.h: security action enum.
28911 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
28913         * assembly.c: fix possible memory corruption.
28915 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
28917         * reflection.h, reflection.c: added support for linking resources.
28918         * verify.c: check we have an updated corlib.
28920 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
28922         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
28923         string arrays.
28924         (mono_marshal_string_array): null terminate unmanaged string arrays.
28925         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
28927 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
28929         * icall.c: Type.GetType () can now return also types from the
28930         calling assembly.
28932 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
28934         * loader.h, loader.c: stack walking support.
28935         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
28936         GetCallingAssembly.
28938 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
28940         * marshal.c: added optimisations for blittable types 
28942         * class.c (mono_array_class_get): do not set blittable attribute on arrays
28943         (mono_class_setup_mono_type): set blittable attribute for single
28944         and double.
28946         * marshal.c (mono_string_utf8_to_builder): impl.
28947         (mono_string_builder_to_utf8): impl.
28948         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
28950 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
28952         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
28953         (mono_marshal_get_managed_wrapper): impl. byref types
28955 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28957         * icall.c:
28958         (search_method): don't display debug message. 
28960 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
28962         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
28964 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
28966         * appdomain.c: set the missing filename when throwing exception.
28968 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
28970         * metadata.c (mono_type_size): code cleanup
28971         (mono_type_stack_size): removed some test code
28973 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
28975         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
28976         mono_get_exception_file_not_found now.
28978         * exception.c (mono_exception_from_name_two_strings): New version
28979         that will call a constructor with two string arguments. 
28980         (mono_get_exception_file_not_found): New helper routine, used to
28981         report file-not-found errors.
28983 2002-07-20  Dick Porter  <dick@ximian.com>
28985         * process.h:
28986         * process.c: Pass file handles to CreateProcess
28987         
28988         * icall.c:
28989         * file-io.h:
28990         * file-io.c: Implemented CreatePipe
28992 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
28994         * metadata.c (mono_get_param_info): set alignment for value types
28996 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28998         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
28999         Constify mono_domain_assembly_open().
29000         * loader.c: handle null namespace in icalls.
29002 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
29004         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
29005         (emit_str_to_ptr_conv): marshal object as structs
29007         * metadata.c (mono_type_to_unmanaged): marshal object as structs
29009         * marshal.c (mono_marshal_get_runtime_invoke): support value types
29011 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
29013         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
29014         (mono_marshal_get_native_wrapper): we an now return value types
29016 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29018         * verify.c: more checks implemented.
29020 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
29022         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
29023         (fix bug #27695)
29024         (mono_marshal_get_native_wrapper): allow byref arguments
29025         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
29026         impl. PtrToStringXXX methods
29027         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
29028         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
29029         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
29030         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
29031         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
29033 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29035         * reflection.c: fix buglet in parsing an assembly name.
29037 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
29039         * marshal.c (emit_ptr_to_str_conv): first impl.
29041 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29043         * object.c, class.h: cache the vtable in the class as suggested by
29044         vargaz@freemail.hu (Zoltan Varga).
29046 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29048         * class.h, loader.c: added mono_field_from_token().
29049         * verify.c: first cut of type checking code.
29051 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
29053         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
29055 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
29057         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
29058         (fix bug #27782)
29059         (mono_marshal_get_remoting_invoke): impl.
29060         (mono_delegate_begin_invoke): impl.
29061         (mono_mb_emit_save_args): impl.
29062         (mono_delegate_end_invoke): impl.
29063         (mono_marshal_get_delegate_begin_invoke):
29064         (mono_marshal_get_delegate_end_invoke):
29065         (mono_marshal_get_delegate_invoke): generate a special name for
29066         those methods (including the signature) and associate them whith
29067         the delegate class. 
29069 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
29071         * reflection.[ch]: 
29072         (mono_reflection_type_from_name): now it has a MonoImage parameter
29073         which is used as the default image to search the type in. If the image
29074         is NULL or getting the type from it fails, it defaults to corlib.
29076         * icall.c: changed 1 call to mono_reflection_type_from_name to match
29077         new parameter.
29079 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29081         * reflection.c: update the parameter table index.
29083 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
29085         * domain.c: don't include the mark byte in the string hash.
29087 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
29089         * icall.cs: icall for Type.GetTypeCode ().
29090         * verify: a couple of fixes and disabled local initialization checks.
29092 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
29094         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
29096         * debug-helpers.c (mono_method_full_name): print the type of the
29097         runtime wrapper
29099         * metadata.c (mono_signature_hash): a hash function for signatures
29100         (mono_signature_hash): better hash algorithm
29102         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
29104         * debug-helpers.c (mono_method_full_name): this can now generate
29105         method names with signatures
29107         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
29108         method dont have this pointers.
29110 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
29112         * reflection.c: fixup typebuilder tokens.
29113         * image.c: fix buglet.
29114         * marshal.h: remove whitespace.
29115         * metadata.h, metadata.c: reinstate code that was removed.
29116         * verify.c: handle catch directives and fix another couple of bugs.
29118 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
29120         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
29121         (mono_marshal_get_native_wrapper): make it comp. with the old code
29122         (mono_marshal_get_native_wrapper): support boolean
29123         (mono_marshal_get_managed_wrapper): support more types
29125 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
29127         * class.c (class_compute_field_layout): compute class->blittable attribute.
29129 2002-07-09  Dick Porter  <dick@ximian.com>
29131         * threads.c: Make the thread cleaning up cope with threads that
29132         call ExitThread()
29134 2002-07-08  Radek Doulik  <rodo@ximian.com>
29136         * reflection.c (method_encode_code): use non-translated values to
29137         compute finally_start, this fixes exception handling on ppc, yay!
29139         * decimal.h (struct signscale): fix endianess
29141 2002-07-07  Radek Doulik  <rodo@ximian.com>
29143         * reflection.c: swap box_val and not val
29145 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
29147         * reflection.c, reflection.h: handle full assembly info in type name.
29148         Handle Type arguments when loading custom attributes.
29149         * icall.c: updated to use new mono_reflection_type_from_name () method.
29151 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29153         * loader.c:
29154         (method_from_memberref): also print assembly name when method not found.
29156 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29158         * icall.c:
29159         (ves_icall_TypeGetProperties): fixed bug #27473. 
29161 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29163         * reflection.c: display image name and token when cannot find the
29164         .ctor for an attribute.
29166 2002-07-05  Martin Baulig  <martin@gnome.org>
29168         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
29170 2002-07-04  Dick Porter  <dick@ximian.com>
29172         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
29173         compile on mingw.  This will cause mingw builds to not wait for
29174         subthreads to terminate after the main thread does.  I've lodged a
29175         bug with the mingw developers for them to wrap OpenThread().
29177 2002-07-03  Dick Porter  <dick@ximian.com>
29179         * threads.c: Store thread IDs instead of handles, because
29180         GetCurrentThread() returns a pseudohandle and therefore stores
29181         useless values.  mono_thread_cleanup() continues checking the
29182         array of threads until it is empty, to cope with subthreads
29183         spawning new threads after the main thread has finished.
29185         * profiler.h:
29186         * profiler.c:
29187         * profiler-private.h: Pass the thread ID to thread profiler
29188         functions, instead of a handle
29190 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29192         * verify.c: fixes to make it more usable.
29193         * pedump.c: added --verify code to verify IL code in an assembly.
29195 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29197         * reflection.c: turn errors into warnings to allow compiling corlib.
29199 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
29201         * reflection.c: add special cases to compile corlib.
29203 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
29205         * reflection.c: handle properties with only a set method.
29207 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29209         * opcodes.h: add enum with opcodes in opval order.
29211 2002-07-01  Dick Porter  <dick@ximian.com>
29212         
29213         * object.h:
29214         * object.c (mono_runtime_run_main): Removed unneeded argument
29216 2002-06-28  Martin Baulig  <martin@gnome.org>
29218         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
29220 2002-06-27  Dick Porter  <dick@ximian.com>
29222         * threads.c: Store the handle in both the parent thread and in the
29223         subthread, to minimise the time between starting a new thread and
29224         storing its ID.
29226 2002-06-26  Dick Porter  <dick@ximian.com>
29228         * appdomain.c (mono_runtime_cleanup): Close the socket library
29229         after all the threads have finished, not before
29231 2002-06-26  Martin Baulig  <martin@gnome.org>
29233         * debug-symfile.c (mono_debug_find_source_location): Added
29234         `guint32 *line_number' argument.  If it's not NULL, store the line number
29235         there and return the file name without the line number.
29237 2002-06-25  Dick Porter  <dick@ximian.com>
29239         * icall.c:
29240         * process.h:
29241         * process.c: Process forking and other support functions
29243 2002-06-25  Dick Porter  <dick@ximian.com>
29245         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
29246         things dont happen when the image is closed.
29247         (mono_image_lookup_resource): Walk the resource section looking
29248         for a particular entry
29250         * cil-coff.h: PE resource section decoding
29252 2002-06-25  Dick Porter  <dick@ximian.com>
29253         
29254         * assembly.h:
29255         * assembly.c: 
29256         (mono_assembly_foreach): Accessor functions to walk the list of
29257         loaded assemblies
29258         (mono_assembly_set_main):
29259         (mono_assembly_get_main): Process methods need to know which
29260         assembly is the "main" one
29262         * object.c (mono_runtime_run_main): Record the main assembly
29264         * debug-helpers.c: Fix typo
29266 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
29268         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
29269         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
29271 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29273         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
29275 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
29277         * image.c (do_mono_image_open): Initialize reference count,
29278         otherwise we leak the MonoImage.
29280 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
29282         * reflection.c: small tweak to handle self-hosting.
29284 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
29286         * reflection.c: fix type name parse code.
29288 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
29290         * reflection.c: break out of the loop.
29291         * image.c: special case corlib.
29293 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29295         * reflection.c: add all the custom attrs at the end to ensure the
29296         ctors have been properly initialized when the attributes are defined
29297         in the current assembly.
29299 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
29301         * reflection.c: handle correctly multiple-nested types.
29303 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
29305         * row-indexes.h: fix typos.
29306         * reflection.c: adjust for typos and fix method_def_or_ref
29307         encoding in MethodImpl table.
29309 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29311         * reflection.c: fix entry point patching (thanks Serge!).
29313 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
29315         * verify.c: add check for System.Exception
29317 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
29319         * image.c, class.c: minifix for code just c&p'ed.
29320         * reflection.c: warning fix.
29321         * object.h, loader.h, domain.c: load also StringBuilder.
29323 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
29325         * marshal.h, marshal.c: some support code to handle complex marshaling.
29327 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29329         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
29330         Better signatures with vtable error dump.
29332 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
29334         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
29336 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
29338         * icall.c (ves_icall_Type_GetField): impl.
29340 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29342         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
29343         to retrieve a marshal description blob for a field or param.
29345 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
29347         * reflection.h, reflection.c: change order of nested type emission
29348         to avoid table corruption. The NestedTypes table is sorted.
29349         * icall.c: change order of GetConstructor results to workaround mcs bug.
29351 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29353         * reflection.h, reflection.c: handle field and param marshal
29354         information.
29356 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29358         * icall.c, marshal.c marshal.h: more Marshal class implementation.
29360 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29362         * reflection.c: fix call convention.
29364 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29366         * reflection.h, reflection.c: mono_image_get_memberref_token()
29367         takes a type instead of a class, now. Added
29368         mono_image_get_array_token() to create tokens for the special
29369         multi-dim array methods.
29371 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
29373         * assembly.c: handle modules (no assembly table). Split
29374         loading references in its own function.
29375         * class.c: handle moduleref resolution scope.
29376         * image.c, image.h: cache module name in image.
29378 2002-06-07  Martin Baulig  <martin@gnome.org>
29380         * reflection.c (mono_image_get_type_info): Only add a class layout entry
29381         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
29383 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29385         * icall.c: more signature fixes that used uint instead of int.
29387 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29389         * reflection.c: fixed signature of field refs.
29391 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29393         * class.c, reflection.c: handle typerefs of nested types
29394         (both on read and when writing files).
29396 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
29398         * icall.c: fix method signatures that tried to workaround the previous
29399         typo, d'oh!
29401 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29403         * debug-helpers.c: fix typo.
29405 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
29407         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
29408         rewrote the PE/COFF writing code (our programs are understood by the
29409         ms runtime, now).
29411 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
29413         * gc.c, gc.h, icall.c: weakreference support.
29415 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
29417         * Makefile.am, mono-config.c: use $(sysconfdir).
29419 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
29421         * icall.c: changed default precision of Double.ToString() to 15.
29422         Fixed memory leak. Unified with Single.ToString.
29424 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
29426         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
29428 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
29430         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
29431         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
29432         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
29433         and myself.
29435 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29437         * debug-symfile.c, sysmath.c: yet more compilation fixes.
29439 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
29441         * reflection.c, socket-io.c: more compilation fixes.
29443 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29445         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
29446         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
29447         unicode.c: warning and compiler compatibility fixes.
29449 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29451         * class.h, metadata.c: fixed warnings/compilation errors.
29453 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
29455         * Makefile.am, mono-config.c, mono-config.h: configuration file
29456         support routines.
29457         * loader.c, loader.h: make Dll mapping configurable at runtime in the
29458         config file. Export methods to insert and lookup mappings.
29460 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
29462         * reflection.c: handle types and boxed objects in custom attr
29463         constructors.
29465 2002-05-30  Martin Baulig  <martin@gnome.org>
29467         * debug-symfile.c
29468         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
29470 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
29472         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
29473         to lookup the implmap row for a P/Invoke method.
29474         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
29475         P/Invoke method from the runtime on an as needed basis.
29477 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
29479         * metadata.c (mono_metadata_parse_signature): impl.
29481 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29483         * class.c: handle .pack directive.
29485 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
29487         * object.c: initialize static fields with RVA data.
29489 2002-05-25  Martin Baulig  <martin@gnome.org>
29491         * debug-symfile.c
29492         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
29494 2002-05-24  Martin Baulig  <martin@gnome.org>
29496         * debug-symfile.c
29497         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
29498         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
29499         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
29501 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
29503         * object.c: special case string ctros in invoke.
29504         * gc.c: silly whitespace changes.
29506 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
29508         * threadpool.[ch]: impl. a threadpool that can
29509         be used by mint and mono.
29511 2002-05-22  Martin Baulig  <martin@gnome.org>
29513         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
29514         The first argument is now a `MonoReflectionModuleBuilder *', the return
29515         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
29516         `methods' field to get the method builder.  The `token' argument is the
29517         unfixed token.
29519         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
29520         invalid characters instead of g_assert_not_reached()ing.  This seems
29521         to be the behaviour of mscorlib.
29523 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
29525         * object.c (mono_runtime_invoke_array): applied patch from Rachel
29526         Hestilow to fix bug #25104
29528 2002-05-21  Martin Baulig  <martin@gnome.org>
29530         * debug-symfile.c (mono_debug_find_source_location): New function.
29531         Looks up an IL offset in the line number table and returns the source
29532         location as a string.
29534 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29536         * icall.c:
29537         (mono_double_ToStringImpl): changed %f by %g until we have something
29538         better.
29540 2002-05-21  Nick Drochak  <ndrochak@gol.com>
29542         * icall.c : Use different name for Math.Pow's icall.  Needed to check
29543         parameters first in C#.
29545 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29547         * icall.c, reflection.h: added icall to get info about an event.
29549 2002-05-20  Radek Doulik  <rodo@ximian.com>
29551         * object.c (mono_value_box): don't use memcpy for boxing on BIG
29552         endian
29553         (mono_value_box): don't use memcpy for small sizes on
29554         architectures with unaligned access
29556 2002-05-20  Martin Baulig  <martin@gnome.org>
29558         * reflection.c (mono_reflection_setup_internal_class): Don't crash
29559         if `tb->parent == NULL'.
29560         (mono_reflection_create_internal_class): New function.  This is
29561         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
29562         for enum types.
29564         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
29565         New interncall.
29567 2002-05-19  Martin Baulig  <martin@gnome.org>
29569         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
29570         argument to get the length, don't default to the array length.
29572 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
29574         * assembly.c (mono_assembly_setrootdir): New function used to
29575         override the MONO_ASSEMBLIES directory.
29577 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
29579         * icall.c: ValueType_GetHashCode() initialize local var.
29581 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
29583         * reflection.c: sort custom attributes table.
29585 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
29587         * reflection.c: support named args in custom attributes (write support).
29589 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
29591         * reflection.c: fix finally position calculation.
29593 2002-05-15  Radek Doulik  <rodo@ximian.com>
29595         * reflection.c: fixed endianess at many places
29597         * icall.c (ves_icall_InitializeArray): comment out debug msg
29599 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
29601         * object.c (mono_unhandled_exception): new function to handle
29602         unhandled exceptions.
29603         (mono_unhandled_exception): call the UnhandledException event.
29604         (mono_runtime_delegate_invoke): impl.
29606 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
29608         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
29609         returns the RVA, not the direct pointer to the data. Handle the case
29610         when the class size is fixed.
29612 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
29614         * reflection.c: fix some endianess issues.
29616 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
29618         * object.c (mono_runtime_invoke): is now able to catch exceptions.
29620         * threads.c (mono_thread_init): added a callback which is invoked
29621         at thread start.
29623 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
29624         
29625         * icall.c: make GetHashCode return non-negative values.
29627 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
29629         * object.c, icall.c, gc.c: revert to address-based hashcode.
29631 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
29633         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
29635 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29637         * icall.c, class.c: special case <Module>.
29639 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
29641         * icall.c: fix bug in GetNow().
29643 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
29645         * object.c (mono_runtime_class_init): make sure that we call all
29646         static class constructors.
29648 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
29650         * reflection.c: sort methodsemantics table.
29652 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
29654         * reflection.h, reflection.c: honour init locals setting.
29656 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
29658         * icall.c: copied Double ToStringImpl for Single ToStringImpl
29660 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
29662         * reflection.c: support ContructorBuilders in attribute blob creation.
29664 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29666         * reflection.c: some changes to build a binary that can be run
29667         directly in windows.
29669 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
29671         * loader.c: print a big message when an icall can't be found.
29673 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29675         * string-icalls.c: fix bug 24248.
29677 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
29679         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
29680         icall.c, reflection.h: separate assembly loading by pathname and by
29681         assembly name. Use the MONO_PATH env var to search for assemblies.
29683 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29685         * assembly.c, image.h: add some support for assemblies
29686         with multiple modules.
29687         * class.c, class.h: export mono_class_from_typeref().
29688         * loader.c: remove duplicated code and use mono_class_from_typeref(),
29689         instead.
29691 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29693         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
29694         documentation says (the ECMA one is correct).
29696 2002-05-02  Dick Porter  <dick@ximian.com>
29698         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
29699         Don't name the synchronisation mutex.
29701 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
29703         * rand.c
29704         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
29705         Make the prototypes match.
29706         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
29707         Same.
29709         * icall.c
29710         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
29711         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
29712         all systems have tm.tm_zone, so use strftime() with %Z to print
29713         the timezone abreviation into a temp string.
29715         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
29716         rather than mono_array_addr() on a MonoString on Big Endian
29717         machines.
29719 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
29721         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
29722         fix bug 24041
29724 2002-04-30  Dick Porter  <dick@ximian.com>
29726         * socket-io.c: Cope with SOCKET being an integer rather than a
29727         pointer now.
29729         * threads.c: Added Thread_free_internal, to deal with thread
29730         handle cleanup.  Moved calls to handle_store() and handle_remove()
29731         to start_wrapper(), so each can only be called once.  Allocate
29732         synchronisation blocks with GC_malloc(), and use GC finalisation
29733         to close the handles.
29735         * icall.c: added System.Threading.Thread::Thread_free_internal
29737 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
29739         * icall.c: support Environment.Exit, CommandLineArgs().
29741 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
29743         * object.c, object.h: added mono_runtime_run_main () and
29744         mono_runtime_get_main_args () for use in System.Environment.
29746 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
29748         * gc.c: fix thinko, enable actual finalization since the jit is now
29749         fixed.
29751 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29753         * gc.c, object.c: take into account that an object may be offset wrt the address
29754         returned by GC_malloc().
29756 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
29758         * image.c: handle files without entries in the assembly table (modules).
29760 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
29762         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
29763         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
29764         allowed to be null when it's System.Object class setup.
29766 2002-04-27  Martin Baulig  <martin@gnome.org>
29768         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
29769         if `tb->parent == NULL' rather than crashing.
29771 2002-04-28  Nick Drochak  <ndrochak@gol.com>
29773         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
29774         calling acos() where asin() should have been called.
29776 2002-04-26  Martin Baulig  <martin@gnome.org>
29778         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
29779         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
29780         there's a subdirectory called `System', but we don't want to read that
29781         subdirectory as an assembly.
29783 2002-04-25  Martin Baulig  <martin@gnome.org>
29785         * debug-symfile.c: Reflect latest MonoString changes.
29787 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
29789         * rand.c, rand.h: instance method icalls need to have an explicit
29790         this pointer as first argument in the C implementation.
29792 2002-04-25  Nick Drochak <ndrochak@gol.com>
29794         * icall.c: Fix typo in map for GetNonZeroBytes
29796 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29798         * string-icalls.c : String does now passes unit tests without any 
29799         errors, the following changes has been made:
29800         
29801         Implemented replace methods.
29802         Renaming of methods to (try) follow the standard.
29803         Fixed compare ordinal
29804         Made all memory allocated directly to function instead of via icall function.
29805         Small performance fix in is_in_array function
29806                         
29807  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
29809         c (mono_string_Internal_ctor_charp_int_int):
29810         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
29811         sindex < 0, throw ArgumentOutOfRangeException instead of
29812         ArgumentNullException.
29814         Added new check for length == 0, however
29815         I need to make it return String.Empty from the C code.
29816         
29817         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
29818         that calculate the length for us here.
29819         
29820         (mono_string_Internal_ctor_sbytep_int_int): Replaced
29821         mono_string_new_utf16 with mono_string_new, since value is utf8.
29823 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
29825         * object.c: register the object for finalization if needed.
29826         Allocate one more char in the string for the terminating 0 char.
29828 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
29830         * class.c, class.h, image.c: check if a type implemenst a destructor.
29831         Use the proper key for array class lookups.
29832         * icall.c: register the icalls in the System.GC class.
29833         * gc.c, gc.h: GC-related functions and icalls.
29835 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29837         * icall.c:
29838         * socket-io.c:
29839         * unicode.c: free some strings gotten from mono_string_to_utf8 and
29840         changed a couple of free () by g_free ().
29842         * decimal.c: one-liner in the comments for decimal2string ().
29844 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29846         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
29848 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
29850         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
29851         * object.c (mono_runtime_invoke_array) : handle null in params
29853 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29855         * string-icalls.c: fixed bug in split (one off bug)
29857 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29859         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
29860         * icalls.c: added String::Equals as internal method
29862 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
29864         * threads.c: fixed bug in the double interlocked functions
29866 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
29868         * threads.c: implemented all of the new interlocked icalls.
29869         * string-icalls.c: fix a bug in insert.
29870         * icalls.c: added the icalls for interlocked, removed old string functions.
29871         
29872 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
29874         * loader.c: fix off-by-one error when reading argument names.
29876 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
29878         * profiler.c: win32 counter implementation (untested).
29879         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
29880         (the latter needs testing and more complete impl. from win32 folks).
29882 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
29884         * object.c: mono_array_new_full workaround mono_array_class_get
29885         problem.
29887 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29889         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
29890         * object.h (mono_string_chars): Changed casting type.
29892 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29894         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
29895                            method signatures to use gunichar2 instead of gint16.
29897 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
29899         * object.h, object.c: domain-specific versions of mono_object_new and
29900         mono_array_new.
29902 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
29904         * object.c: changed String layout
29906         * string-icalls.c (mono_string_Internal_ctor_chara): added
29907         internal string constructors.
29909 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
29911         * threads.c: pass 'this' to the thread start routine.
29913 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29915         * string-icalls.c: fix IndexOf and LastIndexOf. Now
29916         InternalCompareStr don't call twice mono_string_cmp_char for the last
29917         character. Improved performance in mono_string_cmp_char.
29919 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
29921         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
29922         code into its own library: libmonoruntime.
29924 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
29926         * object.h, object.c: changed array format so that szarrays do not
29927         require a bounds structure.
29928         * icall.c, appdomain.c: support for new szarray format.
29930 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
29932         * metadata.c: compare also the retuns type when comparing signatures:
29933         we didn't do this as an optimization since really overloaded methods
29934         must differ also in the arguments, but this doesn't work with
29935         low-level IL code (or when using explicit conversion operators: see
29936         bug#23498 for an example).
29938 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
29940         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
29942 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
29944         * icall.c: make MonoType::GetElementType its own icall.
29946 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
29948         * icall.c: remove MonoMethod_get_Name().
29949         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
29950         object.
29952 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29954         * string-icalls.c: optimized a few methods.
29956 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
29958         * icall.c: added all new string internal calls
29959         * string-icalls.c: added, new string internal call implementation.
29960         * object.c: added mono_string_new_size for allocating a string a size
29962 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
29964         * object.c (mono_object_isinst): use the same code as in the
29965         optimized x86 version.
29967 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
29969         * profiler.c: TSC-based timer code (faster and more accurate).
29970         Not hooked up in configure, yet (set USE_X86TSC to 1).
29972 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
29974         * profiler.c, profiler.h: track time spent compiling methods.
29975         * threads.c: track thread creation/destruction.
29977 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
29979         * profiler.c, profiler.h, profiler-private.h: profiling interface
29980         and sample implementation. Moved here so that it can be used also by
29981         the jit.
29983 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
29985         * reflection.c, reflection.h: keep types and other handles separate in
29986         the hash tables for referred tokens. Add guid for modules.
29988 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
29990         * assembly.c: fix bugs found with valgrind.
29991         * metadata.h, metadata.c: added mono_metadata_guid_heap().
29993 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
29995         * threads: added icall support for getting current domain for
29996                    the thread.
29998 2002-04-13  Martin Baulig  <martin@gnome.org>
30000         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
30001         (MonoDebugVarInfo): Added `index' field for register based addresses.
30002         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
30003         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
30004         `MonoDebugVarInfo *params' and `guint32 this_offset' with
30005         `MonoDebugVarInfo *this_var'.
30007         * debug-symfile.c (relocate_variable): New static function to write
30008         a location description for a local variable or method parameter.
30010 2002-04-12  Martin Baulig  <martin@gnome.org>
30012         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
30013         stack offset and begin/end scope address of a local variable.
30014         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
30015         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
30016         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
30018         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
30019         Added new relocation types for start/end scope of a local variable.
30021 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
30023         * object.h: add mono_object_domain() macro.
30024         * reflection.c: handle typespecs.
30025         * icall.c: MonoMethod::get_Name() implementation.
30027 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
30029         * icall.c: String::GetHashCode() icall implementation.
30031 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
30033         * icall.c: String::IndexOfAny icall.
30034         * object.c, object.h: make array->max_length more useful.
30035         Intrduced mono_object_class() and mono_string_length() macros.
30037 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30039         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
30040         instead of g_unichar_isdigit.
30042 2002-04-11  Nick Drochak  <ndrochak@gol.com>
30044         * icall.c: Implement a simple Double.ToString().
30046 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
30048         * appdomain.h: only io-layer.h is supposed to be included.
30049         * icall.c: explicitly import environ. Fix warning.
30051 2002-04-10  Nick Drochak  <ndrochak@gol.com>
30053         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
30054                 return true even if it's not Daylight Savings time.
30055                 Only return false for the case where the function isn't
30056                 implemented for a plaform (read Windows).
30058 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
30060         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
30061         data with a mutex.
30063 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
30065         * mempool.c (mono_mempool_alloc): only use g_malloc when
30066         absolutely necessary.
30068 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
30070         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
30072         * class.c (mono_class_vtable): use domain mempool to allocate vtable
30073         (mono_class_proxy_vtable): use domain mempool
30075 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
30077         * appdomain.h, appdomain.c: split initialization that requires the
30078         execution engine support into mono_runtime_init().
30080 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
30082         * class.c (mono_class_init): don't include vtable inside MonoClass
30083         to save some memory, gather some statistics.
30084         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
30086 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
30088         * icall.c: internalcall implementation for ValueType.Equals().
30090 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
30092         * object.c (mono_message_init): moved 
30093         (mono_runtime_exec_main): new arch. independent impl.
30094         (mono_runtime_invoke_array): new method - like
30095         mono_runtime_invoke, but you can pass an array of objects.
30096         (mono_remoting_invoke): new arch. independent impl.
30097         (mono_message_invoke): new arch. independent impl.
30098         (mono_runtime_class_init): new arch. independent impl.
30099         (mono_runtime_object_init): new arch. independent impl.
30101 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
30103         * metadata.c, object.c, reflection.c: documented the exported
30104         functions.
30106 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
30108         * icall.c: simpler code to pass the assembly builder data to corlib.
30109         Implement GetNestedTypes() internalcall.
30111 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
30113         * class.c: warn if a type can't be loaded.
30115 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
30117         * image.h: typedef MonoImageOpenStatus
30118         * types.h: removed unused file
30119         
30120 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
30122         * icall.c: Enum_ToObject accepts enum value arguments.
30124 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
30126         * class.c: move initialization of properties, events and nested
30127         classes, so that they happen for interfaces, too.
30129 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
30131         * icall.c: cleanup some ugly casts in Array_SetValue*.
30133 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
30135         * icall.c: the values array fro enums is of the correct type, now.
30136         Implement (correctly) getFullName instead of assQualifiedName for
30137         MonoType.
30138         * reflection.h, reflection.c: added mono_type_get_name ().
30140 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
30142         * assembly.c, image.h: for each MonoImage, record from wich assembly
30143         it was loaded.
30144         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
30145         Make Type.Assembly work.
30147 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
30149         * debug-symfile.h: use char* instead of gpointer to avoid
30150         unnecessary casts.
30152         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
30154         * icall.c (ves_icall_InternalExecute): impl. FielSetter
30155         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
30157 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
30159         * icall.c (mono_message_init): impl. (code cleanup)
30160         (ves_icall_InternalExecute): impl. FieldGetter
30162         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
30163         defined we call all (non-static)methods through the vtable. 
30165 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
30167         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
30168         finalizer even though the memory is still referenced (and the chunk of
30169         memory is not freed).
30171 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
30173         * assembly.c: fix brokeness.
30175 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
30177         * class.c: kill some warnings. Check explicit interface method
30178         implementation also without considering the namespace.
30179         Load also literal strings in static class data.
30181 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
30183         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
30184         (default_assembly_name_resolver): Make the resolver take the
30185         "base" directory where the assembly was originally defined, so we
30186         can load DLLs that are in the same directory as the assembly that
30187         is being referenced.
30189 2002-03-28  Dick Porter  <dick@ximian.com>
30191         * file-io.h: 
30192         * file-io.c:
30193         * socket-io.c: 
30194         * unicode.h: 
30195         * unicode.c: Warning cleanups
30197 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
30199         * object.h, reflection.h: use the correct type instead of MonoObject.
30201 2002-03-28  Martin Baulig  <martin@gnome.org>
30203         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
30204         (mono_debug_update_symbol_file): Initialize classes if necessary.
30206 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
30208         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
30209         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
30211 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
30213         * assembly.h: fix function prototype.
30214         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
30215         * mono-endian.h: use const cast.
30217 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
30219         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
30221 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
30223         * loader.c: don't assert when a typeref can't be loaded, give
30224         a chance to the runtime to trow an exception instead.
30225         * loader.h: fix warning.
30227 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
30229         * class.c (mono_class_proxy_vtable): added proxy support
30231 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
30233         * icall.c: removed last of PAL calls, added System.Environment
30234         * file-io.h, file-io.c: MonoIO implementation
30235         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
30237 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
30239         * appdomain.c: do not use the byte marker in ldstr table lookup.
30240         * debug-helpers.c: allow two ':' to separate class and method name.
30241         * object.c: allocate arrays bounds with the GC, too.
30242         * verify: add a few more checks.
30244 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
30246         * reflection.c: output also literal strings. Allocate parameter data
30247         with GC_malloc() (thanks, Martin, for catching this!).
30249 2002-03-26  Martin Baulig  <martin@gnome.org>
30251         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
30252         include the `this' offset in the `param_offsets'.
30254 2002-03-25  Martin Baulig  <martin@gnome.org>
30256         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
30257         mono_debug_get_class() function to get the classes. Added new
30258         relocation types for arrays and strings.
30259         (mono_debug_get_class): New static function to search in all
30260         referenced assemblies for a metadata token.
30262         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
30264 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30266         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
30267         hold gc-allocated objects. Make the string heap a stream like the
30268         others. Removed duplicated code when writing stream info.
30269         Added asserts to catch possible buffer overflows. Set the sorted map
30270         for tables that need sorting. Added some documentation.
30272 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
30274         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
30275         for interned strings and vtables.
30277 2002-03-24  Martin Baulig  <martin@gnome.org>
30279         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
30280         it in the array since it was created with g_slist_prepend().
30282 2002-03-24  Martin Baulig  <martin@gnome.org>
30284         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
30285         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
30286         (mono_debug_method_from_token): Renamed to
30287         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
30288         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
30290         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
30291         relocation types.
30293         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
30295 2002-03-24  Martin Baulig  <martin@gnome.org>
30297         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
30298         (mono_debug_method_from_token): New func.
30300         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
30301         New interncall, calls mono_debug_local_type_from_signature().
30302         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
30303         calls mono_debug_method_from_token().
30305 2002-03-23  Martin Baulig  <martin@gnome.org>
30307         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
30308         specifies the number of bytes to be converted, not the array size.
30309         Return the number of chars, not the number of bytes.
30310         (ves_icall_iconv_get_chars): The `byteCount' argument
30311         specifies the number of bytes to be converted, not the array size.
30313 2002-03-23  Martin Baulig  <martin@gnome.org>
30315         * reflection.h (MonoReflectionSigHelper): New type.
30317         * reflection.c (mono_reflection_sighelper_get_signature_local),
30318         (mono_reflection_sighelper_get_signature_local): New functions.
30320         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
30321         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
30322         interncalls.
30324 2002-03-23  Martin Baulig  <martin@gnome.org>
30326         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
30327         is_writeable is set.
30328         (mono_raw_buffer_update): New function to write the modified map
30329         back to disk.
30331         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
30333         * debug-symfile.c (mono_debug_update_symbol_file): Call
30334         mono_raw_buffer_update() when done writing.
30336 2002-03-23  Martin Baulig  <martin@gnome.org>
30338         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
30340         * debug-symfile.c: Added support for arguments and local variables.
30342 2002-03-23  Dick Porter  <dick@ximian.com>
30344         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
30345         protected by ifdefs, hence breaking the w32 build.
30347 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30349         * object.c: implement is_interned() the right way.
30351 2002-03-21  Martin Baulig  <martin@gnome.org>
30353         * debug-symfile.[ch]: New files to handle debugging information
30354         files. There's also support to dynamically update these symbol
30355         files to include machine dependent information.
30357 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
30359         * threads.c (mono_thread_create): new function to create thread
30360         from C
30362 2002-03-20  Martin Baulig  <martin@gnome.org>
30364         * icall.c (ves_icall_InternalInvoke): Create a new object if the
30365         method is a constructor.
30366         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
30367         points to ves_icall_InternalInvoke().
30369 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
30371         * file-io.c: Flush shouldn't throw exceptions.
30373 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
30375         * file-io.c: FileStream flush support; FileSetLength now
30376         restores file pointer.
30378 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
30380         * class.c: set image for pointer classes.
30382 2002/03/19  Nick Drochak <ndrochak@gol.com>
30384         * sysmath.c: Forgot one.
30386 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
30388         * sysmath.c: Avoid redefining existing names.
30390 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
30392         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
30393         handled by runtime as icall rather than dllimport from libm.so
30394         * file-io.c, file-io.h: fixed handle argument type.
30396 2002-03-18  Dick Porter  <dick@ximian.com>
30398         * reflection.c (mono_image_get_type_info): rename interface to
30399         iface, because of "#define interface struct" on windows.
30401 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
30403         * class.c, class.h: rename and export mono_ptr_class_get().
30404         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
30405         * reflection.c, reflection.h, icall.c: better/saner type name
30406         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
30407         method signatures.
30409 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
30411         * class.c (mono_class_init): removed hardcoded GHC_SLOT
30413         * icall.c (ves_icall_InternalInvoke): impl.
30415 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30417         * reflection.c: output the interface map table, too.
30419 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
30421         * class.c (class_compute_field_layout): separate computation of 
30422         static field layout
30424 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
30426         * icall.c: added System.Buffer support.
30427         * file-io.c: moved file icalls from PAL to FileStream.
30429 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
30431         * icall.c (ves_icall_System_Object_GetHashCode): impl.
30433 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
30435         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
30437 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30439         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
30441 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
30443         * debug-helpers.{c,h}: moved here from monograph some useful functions
30444         to locate a method by name/signature in a class or image. Included
30445         also a small and flexible IL disassembler.
30447 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30449         * reflection.c: fixup tokens in methods with small header size, too.
30451 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
30453         * object.c (mono_string_to_utf8): remove assert(!error), instead
30454         print a warning. 
30456 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
30458         * icall.c: update to the new mono_Array_class_get interface.
30460 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
30462         * appdomain.c, object.c: Boehm-GC enable.
30463         * icall.c: make get_data_chunk() support split data requests.
30464         Ensure a class is initialized in more cases. Return only the first
30465         property found in GetProperties() or the compiler gets confused. 
30466         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
30467         * reflection.h, reflection.c: add fixup mechanism for field and method
30468         tokens. Initialize assembly->typeref in a single place. Output
30469         properties after events. Support custom attributes for events, too.
30470         Typo fix for paramter custom attrs.
30472 2002-03-07  Martin Baulig  <martin@gnome.org>
30474         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
30476 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
30478         * class.c (mono_array_class_get): fix. for multi. dim. arrays
30480 2002-03-06  Martin Baulig  <martin@gnome.org>
30482         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
30483         non-zero lower bounds. See testcases #F10-#F13.
30485 2002-03-05  Martin Baulig  <martin@gnome.org>
30487         * exception.c (mono_get_exception_argument_out_of_range): New exception.
30489         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
30490         ves_icall_System_Array_GetValue(), only calculate the absolute array position
30491         here.
30492         (ves_icall_System_Array_SetValue): Likewise.
30493         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
30494         as argument and does the actual work. This function is used when copying a
30495         multi-dimensional array.
30496         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
30497         now do all the widening conversions of value types.
30498         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
30500 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30502         * class.c: remove some magic numbers and use the smbolic names,
30503         instead. Added init_events() to load event info at class init time.
30504         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
30505         and mono_metadata_methods_from_event().
30506         * reflection.h, reflection.c: added support for writing out the evnets
30507         related information.
30509 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
30511         * reflection.h, icall.c: use a different method (GetInterfaces)
30512         to gather interface info and add isbyref, isprimitive and
30513         ispointer to the ves_icall_get_type_info() return value.
30515 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
30517         * class.h: stared adding support for events.
30518         * icall.c: split find_members implementation. Added debug icall to get
30519         the address of an object.
30520         * reflection.c: handle TypeBuilders in mono_type_get_object().
30522 2002-03-01  Martin Baulig  <martin@gnome.org>
30524         * icall.c (ves_icall_System_Array_GetLength): This must throw an
30525         ArgumentOutOfRangeException(), not an ArgumentException().
30526         (ves_icall_System_Array_GetLowerBound): Likewise.
30527         (ves_icall_System_Array_GetValue): Improved argument checking.
30528         (ves_icall_System_Array_SetValue): Improved argument checking.
30530 2002-03-01  Martin Baulig  <martin@gnome.org>
30532         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
30533         called with invalid arguments rather than just dying with g_assert().
30534         (ves_icall_System_Array_SetValue): Likewise.
30535         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
30536         raise a NotImplementedException instead.
30537         (ves_icall_System_Array_GetLength): Added argument checking.
30538         (ves_icall_System_Array_GetLowerBound): Added argument checking.
30540 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
30542         * object.h (mono_assert): new macros mono_assert and
30543         mono_assert_not_reached
30545 2002-02-28  Martin Baulig  <martin@gnome.org>
30547         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
30548         and "System::String::IsInterned" to "System::String::_IsInterned".
30550 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
30552         * icall.c: remove hacks for typebuilder. Added icall to create a
30553         modified type from a tybebuilder.
30554         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
30555         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
30556         to create a backing MonoClass for a TypeBuilder.
30558 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30560         * class.c, class.h: more refactoring of class init.
30561         Export mono_class_setup_mono_type() and mono_class_setup_parent().
30563 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
30565         * marshal.c, marshal.h: start of marshaling interface.
30567 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
30569         * icall.c: fix order in assembly qualified name icall.
30571 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
30573         * class.c: do not free str, since we store it in the hash table.
30574         * reflection.h: add label field to MonoILExceptionInfo.
30575         * reflection.c: handle references to more than one assembly. Handle
30576         case when there isn't a module created in the assembly.
30578 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
30580         * class.c: Fix typo. Start refactoring of class init code.
30582 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
30584         * appdomain.c: exit with 1 on error.
30585         * class.c: we already have the name in MonoClassField.
30586         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
30587         MonoStreamHeader instead of an offset of image->raw_metadata.
30589 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
30591         * appdomain.c (mono_init): Be even more descriptive about the error.
30593 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
30595         * appdomain.c: give the user an informative message when corlib can't
30596         be loaded.
30598 2002-02-26  Martin Baulig  <martin@gnome.org>
30600         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30601         New icall to get the time zone data.
30603 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30605         * reflection.c: set virtual and raw size of section correctly.
30606         * threads.c: transfer domain information to newly created threads.
30608 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
30610         * class.c: when instancing a class in a domain, load the default
30611         vaules for static fields from the constant table. Fix System.Enum to
30612         not be an enum.
30613         * icall.c: implement Object::GetType() internalcall. Implemented
30614         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
30615         Fixed checking of binding flags in find_members().
30616         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
30617         * reflection.c: handle enumerations when writing to the constant
30618         table. Use a different object cache for types.
30621 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
30623         * object.c (mono_object_isinst): fix for arrays
30625         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
30627 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
30629         * object.c: don't use mprotect ()  and fix intern pool hash table
30630         lookup for big endian systems.
30632 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30634         * icall.c: change type_is_subtype_of () signature.
30636 2002-02-21  Mark Crichton  <crichton@gimp.org>
30638         * rand.c, rand.h: Added random number generator for
30639         System.Security.Cryptography classes.
30641         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
30643         * icall.c: Added System.Security.Cryptography calls.
30645 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
30647         * class.c, icall.c, metadata.c: better support for pointer types.
30648         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
30649         * reflection.c: Add support for getting custom attrs for properties
30650         and simplify some code.
30652 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
30654         * icall.c: change getToken () and add custom attribute GetBlob()helper
30655         method.
30656         * reflection.h: add custom attrs array to the reflection builder structures.
30657         * reflection.c: encode and emit custom attributes for all the relevant
30658         reflection objects. Cache fieldref and methodref tokens. Change
30659         mono_image_create_token() interface to take a MonoDynamicAssembly.
30660         More complete custom attributes decoder. Load custom attributes for
30661         Assembly, Field, Method and Constructor objects, too. Make the
30662         returned array an Attribute[] one, not object[]. Added
30663         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
30664         custom attribute constructor.
30666 2002-02-20  Dick Porter  <dick@ximian.com>
30668         * icall.c:
30669         * rawbuffer.c:
30670         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
30671         problem code out for now).
30673 2002-02-19  Radek Doulik  <rodo@ximian.com>
30675         * object.c (mono_ldstr): use hash table to avoid multiple swapping
30677 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
30679         * icall.c: register the GetCustomAttributes method.
30680         * object.c, object.h: add mono_string_new_len ().
30681         * reflection.h, reflection.c: added mono_runtime_invoke(),
30682         mono_install_runtime_invoke(). Added
30683         mono_reflection_get_custom_attrs () to load custom attributes and
30684         create the attribute objects.
30686 2002-02-19  Dick Porter  <dick@ximian.com>
30687         * threads-dummy-types.c:
30688         * threads-dummy-types.h:
30689         * threads-dummy.c:
30690         * threads-dummy.h:
30691         * threads-pthread-types.c:
30692         * threads-pthread-types.h:
30693         * threads-pthread.c:
30694         * threads-pthread.h:  Deleted obsolete files
30696 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
30698         * class.c (mono_class_vtable): runtime init the class when we
30699         allocate static class data.
30701         * icall.c (ves_icall_System_Array_SetValue): check for null values.
30703         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
30704         and String - but we will need generic marshalling support in the
30705         future. 
30706         (mono_init): set the domain name in a ms compatible way
30708         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
30709         String[].
30711 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
30713         * object.c (mono_array_clone): use alloca() instead of g_malloc  
30714         for sizes
30716         * appdomain.c (mono_domain_unload): impl.
30718 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30720         * appdomain.c, object.c: fix intern pool implementation.
30721         * class.c: fix alignment code.
30723 2002-02-16  Radek Doulik  <rodo@ximian.com>
30725         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
30726         and s2 > s1, just copy lower bytes to be compatible with little
30727         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
30728         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
30730         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
30731         force big_endian to be 1 for big endian machines 
30732         (ves_icall_iconv_new_decoder): ditto
30734 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
30736         * socket-io.c (convert_sockopt_level_and_name): If the system
30737         doesn't define SOL_IP or SOL_TCP, get them by hand using
30738         getprotobyname() and caching the values (because this could be a
30739         slow operation).
30740         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
30741         Use the appropriate struct when the system does support it. Ie,
30742         not all systems have struct ip_mreqn so use struct ip_mreq when
30743         appropriate.
30745 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
30747         * reflection.c: handle finally clauses.
30749 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
30751         * socket-io.c: use g_snprintf() instead of snprintf.
30753 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
30755         * reflection.c (mono_param_get_objects): Cast second argument to
30756         mono_method_get_param_names to a const char** to silence the
30757         compiler warning.
30759         * appdomain.c (mono_domain_assembly_open): Put parens around the
30760         truth statement in the for-loop.
30762         * unicode.c (iconv_convert): Got rid of a compiler warning about
30763         int i being unused when the system has a new iconv.
30764         (iconv_get_length): Same.
30766         * image.c (load_class_names): Cast the second argument to
30767         g_hash_table_insert() to char* to hush compiler warnings about the
30768         arg being a const.
30769         (mono_image_open): Same here.
30771         * socket-io.c: Don't conditionally include sys/filio.h or
30772         sys/sockio.h here anymore since we now get them from
30773         io-layer/io-layer.h
30774         (inet_pton): If the system doesn't support inet_aton, implement
30775         using inet_addr and also #define INADDR_NONE if it isn't defined
30776         by the system.
30778 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
30780         * metadata.c, metadata.h: added function to get packing and size info
30781         of a typedef.
30782         * reflection.h, reflection.c: handle field RVA data. Save info about
30783         the table layout if needed. Assign typedef indexes to all the types
30784         before dumping the info about them to avoid forward reference problems.
30786 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
30788         * socket-io.c (convert_sockopt_level_and_name): ifdef
30789         SO_ACCEPTCONN because it is not defined on my system (old debian)
30791 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30793         * opcode.c: use stddef.h to get NULL.
30795 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
30797         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
30798         for FIONBIO, FIONREAD and SIOCATMARK.
30799         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
30800         define INADDR_NONE and besides, inet_addr() is deprecated and
30801         should not be used. Use inet_pton() instead - it also has the
30802         added bonus that it can easily handle IPv6 addresses as well.
30803         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
30805 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
30807         * decimal.c: remove _MSC_VER conditional.
30809 2002-02-13  Dick Porter  <dick@ximian.com>
30811         * socket-io.c: 
30812         * icall.c: Internal calls for Blocking, Select, Shutdown,
30813         GetSocketOption and SetSocketOption
30815 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30817         * assembly.cs: better resolver: use it instead of some kludgy
30818         code.
30820 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
30822         * reflection.c: the best way to speed-up the compiler is to avoid
30823         infinite loops.
30825 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
30827         * class.c (mono_class_vtable): changed the object layout
30828         (obj->vtable->class). 
30829         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
30831 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30833         * assembly.c: look for assemblies in the assembly dir, too.
30835 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30837         * class.c: fix thinko in mono_class_from_type().
30839 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30841         * exception.h, exception.c: added TypeLoadException.
30842         * object.h, object.c: added mono_array_clone ().
30843         * icall.c: handle throwOnError in AssemblyGetType().
30844         Added Array.Clone().
30845         * opcode.h, opcode.c: use a single value for the opcode val.
30846         Compile fix for non-gcc compilers.
30848 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
30850         * opcodes.c, opcodes.h: export interesting info about opcodes.
30852 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
30854         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
30855         icalls. 
30857         * class.c (class_compute_field_layout): set element_class for enums
30858         (mono_class_create_from_typedef): set element_class for normal classes
30860         * icall.c (ves_icall_System_Enum_get_value): impl.
30862         * class.c (mono_class_create_from_typedef): do not set valuetype
30863         flag for System.ValueType and System.Enum
30865 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
30867         * unicode.c (iconv_convert): fix big endian problem.
30869 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30871         * class.c: add asserts if we are ever going to scribble over memory.
30872         * socket-io.c: not all systems have AF_IRDA defined.
30874 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
30876         * class.c (class_compute_field_layout): do not consider static
30877         fields to compute alignment
30879 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
30881         * appdomain.c (mono_appdomain_get): impl.
30882         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
30884 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
30886         * icall.c: ignore "file://" prefix when loading an assembly.
30888 2002-01-23  Dick Porter  <dick@ximian.com>
30890         * socket-io.c:
30891         * icall.c:
30892         * Makefile.am: Added socket support
30894 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
30896         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
30897         code back.  This should return the assemblies that are loaded by
30898         the runtime on behalf of an application domain. 
30900         The current implementation is still broken, it just returns every
30901         assembly loaded, but until we get real applications domain this
30902         will do.
30904 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
30906         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
30907         AppDomain object.
30909 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
30911         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
30912         the mono_class_from_name lookup.
30913         (ves_icall_get_parameter_info): ditto.
30914         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
30915         method.
30916         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
30918 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
30920         * class.c: load also nested classes on class init.
30921         System.ValueType instance methods gets passed boxed
30922         values, unless methods in derived classed that get a pointer to the
30923         data.
30924         * icall.c: use better name parsing code in GetType().
30925         * image.c, image.h: add mono_image_loaded ().
30926         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
30927         * reflection.c, reflection.h: added mono_reflection_parse_type().
30929 2002-01-22  Veronica De Santis <veron78@interfree.it>
30931         * icall.c : Added mapping of internal calls for Manual and Auto reset events
30932         * threads.c : Added the implementation of internal calls for events
30933         * threads.h : Added prototypes of internal calls for events
30934         
30935 2002-01-21  Radek Doulik  <rodo@ximian.com>
30937         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
30939 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
30941         * class.c (mono_class_init): set min_align to 1 (instead of 0)
30942         (mono_class_value_size): use min_align
30944 2002-01-20  Dick Porter  <dick@ximian.com>
30946         * threads.h:
30947         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
30948         so it compiles on w32.
30950 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
30952         * metadata.c (mono_type_stack_size): impl.
30954         * class.c (mono_class_get_field): impl. memberref token
30956 2002-01-16 Veronica De Santis <veron78@@interfree.it>
30958         * icall.h : Added the internal calls mapping for CreateMutex_internal
30959                     and ReleaseMutex_internal.
30960         * threads.h : Added the prototype of mutexes internal calls.
30961         * threads.c : Added the implementations of mutexes internal calls.
30963 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
30965         * metaparse.h: removed unused file.
30966         * reflection.c, reflection.h: added stream_data_align () function 
30967         to align data in streams and keep stream aligned. Add support for
30968         exception support in method headers.
30970 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
30972         * unicode.c: make iconv_convert () return the number of bytess written
30973         in the output buffer.
30975 2002-01-15  Dick Porter  <dick@ximian.com>
30976         * threads.c: Make the runtime's idea of infinite timeouts coincide
30977         with the class library's
30979         Fix a particularly egregious bug in mono_thread_cleanup(). That
30980         code was so utterly bogus it must have been written on a Monday.
30982 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
30984         * reflection.h: add subtypes field to TypeBuilder.
30985         * reflection.c: encode constants for literal fields.
30986         Handle subtypes. Fix user string token (and add a zero byte)
30987         at the end.
30988         
30989 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
30991         * class.c (mono_class_init): bug fix: assign slot numbers for
30992         abstract methods.
30994 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30996         * reflection.c: don't try to output a code RVA for abstract methods.
30997         Small fixes for method header format. Output parameter info to the
30998         ParamDef table. Save method overriding info to MethodImpl table.
30999         Fix property support. Allow typedef.extends to be a type in the
31000         building assembly.
31001         * verify.c: fix off-by-one error.
31003 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
31005         * class.c: fix mono_class_from_mono_type () for szarray types.
31006         Remove unused cache check in mono_class_from_type_spec().
31007         * icall.c: *type_from_name () functions handle simple arrays and byref.
31008         * reflection.c: handle byref and szarray types. Handle methods without
31009         body (gets P/Invoke compilation working). Handle types and fields in
31010         get_token ().
31011         * reflection.h: add rank to MonoTypeInfo.
31013 2002-01-10  Dick Porter  <dick@ximian.com>
31015         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
31016         internal calls
31018 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
31020         * icall.c: initialize class in type_from_handle ().
31021         Loop also in parent classes for get_method ().
31022         * reflection.c: properly encode class and valuetype types.
31023         Start on encoding TypeBuilder types. Handle fieldrefs.
31024         Use correct length when registering a user string.
31025         Handle ConstructorBuilder and MonoMethod in get_token ().
31026         Make mono_type_get_object () aware of cached types.
31027         * object.c: back out change to mono_string_new ().
31029 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
31030         * object.c: mono_string_new should return a NULL when the string 
31031         passed in is NULL -- not try to deference it.
31032         
31033 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
31035         * icall.c: hack to make IsSubType work for TypeBuilders.
31036         * reflection.c: emit constructors before methods.
31037         Retrieve param names in mono_param_get_objects().
31039 2002/01/05  Nick Drochak  <ndrochak@gol.com>
31041         * Makefile.am: fix list of headers and sources so automake 1.5
31042         doesn't complain. Removed \# at end of list.
31044 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
31046         * reflection.c: get token for a method ref. Set return type of
31047         constructor to void.
31048         * loader.c: debug message.
31049         * class.c: typo fix.
31051 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
31053         * icall.c: fix array init with rank > 1. FindMembers
31054         loops in parent class as well.
31055         * image.c: do not insert nested types in name cache.
31056         * reflection.c: warning fix.
31057         * reflection.h: add override method (for interface impl).
31059 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
31061         * metadata.c: fix customattr decoding.
31063 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
31065         * rawbuffer.cs: Added native Win32 implementation, avoids using
31066         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
31068 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
31070         * class.c: make the low-level routines handle the cache.
31072 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
31074         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
31076 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
31078         * class.c: fix mono_array_element_size() for objects.
31079         * class.h, class.c: add properties to MonoClass and load them
31080         at init time.
31081         * icall.c: check with isinst() when assigning a value to an array
31082         instead of requiring the classes to match exactly.
31083         Implemented icall for System.Type::GetType().
31084         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
31085         enums. Handle bindingflags when looking for methods and fields.
31086         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
31087         and mono_metadata_methods_from_property().
31088         * reflection.h, reflection.c: added structures for propreties,
31089         parameters and enums. Implemented mono_property_get_object() and
31090         mono_param_get_objects().
31092 2001-12-18  Dick Porter  <dick@ximian.com>
31094         * file-io.c: Use mono_string_to_utf16() instead of
31095         mono_string_chars()
31097         * object.c: Added mono_string_to_utf16(), which copies the non
31098         NULL-terminated MonoString into a new double-null-terminated
31099         buffer.
31101 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
31103         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
31105 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
31107         * file-io.c: raise exceptions if handle is invalid.
31109 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
31111         * assembly.c: yet another check for mscorlib.
31112         * class.c, class.h: load nesting info for classes.
31113         * icall.c: many new functions to support the Reflection classes.
31114         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
31115         * reflection.h, reflection.c: mono_image_create_token(),
31116         mono_assembly_get_object(), mono_type_get_object(),
31117         mono_method_get_object(), mono_field_get_object(): methods to return
31118         objects that parallel the C representation of assemblies, types,
31119         methods, fields.
31121 2001-12-11  Dick Porter  <dick@ximian.com>
31123         * icall.c:
31124         * file-io.c: Internal calls for file IO.
31126 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
31128         * tabledefs.h: missing FileAttributes.
31129         * verify.h, verify.c: use is_valid_string () to simplify and check for
31130         valid strings more correctly. Fix warnings and speeling.
31131         Check more tables: Filed, File, ModuleRef, StandAloneSig.
31132         Check code: branches, maxstack, method calls.
31134 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
31136         * object.c (mono_object_allocate): removed static, so that the jit
31137         can allocate value types.
31139         * icall.c (ves_icall_System_DateTime_GetNow): impl.
31141 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
31143         * class.c: init enum types right away and register the
31144         token->MonoClass map in mono_class_create_from_typedef ().
31145         * verify.h, verify.c: first cut of the verifier.
31146         * pedump.c: add --verify switch to verify metadata tables.
31147         * tabledefs.h: add some missing enums.
31149 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
31151         * class.c (mono_install_runtime_class_init): impl.
31152         (mono_class_init): renamed mono_class_metadata_init to
31153         mono_class_init, also removed the metadata_inited flag
31155         * object.c (mono_object_isinst): use faster algorithm
31157 2001-11-30  Radek Doulik  <rodo@ximian.com>
31159         * mono-endian.h: reverted last change
31160         added function prototypes
31162         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
31163         add mono-endian.c back
31165         * mono-endian.c: returned back, as Paolo pointed out, it's needed
31166         for unaligned access, I've mistaked it with endianess. I am
31167         sorry.
31168         (mono_read16): fix reverted endianess
31169         (mono_read64): ditto
31170         (mono_read32): ditto
31172 2001-11-30  Dick Porter  <dick@ximian.com>
31174         * exception.c: Implement mono_exception_from_name()
31176 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
31178         * metadata.h, metadata.c: remove params_size and locals_size and their
31179         calculation from the metadata code: they are only usefult to the
31180         interp.
31182 2001-11-29  Radek Doulik  <rodo@ximian.com>
31184         * object.c (mono_ldstr): swap bytes here, it's probably not the
31185         best place, but works for me now, I'll redo it once I know mono
31186         better, also note that I add PROT_WRITE and don't reset back, also
31187         note that it's only affects big endians, so x86 should be OK
31189         * mono-endian.h (read16): use just glib macros for both endians
31191         * mono-endian.c: removed as glib macros are used in in
31192         mono-endian.h so we don't need to care about endianess for read
31193         macros as glib does that for us already
31195 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
31197         * class.h, class.h: take minimum alignment into consideration so
31198         that the fields of a class remain aligned also when in an array.
31200 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
31202         * loader.h, loader.c: add mono_method_get_param_names().
31203         * class.c: 0-init class fields.
31205 2001-11-26  Dick Porter  <dick@ximian.com>
31207         * icall.c:
31208         * threads-types.h:
31209         * threads.c: New file that handles System.Threading on all platforms
31211         * object.c: 
31212         * object.h: Remove the synchronisation struct from MonoObject,
31213         replace it with a pointer that gets initialised on demand
31215         * Makefile.am: Replace all the system-specific threading code with
31216         a single file that uses the new wrapper library
31218 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
31220         * class.c, class.h: add mono_install_trampoline() so that the runtime
31221         can register a function to create a trampoline: removes the ugly
31222         requirement that a runtime needed to export arch_create_jit_trampoline.
31223         * object.h, object.c: added mono_install_handler() so that the runtime
31224         can install an handler for exceptions generated in C code (with
31225         mono_raise_exception()). Added C struct for System.Delegate.
31226         * pedump.c: removed arch_create_jit_trampoline.
31227         * reflection.c: some cleanups to allow registering user strings and
31228         later getting a token for methodrefs and fieldrefs before the assembly
31229         is built.
31230         * row-indexes.h: updates and fixes from the new ECMA specs.
31232 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
31234         * class.h, class.c: add enum_basetype field to MonoClass.
31235         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
31236         to get index in the constant table reated to a field, param or
31237         property.
31238         * reflection.h, reflection.c: handle constructors. Set public-key and
31239         version number of the built assembly to 0.
31240         * row-indexes.h: update from new ECMA spec.
31242 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
31244         * class.h, class.c: add a max_interface_id to MonoClass.
31245         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
31246         since it's used to do that. Added mono_type_type_from_obj().
31247         Make GetType() return NULL instead of segfaulting if the type was not
31248         found. Handle simple arrays in assQualifiedName.
31249         * object.h: add a struct to represent an Exception.
31250         * reflection.c: output call convention in method signature.
31251         Add code to support P/Invoke methods and fixed offsets for fields.
31253 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
31255         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
31256         the value.
31257         * icall.c: use mono_array_addr instead of array->vector: fixes the
31258         reflection image writing.
31259         * reflection.c: init call convention byte to 0 in method signature.
31260         Encode the property signature. Don't output property-related methods
31261         twice. Really process the properties for a type (don't cast a field to
31262         a property, my mom always told me that).
31263         Fix 64 bit issues in pointer alignment in a different and more
31264         readable way.
31266 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
31268         * loader.h: Removed type class from MonoDefaults, added monotype
31270         * loader.c: Loaded MonoType, removed loading of Type
31272         * icall.c (my_mono_new_object): Now returns a System.MonoType,
31273         and fills in System.Type._impl with a RuntimeTypeHandle rather
31274         than the actual MonoClass *
31276         (ves_icall_type_from_handle): change from type_class to
31277         monotype_class
31279         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
31280         implemented
31282         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
31283         implemented
31285         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
31287         (ves_icall_System_Reflection_Assembly_GetType): implemented
31289         (ves_icall_System_MonoType_assQualifiedName): implemented
31291         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
31293 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
31295         * assembly.c (mono_assembly_open): Implement a cache for the
31296         assemblies. 
31298         (mono_assembly_close): only destroy the assembly when the last
31299         reference is gone.
31300         
31301 2001-11-09  Dick Porter  <dick@ximian.com>
31303         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
31305 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
31307         * class.c (mono_class_metadata_init): bug fix: compute the right slot
31309 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
31311         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
31312         from Martin Weindel.
31313         * object.h: add mono_string_chars ().
31315 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
31317         * reflection.c (build_compressed_metadata): Eliminates warnings
31318         and uses 64-bit clean code.
31320         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
31321         (mono_type_equal): Change signature to eliminate warnings.
31323 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
31325         * icall.c, loader.c: remove the internalcall array constructors.
31326         Changes to match the new MonoArray structure.
31327         * object.h, object.c: an array object doesn't allocate an extra
31328         vector. Add mono_array_new_full () to create jagged arrays easily.
31330 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
31332         * metadata.h, metadata.c: add mono_metadata_field_info () to
31333         retreive all the info about a field from vairous tables.
31334         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
31335         * class.h, class.c: augment MonoClassField with more info.
31336         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
31337         policy and load a field's RVA if needed.
31339 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
31341         * class.c (mono_class_metadata_init): create a trampoline for all
31342         virtual functions instead of actually compiling them.
31344 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
31346         * class.h, class.c: include name in MonoClassField.
31347         * class.c: fix fundamental type of System.Object and System.String.
31348         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
31349         tokens in ldtoken.
31350         * icall.c: remove internalcalls for the Reflection stuff that is now
31351         done in C# code.
31352         * loader.c: mono_field_from_memberref () implementation.
31353         * mono-endian.c: thinko (s/struct/union/g).
31354         * object.c, object.h: make the mono_string_* prototypes actually use
31355         MonoString instead of MonoObject.
31356         * reflection.c, reflection.h: updates for changes in the reflection
31357         code in corlib: we use C structures that map to the actual C# classes.
31358         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
31359         fat method header if needed and use the info from the ILGenerator for
31360         methods. Handle fields in types. Misc fixes.
31362 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
31364         * class.c (mono_class_metadata_init): bug fix: always allocate
31365         space for static class data
31367 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
31369         * class.c (mono_compute_relative_numbering): use relative
31370         numbering to support fast runtime type checks.
31372 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
31374         * class.c (mono_class_create_from_typeref): added debugging output
31375         to print class name when MonoDummy is returned instead of real class
31377 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
31379         * class.c (mono_class_metadata_init): interface offset table now
31380         contains pointers into the vtable - this is more efficient for the jit
31382 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
31384         * class.c (mono_class_metadata_init): use a temporary vtable (the
31385         old algorithm only worked for the interpreter, but not for the jit)
31387 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
31389         * loader.c (method_from_memberref): use mono_class_get to get the
31390         class of an array instead of using System.Array directly.
31391         (mono_get_method): also add MEMBERREF methods to the method cache
31392         which usefull for arrays.
31394 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
31396         * pedump.c (arch_compile_method): added to compute vtable entry
31398         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
31399         number of interfaces.
31400         
31401         * class.h: merged MonoArrayClass into MonoClass
31403         * class.c (mono_class_create_from_typedef): compute the vtable size and
31404         allocate space to include the vtable inside MonoClass
31405         (mono_class_metadata_init): initialize the vtable
31407 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
31409         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
31410         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
31411         * image.c: endian fixes by Laurent Rioux.
31412         * object.h, object.c: rename MonoStringObject to MonoString and
31413         MonoArrayObject to MonoArray. Change some function names to conform to
31414         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
31415         guint16* as first argument, so don't use char*.
31416         Provide macros to do the interesting things on arrays in a portable way.
31417         * threads-pthread.c: updates for the API changes and #include <sched.h>
31418         (required for sched_yield()).
31419         * icall.c: updates for the API changes above.
31420         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
31421         platforms that need them.
31423 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
31425         * class.c: set the correct type for all the fundamental
31426         type when loading the class.
31428 2001-10-05  Dick Porter  <dick@ximian.com>
31430         * threads-pthread.c (pthread_mutex_timedlock): Simple
31431         compatibility version for C libraries that lack this call.
31433 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31435         * class.c: MonoTypes stored in MonoClass are stored as
31436         fundamental MonoTypes when the class represents a
31437         fundamental type (System.Int32, ...).
31438         The TypeHandle return by ldtoken is a MonoType*.
31439         * icall.c: ves_icall_get_data_chunk () write out all the
31440         PE/COFF stuff. Implement ves_icall_define_method (),
31441         ves_icall_set_method_body (), ves_icall_type_from_handle ().
31442         * image.c: properly skip unknown streams.
31443         * loader.h, loader.c: add type_class to mono_defaults.
31444         * metadata.c, metadata.h: export compute_size () as
31445         mono_metadata_compute_size () with a better interface.
31446         Typo and C&P fixes.
31447         * pedump.c: don't try to print the entry point RVA if there is no entry point.
31448         * reflection.c, reflection.h: many cleanups, fixes, output method
31449         signatures and headers, typedef and typeref info, compress the metadata
31450         tables, output all the heap streams, cli header etc.
31451         * row-indexes.h: typo fixes.
31453 2001-10-04  Dick Porter  <dick@ximian.com>
31455         * object.h: Add a synchronisation mutex struct to MonoObject
31457         * object.c (mono_new_object): Initialise the object
31458         synchronisation mutexes
31460         * icall.c: System.Threading.Monitor internal calls
31461         
31462         * threads-pthread.h:
31463         * threads-pthread.c: System.Threading.Monitor internal calls
31465         * threads-types.h: New file, includes the system-specific thread
31466         structures
31467         
31468         * threads-pthread-types.h:
31469         * threads-pthread-types.c: New files, handle pthread-specific
31470         synchronisation types
31472         * threads-dummy-types.h: 
31473         * threads-dummy-types.c: New files of dummy support for
31474         thread-specific types
31476         * metadata.c:
31477         * image.c:
31478         * pedump.c: include mono-endian.h not endian.h
31479         
31480         * Makefile.am: More threads files.
31481         Name mono-endian.h not endian.h
31483 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
31485         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
31486         stuff and implement a few more bits.
31487         * icall.c: a field needs to be dereferenced twice. Do not use the same
31488         name for two variables in the same scope.
31489         * image.c, image.h: cleanups.
31491 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
31493         * class.c (mono_class_metadata_init): bug fix: compute the right size
31495 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
31497         * icall.c: implemented some of the Reflection internalcalls.
31498         * image.c, image.h: start writing out the PE/COFF image.
31499         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
31500         that does the reverse than decode_blob_size ().
31501         * object.c: use mono_metadata_encode_value (). Move here
31502         temporary implementation of mono_string_to_utf8 ().
31503         * rawbuffer.c: make malloc_map static.
31505 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31507         * metadata.c: fix type comparison for arrays.
31508         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
31509         Added a couple of new classes to monodefaults.
31510         * icall.c: added a couple of Reflection-related internalcalls.
31511         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
31512         Added a byval_arg MonoType to MonoClass.
31514 2001-09-28  Dick Porter  <dick@ximian.com>
31516         * icall.c:
31517         * threads-pthread.h: 
31518         * threads-pthread.c: Implemented internal calls for
31519         LocalDataStoreSlot operations.  Applied mutexes around all shared
31520         data.  Reworked the thread creation and Start() operations to
31521         avoid a race condition.
31522         
31523         * threads-dummy.h:
31524         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
31526 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
31528         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
31530 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
31532         * class.c, loader.c: warn and return NULL instead of erroring out.
31533         * icall.c: added System.AppDomain::getCurDomain().
31534         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
31536 2001-09-25  Dick Porter  <dick@ximian.com>
31538         * threads-pthread.h:
31539         * threads-pthread.c: Implemented timed thread joining and added
31540         System.Threading.Thread::Join_internal internal call
31542         * icall.c: Added System.Threading.Thread::Join_internal internal call
31544         * threads-dummy.h:
31545         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
31547 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
31549         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
31550         mono_string_intern () to implement the semantics of the ldstr opcode
31551         and the interning of System.Strings.
31552         * icall.c: provide hooks to make String::IsIntern and String::Intern
31553         internalcalls.
31555 2001-09-23  Dick Porter  <dick@ximian.com>
31557         * threads-dummy.c: 
31558         * threads-dummy.h: New files of dummy threading routines
31560         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
31561         support code based on system specifics
31563         Rename PTHREAD_LIBS to THREAD_LIBS
31564         
31565 2001-09-23  Dick Porter  <dick@ximian.com>
31567         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
31568         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
31569         internal calls.
31570         (mono_thread_init): Set up a Thread object instance to return when
31571         the main thread calls Thread.CurrentThread
31572         (mono_thread_cleanup): Wait for all subthreads to exit
31574         * icall.c: New internal calls for System.Threading.Thread::Sleep
31575         (including Schedule) and CurrentThread
31577         * threads.h: New file, to insulate thread-specific stuff from the
31578         rest of the code
31580 2001-09-21  Dick Porter  <dick@ximian.com>
31582         * threads-pthread.h: 
31583         * threads-pthread.c: New file, for handling pthreads-style
31584         threading support.  Start() now starts a new thread and executes
31585         the ThreadStart delegate instance.
31587         * icall.c: Added the internalcall for
31588         System.Threading.Thread::Start_internal
31590         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
31592 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
31594         * loader.c: work around the different signatures for delegates
31595         constructors csc generates in compiled code vs the ones compiled in mscorlib.
31597 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
31599         * class.h, class.c: add mono_class_get_field_from_name ().
31600         * *: Fix C comments and other ANSI C issues.
31602 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
31604         * endian.h, assembly.c: fix some endianness issues.
31606 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
31608         * loader.h, load.c: add delegate_class to mono_defaults.
31609         Handle runtime provided methods in mono_get_method ().
31611 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
31613         * loader.c (mono_get_method): use pinvoke for internal call
31615         * icall.c: use pinvoke for internal call
31617         * loader.c (method_from_memberref): set the method name
31619 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
31621         * metadata.c: help the compiler generate better code for
31622         mono_class_from_mono_type ().
31624 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
31626         * class.c (mono_class_metadata_init): delayed computing of the
31627         class size to mono_class_metadata_init ()
31629 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
31631         * class.c, class.h: add an interfaces member to MonoClass.
31632         * image.c, image.h: add assembly_name field to MonoImage
31633         from the assembly table.
31634         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
31636 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
31638         * class.c: Handle Array in mono_class_from_mono_type ().
31639         * metadata.c, pedump.c: some endian fixes.
31641 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
31643         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
31644         * metadata.c: fix small problem introduced with the latest commit.
31646 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
31648         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
31649         We don't need a MonoMetadata pointer anymore to compare signatures in
31650         mono_metadata_signature_equal (), update callers.
31651         Reduced memory usage an number of allocations for MonoMethodHeader and
31652         MonoMethodSignature.
31654 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
31656         * metadata.c: added compare for szarray.
31658 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
31660         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
31661         and add a couple more types to it and mono_defaults. Give an hint on
31662         classes that need implementing in our corlib and are referenced
31663         in mscorlib.
31665 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
31667         * class.h, class.c: keep track if a class is also an Enum.
31668         * loader.c: Implement a couple more types for use in libffi
31669         marshalling. Gives better diagnostics when failing to dlopen
31670         a library. Set method->klass for P/Invoke methods, too.
31672 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
31674         * class.c, class.h: add a MonoType this_arg to MonoClass that
31675         represents a pointer to an object of the class' type that
31676         can be used by the interpreter and later the type cache.
31677         Add best guess alignment info for valuetype objects.
31679 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
31681         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
31682         into MonoType: one less level of indirection and allocation and
31683         simplifies quite a bit of code. Added cache for MonoTypes that are
31684         used frequently, so that we don't need to allocate them all the time.
31686 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
31688         * class.c (mono_class_create_from_typedef): System.Enum is also a
31689         value type, although it does not derive from System.ValueType
31690         (maybe a bug in the ms compiler?)
31692         * metadata.c (mono_type_size): return the right size for value types
31694         * loader.c (mono_get_method): only initialize method header if not abstract
31696         * class.c (mono_class_from_mono_type): use mono_default values. 
31698 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
31700         * *: use MonoClass pointers instead of <type_tokens>
31701         
31702         * class.h: new flag: metadata_inited.
31704         * class.c (mono_class_metadata_init): impl.
31705         (mono_class_instance_size): impl.
31706         (mono_class_data_size): impl.
31708 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
31710         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
31711         MonoClass now has the name and name_space fields. 
31712         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
31713         mono_get_method () takes and optional MonoClass as argument.
31714         Removed mono_typedef_from_name() and added mono_class_token_from_name()
31715         instead that takes advantage of a map from class names to typedef
31716         tokens in MonoImage.
31718 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
31720         * metadata.c: zero is not a valid alignment boundary.
31721         Merge MONO_TYPE_VOID in default decoding code.
31723 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
31725         * image.h: merged MonoMetadata into MonoImage
31727         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
31728         identify the type of elements.
31730 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
31732         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
31733         * cil-coff.h: split MonoMSDOSHeader and add size info.
31734         * image.c: add some consistency checks.
31735         * metadata.c: fix row size computation: one programmer
31736         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
31737         add explanation for the locator routine.
31738         Fix decoding of size in method header.
31739         
31740 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
31742         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
31743         (g_concat_dir_and_file): Bring g_concat_dir_and_file
31744         function from gnome-libs.  This uses the right path separator
31745         based on the OS, and also works around a bug in some systems where
31746         a double slash is not allowed. 
31747         (default_assembly_name_resolver): Use g_concat_dir_and_file
31748         (mono_assembly_open): ditto.
31750 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
31752         * metadata.c (mono_metadata_signature_equal): impl.
31754         * *: void is now a realy MonoType (instead of using NULL)
31755         
31756         * metadata.c (do_mono_metadata_parse_type): use
31757         mono_metadata_parse_type to parse void value.
31759 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
31761         * metadata.c, metadata.h: in the signature and method header store
31762         only the space required for holding the loca vars and incoming arguments.
31764 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
31766         * metadata.c (do_mono_metadata_parse_type): treat void like any
31767         other type (instead of assigning NULL);
31769 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
31771         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
31773 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
31775         * image.c (do_mono_image_open): added a cache for arrays.
31777 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
31779         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
31780         decode a single column from a row in a metadata table and changes
31781         to take advantage of it in the typedef locator (gives a nice speed up).
31782         Store offset info for function params.
31784 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
31786         * image.h (MONO_IMAGE_IS_CORLIB): removed 
31788 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
31790         * assembly.c: how could mono_assembly_close () had ever worked?
31791         * metadata.c, metadata.h: provide offset info for local vars.
31792         Implement mono_type_size () to take care of alignment as well
31793         as size (it was mono_field_type_size in cli/class.c before).
31795 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
31797         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
31799         * assembly.h (CORLIB_NAME): set to corlib.dll
31801         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
31803 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
31805         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
31806         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
31807         tokentype.h: massive namespace cleanup.
31809 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
31811         * metadata.h, metadata.c: decode exception clauses when parsing method header.
31813 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
31815         * metadata.c (mono_metadata_free_type): added check for type !=
31816         NULL (void) before calling mono_metadata_free_type()
31818 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
31820         * metadata.h, row_indexes.h: added header with enumerations to use
31821         to index in the columns from tables in metadata and to decode coded
31822         tokens: we should start using this instead of embedding magic numbers
31823         all over the code.
31825 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
31827         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
31828         Move metadata_t info from cli_image_info_t to MonoImage, where
31829         it's easily accessible. Changed all the uses accordingly.
31830         Added the method and class caches to MonoImage.
31831         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
31832         and mono_metadata_decode_value () signature to be more consistent
31833         with the other parse functions (and simplify code). Taken advantage
31834         of zero-length array allocation with GCC. Removed reduntant (and
31835         wrong) MonoFieldType struct and use MonoParam instead. Changed
31836         mono_metadata_parse_field_type () to use common code for parsing.
31837         Added mono_metadata_typedef_from_field () and
31838         mono_metadata_typedef_from_method () to lookup a typedef index from a
31839         field or method token.
31840         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
31842 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
31844         * metadata.c (mono_metadata_parse_field_type): Implement. 
31845         (do_mono_metadata_parse_type): Split engine from
31846         mono_metadata_parse_type, so that we can create smaller structures
31847         for things that just have one pointer to the MonoType (look at
31848         the MonoFieldType)
31850 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
31852         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
31853         as Jan Gray found out, it is incorrect. 
31855 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
31857         * assembly.c: Implement asssembly loading.  This loads an image
31858         and loads all the referenced assemblies.  Come to think of it, we
31859         could always do lazy loading of the assemblies. 
31861         * image.c (mono_image_open): Keep loaded images in a hashtable.
31863         * image.h (MonoImage): Add reference count.
31865 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
31867         * assembly.c (mono_assembly_open): Keep track of the file name in
31868         case the assembly has no ASSEMBLY table.
31870         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
31871         from get.c here.
31873 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
31875         * metadata.c, metadata.h: decode local vars in method header
31876         parse function. Change callers accordingly.
31878 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
31880         * metadata.h, cil-coff.h: protect against multiple inclusion.
31881         Added some new structures to hold information decoded from metadata:
31882         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
31883         and relevant decoding/free functions.
31884         * metadata.c: implement decoding functions. Add warning for out of bounds
31885         index in mono_metadata_locate(). Implement mono_get_method () to retreive
31886         all the info about a method signature and invocation. Remove check on
31887         uninitialized local var in parse_mh() and fix memory leak.
31889 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
31891         * metadata.h: More macros.
31893         * tokentype.h: New file.
31895 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
31897         * assembly.c: added a consistency check and initialize
31898         some structures with g_new0().
31899         * metadata.c: fixed a couple more bugs in table size computation
31900         and add other checks for out-of bound access to metadata.
31902 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
31904         * metatada.c: fix bugs computing table sizes. Spew a
31905         warning when index in string heap is out of bounds.
31907 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
31909         * metadata.h: Add a couple of macros to manipulate tokens. 
31911 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
31913         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
31914         cli_section_tables).
31916 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
31918         * metadata.c (mono_metadata_user_string): New function, provides
31919         access to the UserString heap. 
31921 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
31923         * metadata.c: Add inline documentation.
31925 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
31927         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
31928         files. 
31930 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
31932         * typeattr.h: New file, TypeAttribute flags. 
31934 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
31936         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
31937         mono_assembly_ensure_section): Section loading code.
31938         (load_section_tables): Load the sections.
31940         * mono/metadata/metadata.c (mono_metadata_locate_token,
31941         mono_metadata_locate): Functions to locate the information
31942         definition given a token or a table and an index.
31943         (mono_metadata_compute_table_bases): New.
31944         (compute_size): New function to compute the sizes of the various
31945         tables.
31947         * mono/metadata/metadata.h: Finish listing the different index
31948         types. 
31950         * mono/metadata/pedump.c: Improve to dump new information.
31952 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
31954         * mono/metadata/metadata.c: Entered all the tables matching
31955         Beta2. 
31957         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2