2010-02-26 Zoltan Varga <vargaz@gmail.com>
[mono/afaerber.git] / mono / metadata / ChangeLog
blob6e832ec1a88a98da707f0c092c6e563e78a15759
1 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
3         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
4         we don't call setup_interface_offsets () for unfinished types.
6 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
8         * class.c (mono_class_generic_sharing_enabled): Move this to
9         generic-sharing.c.
11         * image.c: Add an unload hook which is called before an image is unloaded.
13         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
14         metadata.c having to depend on generic sharing.
16 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
18         * class.c: reduce size of ridiculously large cache.
20 2010-02-26  Martin Baulig  <martin@ximian.com>
22         * class-internals.h (MonoVTable): Added `init_aborted'.
24         * object.c
25         (mono_runtime_class_init_full): Set `vtable->init_aborted' in
26         addition to `vtable->init_failed' if we hit a `ThreadAbortException'
27         while running the class .cctor and reset `init_failed' next time
28         we're called.
30 2010-02-26  Martin Baulig  <martin@ximian.com>
32         * mono-debug.h
33         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
35         * threads.c (mono_thread_internal_reset_abort): New method; resets
36         the abort, but doesn't throw any exception if no abort was requested.
38 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
40         * class.c (get_implicit_generic_array_interfaces): Call
41         mono_class_setup_interface_offsets () before accessing
42         eclass->interface_offsets_count. This only shows up on platforms without IMT for
43         some reason.
45 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
47         * environment.c, environment.h, icall.c: make the GetOSVersionString()
48         icall internal.
50 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
52         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
53         direct access to the MonoType fields.
55 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
57         * threads.h: Move some internal functions which were added to this header by
58         mistake to threads-types.h.
60         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
62 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
64         * class-internals.h, class.h, object.h: make MonoRemoteClass
65         and mono_remote_class() internal.
67 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
69         * metadata-internals.h, class-internals.h, metadata.h: make the
70         MonoType guts internal as well.
72 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
74         * reflection.h: the MonoTypeNameParse guts are internal now.
75         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
76         are internal now, provide accessors as needed.
77         * metadata.h, metadata-internals.h: the MonoMethodSignature
78         guts are internal now.
79         * Makefile.am: mempool.h is an internal header now.
80         * *.h, *.c: remove glib.h usage from the public headers.
82 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
84         * culture-info-table.h : regenerated.
86 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
88         * metadata.c: Add mono_method_get_header_summary which returns minimal
89         information about the header of a method. This is the information used
90         by the inline oracle to reject methods.
92         This method doesn't decode local variables and doesn't cache it's result,
93         so it should cause a minimal reduction in memory usage.
95         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
96         mono_method_get_header_summary.
98 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
100         * threads.c (mono_thread_exit): Make sure that the main thread is
101         non-null before dereferencing it.
103 2010-02-21  Geoff Norton  <gnorton@novell.com>
105         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
106         locale.
107         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
108         before falling back to the posix lookup.
110 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
112         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
113         the DONT_MANAGE flag set.
115 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
117         * domain.c: Remove old v1 version strings. Let the runtime
118         default to 2.0 instead of failing because it can't find a
119         working 1.0 instalation.
121 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
123         * domain.c: Add v4 RC version string.
125 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
127         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
128         of overflow checking function.
130 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
132         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
133         generic methods.
135         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
136         cases for ParameterInfo.
138         Fixes #579493.
140 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
142         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
143         have has_cctor set. Fixes #575946.
145 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
147         * appdomain.c: display a warning if the parsing the config file
148         produces any error.
149         Skip the BOM in UTF-8 files.
150         Copy the AppDomainSetup before setting the privateBinPath so that the
151         correct configuration file is read.
153 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
155         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
156         vtable trampoline per vtable slot index. Not used yet.
158 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
160         * icall-def.h:
161         * icall.c: add internal call that returns the system page size.
163 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
165         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
166         'int' for system classes.
168 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
170         * icall.c, icall-def.h: new icall to check for sufficient
171         stack space.
173 2010-02-12  Mark Probst  <mark.probst@gmail.com>
175         * reflection.c (ensure_complete_type): Check that reflection_info
176         is set, too.  Fixes crash of corlib testsuite with -O=-all.
178 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
180         * attrdefs.h:
181         * tabledefs.h: Add NoOptimization flag.
183 2010-02-10  Mark Probst  <mark.probst@gmail.com>
185         * sgen-gc.c: Don't consider it a missing remset if the target
186         object is pinned - we might have done the store but not added the
187         remset yet.
189 2010-02-10  Mark Probst  <mark.probst@gmail.com>
191         * sgen-gc.c: When checking for missing remsets, don't assert on
192         the first one, but print them all and then assert.
194 2010-02-10  Mark Probst  <mark.probst@gmail.com>
196         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
198 2010-02-09  Miguel de Icaza  <miguel@novell.com>
200         * console-unix.c: On OSX Control-Y is assigned to
201         VDSUSP (non-Posix), the
202         suspend-program-next-time-it-tries-to-read-input command (this is
203         different than C-z, which suspends immediately).
205         Do the same thing that bash does and ignore this setting,
206         making our repl/getline support pasting.
208 2010-02-10  Mark Probst  <mark.probst@gmail.com>
210         * sgen-gc.c: Simple plausibility check for scan_starts.
212 2010-02-10  Mark Probst  <mark.probst@gmail.com>
214         * sgen-gc.c: Round up when calculating the number of scan starts.
216 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
218         * reflection.c: Export mono_get_object_from_blob.
220         * object-internals.h: Ditto.
222         * icall.c: New icall property_info_get_default_value to get the default
223         value of a property. Since using this is not common, no caching is done.
225         * icall-def.h: Add new icall.
227 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
229         * class.c: Add mono_class_get_property_default_value.
231         * class-internal.h: Export mono_class_get_property_default_value.
233 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
235         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
237 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
239         * sgen-gc.c: introduced critical regions to allow some lockless
240         operations and increase scalability.
242 2010-02-10  Geoff Norton  <gnorton@novell.com>
244         * reflection.c: Support building with DISABLE_REFLECTION
246 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
248         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
249         Closes bug #566057.
251         * exception.c: fix typo in comment.
253 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
255         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
256         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
258         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
260         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
261         the internal API.
263         Fixes #574434.
265 2010-02-09  Mark Probst  <mark.probst@gmail.com>
267         * threads.c: Removed two assertions that were too strict.  Added a
268         clarifying comment.  Fixes #577090.
270 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
272         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
273         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
275         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
277         * verify.c (mono_type_get_stack_name): Fix a warning.
279 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
281         * marshal.c (mono_marshal_get_wrapper_info): Rename from
282         mono_marshal_wrapper_info_from_wrapper.
284         * marshal.c (mono_marshal_set_wrapper_info): Rename from
285         mono_marshal_method_set_wrapper_data, and export.
287         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
288         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
289         by calling mono_marshal_get_wrapper_info ().
291         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
292         small objects which does no size checks.
294 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
296         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
298 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
300         * verify.c (mono_method_verify): Use the new basic block formation pass
301         to avoid verifying dead basic blocks. This is the same behavior as the
302         runtime MS verifier.
304 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
306         * mono-basic-block.c:
307         * mono-basic-block.h: New implementation of a basic block formation pass.
308         The formation pass does static liveness analysis as well to detect dead
309         basic blocks.
311 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
313         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
314         'this' argument in icalls.
316 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
318         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
320 2010-02-01  Mark Probst  <mark.probst@gmail.com>
322         * object.c, domain.c: When using SGen, we must register
323         vtable->type as a root if it's not a MonoType, because then it
324         wasn't pin-alloced.
326 2010-02-01  Mark Probst  <mark.probst@gmail.com>
328         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
329         at the start of nursery collections, because we might have had
330         degraded allocations which changed next_data.
332 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
334         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
335         custom attr so this function works in cross-compiling mode.
337 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
339         * class.c (make_generic_param_class): Initialize interface offsets since we
340         set klass->inited. Fixes #574819.
342 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
344         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
345         calling the JIT domain cleanup hook.
347 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
349         * pedump.c (main): Properly set the verifier mode when running the metadata
350         verifier.
352 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
354         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
355         overlapping fields now that we're called before has_references is set.
357         * pedump.c (dump_verify_info): Clear any loader error before verifying another
358         method. Otherwise all sort of weird stuff happens.
360 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
362         * object.c (mono_field_get_value_object): Handle nullable types correctly.
363         Fixes #572874.
365 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
367         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
368         Fixes #573322.
370 2010-01-23  Mark Probst  <mark.probst@gmail.com>
372         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
373         pin_staging_area_index is greater than 0.
375 2010-01-22 Miguel de Icaza (miguel@novell.com)
377         * loader.c: Since we do nothing with the error returned, pass NULL
378         to ignore the error.
380 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
382         * reflection.c (typebuilder_setup_fields): Pretend field setup already
383         happened before starting to encode the actual fields. This avoid ciclic
384         dependencies and eventual crashes.
386         Fixes #572660.
388 2010-01-21  Mark Probst  <mark.probst@gmail.com>
390         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
391         atomic and remove the half-constructed hack in SGen.
393 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
395         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
396         has a recursive reference to itself.
398         Fixes #571863.
400 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
402         * loader.c (mono_method_signature): Fix error message.
404 2010-01-21  Mark Probst  <mark.probst@gmail.com>
406         * sgen-gc.c: Reuse to-space sections between nursery collections.
408 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
410         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
411         from the current assembly or mscorlib. Fixes bug #322957.
413 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
415         * marshal.c: Calculate the target class of the delegete invoke wrappers using
416         get_wrapper_target_class.
418 2010-01-19  Mark Probst  <mark.probst@gmail.com>
420         * sgen-gc.c: Fix warnings.
422 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
424         * verify.c (store_local): Better error message.
426 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
428         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
429         arguments.
431 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
433         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
434         function is generics variance aware.
436 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
438         * security-core-clr.c (mono_security_core_clr_can_access_internals):
439         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
441 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
443         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
444           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
446         Code is contributed under MIT/X11 license.
448 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
450         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
451         on a GTD.
453 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
455         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
456         return a point to a wrapper specific info structure describing the wrapper.
457         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
459 2010-01-18  Mark Probst  <mark.probst@gmail.com>
461         * sgen-gc.c: Make minor collection section allowance adaptive,
462         depending on the amount of memory reclaimed in the last major
463         collection.  If more memory was reclaimed (i.e. more garbage
464         produced), do the next collection earlier.
466 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
468         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
469         to itself.
471         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
472         the token as parameter.
474         * verify-internals.h: Ditto.
476         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
478         Fixes #571460.
480 2010-01-18  Mark Probst  <mark.probst@gmail.com>
482         * sgen-gc.c: Make store_remset_buffer_index long.
484 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
486         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
488         Fixes #569579.
490 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
492         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
493         off precise marking if it is available.
494         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
496 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
498         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
500         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
501         pinned objects.
503         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
504         to the array allocator.
506 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
508         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
509         result of mono_compile_method (), it already includes an ftnptr.
511 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
513         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
515 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
517         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
518         hash value which doesn't depend on glib/eglib versions.
519         (mono_metadata_type_hash): Use it.
521         * object.c (mono_method_get_imt_slot): Ditto.
523 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
525         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
526         independently of the GTD.
528         * class.c (mono_class_setup_fields): Fail if field has negative offset.
530         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
531         to the upper limit since instance_size includes this amount.
533         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
535         Fixes #569544.
537 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
539         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
540         with static methods.
542         * object.c (build_imt_slots): Avoid asserting when static methods are
543         encountered in an interface.
545 2010-01-13  Mark Probst  <mark.probst@gmail.com>
547         * sgen-gc.c (to_space_expand): Fix assertion.
549 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
551         * string-icalls.c: missing declaration fixes.
552         * sgen-gc.c: portability fixes.
554 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
556         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
558         * class.c:
559         * cominterop.c:
560         * icall.c:
561         * object.c: 
562         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
564 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
566         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
567         it can fail loading the type.
569         * class.c: Add mono_class_inflate_generic_class_checked.
571         * class.c:
572         * verify.c:
573         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
575 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
577         * loader.c (mono_method_signature_checked): New internal function taking an
578         MonoError argument.
580         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
581         Fixes build on rh 7.3.
583 2010-01-10  Aaron Bockover  <abockover@novell.com>
585         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
586         at runtime in the same way as on Windows, which yields a relocatable
587         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
588         of the running mono process.
590         On TARGET_ARM, fallback () will always be executed.
592 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
594         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
596 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
598         * class.c (mono_class_is_assignable_from_slow): Support variant
599         generic delegates.
601         * class.c (mono_class_implement_interface_slow): Support types with
602         variant generic arguments.
604 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
606         * verify.c: Remove some code duplication.
608 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
610         * object.c: Update docs.
612 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
614         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
616         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
617         fallback trampoline as well.
619         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
620         out argument that is set to TRUE if the match was direct. 
622         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
624         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
626 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
628         * class.c: Add mono_class_interface_offset_with_variance function that does same
629         as mono_class_interface_offset but takes variance into account.
631         * class-internal.h: Export mono_class_interface_offset_with_variance.
633         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
635 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
637         * object.c:
638         * icall.c:
639         * class.c: Add some FIXME for due to variant generic arguments.
641         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
642         can't use the simple bitfield check, so call mono_class_is_assignable_from if
643         the bitfield check fails.
645 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
647         * class.c (mono_class_is_assignable_from): Rework the generics variance code
648         to be easier to read and fix bugs in the case a non generic type implements a variant
649         interface.
651         * class.c (mono_class_has_variant_generic_params): Make non static.
653         * class-internals.h: Export mono_class_has_variant_generic_params as part of
654         the private API.
656 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
658         * assembly.c: fix MONO_PATH debug output.
660 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
662         * culture-info-table.h : regenerated.
664 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
666         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
667         types that are meant to not have a parent.
669 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
671         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
672         from the image mempool, so it is not leaked.
674 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
676         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
678 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
680         * verify.c (verify_valuetype_layout_with_target): Fix case
681         that can lead to infinite recursion. Fix bug #567861
683 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
685         * pedump.c: Run code verifier even if image verification fails
686         due to a failed type we. This allows more errors to be shown.
688 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
690         * class.c (count_virtual_methods): Remove the assert and now
691         fail properly.
692         
693         * class.c (setup_interface_offsets): This can fail now.
695         * class.c (mono_class_setup_vtable_general): Check for parent vtable
696         errors. Check setup_interface_offsets errors.
698         * class.c (setup_interface_offsets): Simplify the return error logic
699         and remove class_init_ok.
701         Fixes #560327.
703 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
705         * class.c (mono_class_init): Do class verification at the beginning. Add
706         some asserts to avoid tripping into invalid memory.
708         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
709         g_error and a decent message.
711         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
713         Fixes #567548.
715 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
717         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
718         as inline functions instead of defining them in mempool.c.
720         * metadata-internals.h (MonoImageSet): New structure representing a set of
721         MonoImages, which own a collection of generic instances.
723         * metadata.c: Get rid of the global generic caches, instead assign each generic
724         instance to the image set which consists of all the images referenced by the
725         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
726         the memory used by generic instances to be allocated from a per image-set mempool
727         later.
729 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
731         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
733 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
735         * appdomain.c (zero_static_data): Fix a warning.
737         * locales.c (construct_culture_from_specific_name): Applied patch from
738         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
739         not found. Fixes #567900.
741 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
743         * loader.c (mono_method_get_signature_full): Remove two asserts.
744         Return NULL instead so that the verifier can handle both cases 
745         gracefully.
747 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
749         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
750         so we can properly fail types instead of crashing.
752         Fixes #567676.
754 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
756         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
757         generic method.
759 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
761         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
763 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
765         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
766         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
767         we can't remove it from it since we don't hold the lock.
768         (mon_new): Free the orphaned events here when a mon structure is added to the
769         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
770         this down.
772 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
774         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
775         as max stack might be zero.
777         Fixes #562320.
779 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
781         Rework all uses of mono_class_setup_methods to accept that it can fail now.
783         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
784         instances if the GTD did.
786         * class.c (mono_class_setup_properties): Ditto.
788         * class.c (mono_class_setup_events): Ditto.
790         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
792         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
793         error setting.
795         * class.c (mono_class_init): Fail if GTD did.
797         * cominterop.c:
798         * generic-sharing.c:
799         * icall.c:
800         * loader.c:
801         * object.c:
802         * verify.c: Properly handle failure of mono_class_setup_methods.
804 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
806         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
807         mono_class_inflate_generic_method_full internal.
809         * class.c (inflate_generic_context): Now takes a MonoError argument.
811         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
812         errors.
814 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
816         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
817         they cannot be patched. Partly fixes #564408.
819 2009-12-24  Mark Probst  <mark.probst@gmail.com>
821         * metadata-internals.h, reflection.c: Use the
822         MonoDynamicImage.handleref hash table only with unmanaged keys,
823         and add a managed hash table handleref_managed for managed keys.
825 2009-12-24  Mark Probst  <mark.probst@gmail.com>
827         * sgen-gc.c: Unset to-space bumper between collections.  It might
828         become invalid due to degraded allocations.
830 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
832         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
833         with the one from the original method.
835         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
836         compatibility.
838         * verify-internals.h: Add new function to the internal API.
840 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
842         * culture-info-tables.h: regenerated it to include the Georgian culture.
844 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
846         * sgen-gc.c: Include mono/utils/memcheck.h.
848         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
849         instead of the current domain, since the two might not match if this is called
850         from the debugger.
852         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
853         domain which created this assembly.
855 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
857         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
859 2009-12-17  Mark Probst  <mark.probst@gmail.com>
861         * sgen-gc.c: Managed implementation of the specialized generic
862         store write barrier.
864 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
866         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
867         A private virtual newslot method is used to implement an interface method without exposing
868         it to users. When querying for public instance methods, such method would hide a public one
869         on a parent type.
871         Fixes #564379.
873 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
875         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
876         conventions.
878 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
880         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
882 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
884         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
885         as they are no longer used.
886         
887          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
889         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
891 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
893         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
894         if the owner class has not been finished before returning reflection_info.      
896         Fixes #565127.
898 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
900         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
901         param doesn't have custom attributes. Fixes #565117.
903         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
904         #565120.
906 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
908         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
910 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
912         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
913         same amount done by a core-clr enabled runtime.
915 2009-12-15  Marek Habersack  <mhabersack@novell.com>
917         * appdomain.c (mono_make_shadow_copy): make sure access mode of
918         the target files is reset to writable by owner and readable by
919         everyone else to prevent problems when updating shadow copies of
920         files whose source is read-only. Fixes bug #556884
922 2009-12-15  Mark Probst  <mark.probst@gmail.com>
924         * class.c (mono_generic_class_get_class): Allocate the generic
925         class via malloc again, so that it can be freed when any one of
926         the images of its constituent types is closed.
928         * metadata.c: When closing an image, don't free generic insts and
929         generic classes right away, but put them into a list for later
930         freeing.
932         * image.c, metadata-internals.h: Store the free list and in the
933         second pass of closing an image, free it.
935 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
937         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
939         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
940         types in type_hash.
942         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
944 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
946         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
947         user type.
949         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
950         is used.
952 2009-12-14  Miguel de Icaza  <miguel@novell.com>
954         * verify.c (mono_method_verify): The Unused opcodes produce an
955         InvalidProgramException on .NET
957 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
959         * loader.c (mono_method_get_header): Move assert after the verifier
960         has been called on the method header.
962 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
964         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
966         * appdomain.c: Bump corlib version.
968 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
970         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
971         types as well since otherwise generic instances would not return UT as arguments but
972         their undelying system type.
974         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
975         to reflect the fact that they can have now multiple different types.
977         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
979         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
981         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
983         * reflection.c (mono_reflection_register_with_runtime): Init super types
984         if the image is not dynamic.
986         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
987         check if the generic type definition is a TypeBuilder.
989         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
990         doesn't belong to a dynamic image, skip initialization.
992         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
993         base definition is not a dynamic type.
995 2009-12-11  Marek Habersack  <mhabersack@novell.com>
997         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
998         mono_profiler_string_allocation
1000         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
1001         if string profiling is enabled, call
1002         mono_profiler_string_allocation
1004         * profiler.h: added two MonoProfileFlags -
1005         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
1006         installation functions for the hooks below.
1008         * profiler-private.h, profiler.c: added two hooks:
1009         mono_profiler_string_allocation called whenever a string is
1010         allocated by InternalAllocateStr and mono_profiler_iomap called
1011         whenever IOMAP code performs an adjustement on a file path.
1013 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
1015         * boehm-gc.c: fixed race condition while getting the target of a
1016         disappearing link (bug #522233).
1018 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1020         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
1021         the error.
1023 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1025         * reflection.c: Add mono_reflection_register_with_runtime icall to
1026         allow a MonoGenericClass to register itself as the managed mirror of
1027         a given generic instance.
1028         This is a temporary workaround until all MGC instantiation happens in
1029         managed code.
1031         * object-internals.h: Ditto.
1033         * icall-def.h: Ditto.
1035 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1037         * sgen-gc.c (find_in_remsets): Also search the generic store
1038         remsets.
1040 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1042         * sgen-gc.c: Don't access class names in debugging code when
1043         unloading a domain, because they might not be valid anymore.
1045 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1047         * domain.c, domain-internals.h: New function mono_domain_unset().
1049         * appdomain.c (unload_thread_main): Detach the thread again at the
1050         end.
1052         * threads.c: When a thread exists or is detached, unset its domain
1053         so that it's NULL when, for example, a pthread destructor runs.
1055         * sgen-gc.c: Assert that there is no domain set after a thread is
1056         done.
1058 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1060         * class.c (mono_generic_class_get_class),
1061         metadata.c (free_generic_class): Allocate generic MonoClass's from
1062         the image mempool, not via malloc.  The problem with malloc is
1063         that when unloading a domain those classes are freed before
1064         clearing the heap and SGen needs the classes.  Rewriting the
1065         unloading code to do the free later would be more work and there's
1066         no point in using malloc anyway.
1068 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
1070         * loader.c (mono_method_signature): Always call mono_loader_unlock 
1071         before returning.
1073 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1075         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
1076         user string blobs.
1078         * verify-internals.h: Add new function to the internal API.
1080         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
1081         check if it's a valid string.
1083         * object.c (mono_ldstr): Ditto.
1085         Fixes #561943.
1087 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1089         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
1090         from a method before returning it. This is the expected behavior.
1092 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1094         * reflection.c (inflate_method): Handle the case of a regular system type.
1096 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1098         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
1099         gathering code.
1101         * mempool.c, mempool-internals.h: New function
1102         mono_mempool_get_bytes_allocated().
1104         * Makefile.am: sgen-pinning-stats.c added.
1106 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1108         * sgen-gc.c (create_allocator): Only use the fast path if the
1109         object size is within the small object size limit.
1111 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1113         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
1114         possibly adding padding to sizeof (GCMemSection).
1116 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1118         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
1119         reference is not in the nursery.
1121 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
1123         * class.c (mono_class_from_typeref): Bounds check idx against the 
1124         assemblyref table.
1126 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1128         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
1129         through the potential roots, then sort the results and find the
1130         pinned objects from there.
1132         * Makefile.am: sgen-pinning.c added.
1134 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1136         * sgen-gc.c: Record generic stores in specialized remset buffers.
1138 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1140         * sgen-gc.c: Make pinned chunks the same size as major heap
1141         sections, and align them as well, so that we can check whether an
1142         object is in a pinned chunk or a major section in constant time.
1144 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1146         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
1148 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1150         * sgen-gc.c: Make all major heap sections the same size (currently
1151         128k) and allocate them on aligned addresses.  Small heap sections
1152         give us better granularity with pinned objects - we can free up
1153         much more memory.
1155 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1157         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
1158         output removed.
1160 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1162         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
1164         * mono/metadata/assembly.c: When opening an assembly image, pass the real
1165         names in addition to the runtime generated one.
1167         * mono/metadata/image.h: Add a function to take the real name of the assembly
1168         image.
1170         * mono/metadata/image.c: If a real name has been passed to load an assembly,
1171         use it instead of the runtime generated one.
1173         Code is contributed under MIT/X11 license.
1175 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1177         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
1178         before the other checks to prevent problems if the DateTime class is blittable.
1179         Hopefully fixes #559600.
1181 2009-12-05  Mark Probst  <mark.probst@gmail.com>
1183         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
1184         returns the largest string length that will not be put into the
1185         LOS.
1187         * sgen-gc.c, gc-internal.h: New function that returns the largest
1188         object size that will not be put into the LOS.
1190         * appdomain.c: Bump corlib version.
1192 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1194         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
1196         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
1198 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1200         * reflection.c (inflate_method): Fix signature.
1202         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
1203         in managed code.
1205 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1207         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
1209 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1211         * sgen-gc.c: Abstract to-space handling.
1213 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
1215         * loader.c (find_method_in_class): Ignore methods with broken signatures.
1217         Fixes #559906.
1219 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1221         * sgen-gc.c: Only add references from outside the nursery to
1222         within the nursery to the global remset list.
1224 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1226         * appdomain.c (create_exceptions): Set the domain temporarily if
1227         necessary to avoid cross-domain references.
1229 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1231         * verify.c (get_stack_type): Return that the type is invalid instead of
1232         asserting.
1234         * verify.c (mono_method_verify): Verify that all locals and arguments
1235         have valid stack types.
1237         Fixes #559913.
1239 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1241         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
1242         bounds checking overflow aware.
1244         Fixes #559910.
1246 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1248         * verify.c (do_invoke_method): Check for invalid method signatures.
1250         Fixes #553450.
1252 2009-12-02  Jb Evain  <jbevain@novell.com>
1254         * appdomain.c (MONO_CORLIB_VERSION): bump.
1255         * icall-def.h (get_base_definition): renamed to get_base_method
1256         and add a boolean argument indicating we want the original
1257         method definition, or the immediate base method.
1258         * icall.c: apply the get_base_definition to get_base_method change.
1260 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1262         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
1264         Fixes #558042.
1266 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
1268         * class.c: remove asserts for invalid type token in
1269         mono_class_name_from_token(), mono_assembly_name_from_token() and
1270         mono_class_create_from_typedef () (fixes bug #553318).
1272 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
1274         * metadata.c, class.c, loader.c: remove assert after bsearch() for
1275         incorrect assemblies (bug #553322).
1277 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1279         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
1281         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
1283         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
1285         * class.c (inflate_generic_context): Ditto.
1287         * loader.c (method_from_methodspec): Ditto.
1289         Fixes #558230.
1291 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1293         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
1295         * class.c (mono_class_create_from_typespec): Ditto.
1297         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
1299         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
1301         Fixes #558184.
1303 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1305         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
1307         * verify.c (verify_delegate_compatibility): Ditto.
1309         * verify.c (do_newobj): Ditto.
1311         Fixes #558046.
1313 2009-12-02  Mark Probst  <mark.probst@gmail.com>
1315         * sgen-gc.c: Use a gray queue instead of requiring that gray
1316         objects are in a contiguous region.
1318         * sgen-gray.c: The gray queue implementation.
1320         * Makefile.am: sgen-gray.c added.
1322 2009-12-02  Mark Probst  <mark.probst@gmail.com>
1324         * appdomain.c: When unloading a domain, zero its static data and
1325         perform a minor collection when using SGen.  That will get rid of
1326         all the remsets pointing into that domain's static data.
1328         * sgen-gc.c: Allow remsets into static data.  By doing this we
1329         need less checks so we're more efficient.
1331 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1333         * verify.c (mono_method_verify): Check for catch clauses with broken
1334         types.
1336         Fixes #558465.
1338 2009-12-01  Jb Evain  <jbevain@novell.com>
1340         * class.c (make_generic_param_class): set the namespace of
1341         the generic parameter class from its owner, if available.
1343 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1345         * verify.c (code_bounds_check): Do proper overflow checking.
1347         * verify.c (mono_method_verify): The number of switch entries is
1348         an unsigned int. Properly bounds check it.
1350         Fixes #558594.
1352 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1354         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
1355         mono_metadata_method_has_param_attrs which only checks if a given param
1356         list has a non zero flags entry.
1358         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
1359         to inform how many params should we expect to decode.
1361         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
1362         as it's faster than mono_metadata_get_param_attrs.
1364         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
1365         add mono_metadata_method_has_param_attrs.
1367 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1369         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
1370         failures.
1372         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
1373         is -1 but its class is broken.
1375         Fixes #558522.
1377 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1379         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
1380         for parameter overflow.
1382         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
1383         of mono_metadata_get_param_attrs.
1385         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
1386         API.
1388         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
1390 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1392         * class.c (mono_class_setup_fields): Check for fields with broken types.
1394         Fixes #558741.
1396 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
1398         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
1399         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
1400         its TypeBuilder::CreateType ().
1402         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
1403         if not needed.
1405         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
1406         to make setup_interface_offsets happy.
1408         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
1409         compilation now works.
1411 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
1413         * appdomain.c (create_exceptions): New helper function extracted from
1414         mono_runtime_init () to precreate objects used during exception handling.
1415         (mono_runtime_init): Call it.
1416         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
1418 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1420         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
1421         compilation until the proper one is found.
1423 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
1425         * class.c (mono_class_setup_vtable_general): Cache the result of
1426         get_virtual_methods () since it can be slow because of the metadata
1427         optimization.
1429         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
1430         from a MonoValueHashTable for now, since the later is based on an earlier
1431         version of hpj's internal probing code and seems to have serious collision
1432         issues.
1434         * loader.c (mono_get_method_full): Update after the change above.
1436 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1438         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
1440 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1442         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
1443         the GTD instead of the DGC instead of crashing.
1445         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
1446         required. Inflate fields if needed.
1448         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
1449         finished. Renamed.
1451 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1453         * class.c (check_interface_method_override): Check for NULL signatures and fail
1454         the type.
1456         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
1458         Fixes #553428.
1460 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1462         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
1463         the MONO_METHOD_FLAGS column instead of decoding the whole row.
1465 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1467         * loader.c (field_from_memberref): Resolve the class first then the field
1468         signature. Remove a lot of duplicated code and make sure we don't pass valid
1469         values to mono_loader_set_error_field_load.
1471         Fixes #553306.
1473 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1475         * class.c (inflate_generic_type): Change code to use new signature of
1476         mono_error_set_bad_image.
1478         Fixes #558124.
1480 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
1482         * verify.c (mono_method_verify): Don't free ctx.params items if 
1483         we aborted while inflating the ctx.locals. Complete previous fix
1485 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
1487         * verify.c (mono_method_verify): Use the uninflated type name, 
1488         when the inflated is null, to report errors. Also take care when
1489         freeing, not to free everything since, in case of an error, some
1490         stuff would be copies (i.e. not allocated by the function itself)
1491         Fix bug #558145
1493 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1495         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
1496         or overflow. The caller must have done this check explicitly. This guard us
1497         from accessing invalid memory.
1499         * verify.c (do_push_static_field): Check for stack overflow.
1501         Fixes #553333.
1503 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1505         * loader.c (find_method_in_class): Don't crash if the signature cannot
1506         be resolved.
1508         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
1509         of asserting for the case of invalid params.
1511         Fixes #553304.
1513 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
1515         * image.c (mono_image_load_module): Fix crash when a bad assembly
1516         has no module at all (fix bug #553412) and also replace the 
1517         g_assert with a return NULL (documented return value for failure)
1519 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
1521         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
1523 2009-11-23  Miguel de Icaza  <miguel@novell.com>
1525         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
1526         file attribute to managed code and avoid doing the mask/attribute
1527         checks here. 
1529 2009-11-22  Miguel de Icaza  <miguel@novell.com>
1531         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
1532         the managed world.
1534         * icall-def.h: New entry points.
1535         
1536 2009-11-19  Mark Probst  <mark.probst@gmail.com>
1538         * process.c: Don't put references to managed objects into a
1539         g_ptr_array.
1541 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
1543         * class.c (can_access_internals): Allow CoreCLR to participate in
1544         allowing (or not) [InternalsVisibleTo] between assemblies.
1545         * security-core-clr.c|h: Make sure that only trusted code (a 
1546         superset of platform code) can access the internals of platform
1547         code.
1549 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
1551         * reflection.c: use the correct base class to get the virtual method
1552         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
1554 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
1556         * security-core-clr.c (get_caller_no_reflection_related): 
1557         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
1558         it's still reflection and must be filtered correctly.
1560 2009-11-16  Mark Probst  <mark.probst@gmail.com>
1562         * object.c (compute_class_bitmap): Fix for large bitmaps.
1564 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
1566         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
1568         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
1569         koush@koushikdutta.com). Disable GC_no_dls on android.
1571 2009-11-12  Mark Probst  <mark.probst@gmail.com>
1573         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
1574         tlab_next points outside the TLAB because the allocator was
1575         interrupted.
1577 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1579         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
1581 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1583         * object-internals.h: Change signature for mono_string_to_utf8_image.
1585         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
1586         argument.
1588         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
1589         exceptions due to mono_string_to_utf8.
1591 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1593         * object-internals.h: Change signature for mono_string_to_utf8_mp.
1595         * object.c (mono_remote_class): Make sure all resources are released before
1596         raising an exception.
1598         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
1600 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1602         * mono-perfcounters.c (network_get_impl): Change variable initialization
1603         ordering to fix potential memory leak in case of exceptions.
1605         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
1606         encoded strings.
1607         
1608 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1610         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
1611         variable initialization ordering to fix potential memory leak in case
1612         of exceptions.
1614 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
1616         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
1617         needed.
1619 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1621         * appdomain.c: Fix shadow path code to better deal with exceptions.
1623 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1625         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
1626         exception in the middle of the runtime code.
1628 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1630         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
1631         leak memory with broken envvar value.
1633 2009-11-06  Mark Probst  <mark.probst@gmail.com>
1635         * reflection.c (mono_reflection_setup_internal_class): Because
1636         nested classes are not added to the name cache, we must put them
1637         in the reflection_info_unregister_classes list.
1639 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
1641         * class.c: When CoreCLR is enabled don't call mono_init_com_types
1642         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
1643         platform (trusted) code. Instead we return a TypeLoadException to
1644         be thrown later. This is the exception thrown by Silverlight 2 if
1645         a type, inside application (user) code is marked with [ComImport]
1647 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1649         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
1650         mono_is_debugger_attached () too.
1652         * mono-debug.c (mono_is_debugger_attached): New helper function.
1653         (mono_set_is_debugger_attached): Ditto.
1655 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1657         * object-internals.h: Add mono_string_to_utf8_checked.
1659         * object.c: Implement mono_string_to_utf8_checked.
1661 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1663         * class.c: Add missing check for load errors after every
1664         call to mono_class_setup_fields
1666         Fixes #552282.
1668 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1670         metadata-verify.c (verify_tables_schema): Fix the error message.
1672 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1674         * metadata.c: Change event table schema to use TDOR for event type
1675         as this is what it's meant to be.
1677         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
1678         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
1679         entry.
1681         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
1682         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
1683         rows in MONO_TABLE_GENERICPARAM.
1685         Fixes #552289.
1687 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1689         * class.c (mono_image_add_to_name_cache): Assert on duplicate
1690         insertion.
1692         * reflection.c (mono_reflection_setup_internal_class): Avoid
1693         registering a gc root the same MonoClass multiple times.
1694         Don't register nested types on the global scope as they should
1695         not be available there.
1697 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1699         * culture-info-tables.h: regenerated.
1701 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1703         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
1705 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
1707         * string-icalls.c|h: Remove string internal calls that are not 
1708         used anymore by the class libraries.
1709         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
1710         which is not used in the class librairies.
1711         * icall-def.h: Update tables.
1713 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1715         * class.h: Move mono_class_inflate_generic_type_checked...
1717         * class-internals.h: to here and make it internal. We don't want to
1718         further expose MonoGenericContext. 
1720 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1722         * verify.c (mono_method_verify): Improve error message.
1724 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1726         * reflection.c (fieldref_encode_signature): If field_image is NULL then
1727         the token is already properly encoded. Fixs 4.0 build.
1729 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1731         * locales.c (construct_number_format): Check if the number index is
1732         valid before trying to use it, if not, just return.
1733         
1734 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
1736         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
1737         since that loses the abort state. Fixes #539394.
1739 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
1741         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
1742         explicit this argument to the call signature.
1743         (mono_marshal_get_icall_wrapper): Ditto.
1745 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1747         * reflection.c (fieldref_encode_signature): Add new field_image parameter
1748         to indicate which assembly to use when resolving a custom-mod.
1750         Fixes handling of volatile fields used across assemblies as reported in #551513.
1752 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1754         * loader.c: Improve error messages.
1756 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1758         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
1759         of interfaces. Fixes IKVM.
1761         * class.c (mono_class_setup_vtable_general): Improve debug spew.
1763 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1765         * verify.c (verifier_inflate_type): Return the inflated type on success.
1767 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1769         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
1771         * threads.c (mono_thread_attach): Call the profiler thread start callback.
1773         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
1775         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
1776         flag set.
1778         * profiler.c: Add new profiler callbacks for runtime invoke.
1780         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
1782 2009-11-01  Mark Probst  <mark.probst@gmail.com>
1784         * sgen-gc.c: Keep track of the reason for a major collection and
1785         write it to the heap-dump file.
1787 2009-10-31  Miguel de Icaza  <miguel@novell.com>
1789         * threads.c: refactor the code that initializes the
1790         thread_start_args into a reusable function and use this in the two
1791         methods that start up threads.
1793 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
1795         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
1796         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
1798 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1800         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
1801         Until now, we only had the per-cpu(core) counters.
1803 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1805         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
1806         mono_gc_get_suspend_signal(), which returns the suspend signal
1807         number used by the GC.
1809 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1811         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
1813         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
1814         signalling start_notify.
1816 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1818         * appdomain.c: do not test the st_mode field for shadow-copies.
1819         Fixes bug #545276.
1821 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1823         * threadpool.[ch]: added hooks for thread start/finish and item
1824         processing begin/end. For monotouch use only.
1826 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1828         * threads.c (mono_thread_get_name): New helper function.
1830         * reflection.c (resolve_object): Set handle_class for strings too.
1831         (mono_reflection_create_custom_attr_data_args): New helper function to decode
1832         a cattr blob into a set of arrays and structures without creating the custom
1833         attributes themselves.
1834         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
1836         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
1838         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
1839         function.
1841 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1843         * verify.c: Replace calls to mono_class_inflate_generic_type with
1844         mono_class_inflate_generic_type_checked. Fixes #480005.
1846 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1848         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
1849         object since not all paths lead to callees initing it.
1851 2009-10-23  Alp Toker  <alp@nuanti.com>
1853         Fix embedding API breakage from r144688. mono-compiler.h is an internal
1854         header and should not be shipped:
1856         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
1857         which is specific to the mono build. Not going to work.
1859 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
1861         * security-manager.c: Report if core-clr is active from
1862         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
1863         to allow Moonlight BCL to behave appropriately (both in browser
1864         and outside, e.g. smcs)
1866 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1868         * mono-config.c: ignore UTF-8 BOM and report parser errors.
1869         Fixes bug #549108.
1871 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1873         * class.c: fix typo.
1875 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1877         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1878         a MonoError parameter.
1880         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1881         version that can does proper error handling.
1883         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1885         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1887         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1889 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1891         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1892         NO_UNALIGNED_ACCESS is defined.
1894 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1896         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1897         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1898         Fixes #549173.
1900 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1902         * sgen-gc.c: Shorten sections whenever possible.
1904 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1906         * sgen-gc.c: Use our portable semaphore #defines.
1908 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1910         * sgen-gc.c: A debug option for dumping the heap layout to a file
1911         after each collection.
1913 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1915         * sgen-gc.c: Make managed write barriers atomic via
1916         thread-restarts.
1918 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1920         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1921         methods. Fixes #543021.
1923 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1925         * socket-io.[ch]: fix VS build.
1927 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1929         * icall-def.h:
1930         * socket-io.[ch]: implemented SendFile.
1932 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1934         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1935         before the interfaces to avoid crashes later if class initialization fails.
1936         Fixes #548417.
1938         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1939         Fixes #548276.
1941 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1943         * domain.c: Bump 4.0 version.
1945 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1947         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1948         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1949         check since 'pubkey' can't be NULL at this stage
1950         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1951         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1952         initialization of 'iter'
1954 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1956         * cominterop.c : Search the interface parts of vtable to find 
1957           method matches.  Fixes 547030.
1959         Code is contributed under MIT/X11 license.
1961 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1963         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1964         multiple targets. Fixes bug #574426.
1966 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1968         * profiler.h: Put here the definition of
1969         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1970         (and fix the build...).
1972 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1974         * profiler.c, profiler.h, profiler-private.h:
1975         Added support for different ways of getting call chains in stat mode.
1977 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1979         * object.c, object-internals.h: New function for computing the
1980         size of an array, factored out of mono_array_new_full().  Use
1981         SGen's functions for allocating arrays and vectors.
1983         * sgen-gc.c, gc-internal.h: Special functions for allocating
1984         arrays and vectors without race conditions.  A managed array
1985         allocator method.
1987         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1989 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1991         * object.c, object.h, icall.c: Write barriers do the copying now,
1992         as well, so no need for an additional memcpy.
1994         * sgen-gc.c: Lock when storing remsets.  Do the memory
1995         copying/moving in the write barriers.
1997         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1999         * reflection.c: Added an assert.
2001 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2003         * threads.c, process.c: A few missing write barriers.
2005 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
2007         * mono-perfcounters.c, mono-perfcounters-def.h: Add
2008         network performance counters for bytes sent per second, bytes
2009         received per second, and bytes total per second.
2011         Code is contributed under MIT/X11 license.
2013 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2015         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2016         Fix warning.
2018 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2020         * threads.c, object-internals.h, object.c: Move code for
2021         transferring an object to a different domain (via
2022         serialization/remoting) to object.c.
2024         * object.c (call_unhandled_exception_delegate): If the exception
2025         is in a different domain than the delegate, transfer the exception
2026         to that domain.
2028 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
2030         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
2031         Fixes #322934.
2033 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
2035         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
2037 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2039         * object.c (mono_method_return_message_restore): Handle the case
2040         where the argument is an instance of a generic type.  Fixes
2041         #544446.
2043 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2045         * object.c (set_value): Write barrier fix - we must pass the
2046         count, not the size.
2048 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
2050         * domain.c (mono_init_internal): Print a useful error message when encountering
2051         an old mscorlib, instead of crashing. Fixes #544307.
2053 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
2055         * appdomain.c (copy_app_domain_setup): Fix a warning.
2057         * debug-helpers.c (dis_one): Ditto.
2059 2009-10-04  Mark Probst  <mark.probst@gmail.com>
2061         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
2062         into the new domain, instead of referencing the original one.
2064         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
2065         non-static.
2067         * appdomain.c: Corlib version bump.
2069 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2071         * threadpool.c: one more...
2073 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2075         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
2076         threads to die because we're shutting down. delgate5.exe works again.
2078 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
2080         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
2081           ccw_interface_hash table when a ccw is finalized.
2083         Code is contributed under MIT/X11 license.
2085 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2087         * assembly.c, domain.c, image.c, metadata-internals.h: Split
2088         domain and image unloading into two steps.  We must do this
2089         because clearing the domain in SGen requires the class metadata to
2090         be intact, but we need to free the mono_g_hash_tables in case a
2091         collection occurs during domain unloading and the roots would trip
2092         up the GC.
2094 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2096         * object-internals.h: Remove serialized culture fields from
2097         MonoInternalThread.
2099         * icall-def.h, thread-types.h, threads.c: Remove serialized
2100         culture icalls.
2102         * appdomain.c: Corlib version bump.
2104 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
2106         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
2107         Fixes #543133.
2109 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2111         * sgen-gc.c: Try to shorten the new section after a major
2112         allocation to avoid ever-growing sections.
2114 2009-10-13  Martin Baulig  <martin@ximian.com>
2116         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
2117         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
2118         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
2119         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
2121         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
2123 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
2125         * threadpool.c: fixed the order in which 'completed' and the wait
2126         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
2127         No need to use the wait_handle field of ASyncCall. Make sure the
2128         threadpool is active when adding a job or queueing an idle thread.
2130 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
2132         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
2134         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
2135         when using --compile-all.
2137 2009-09-27  Mark Probst  <mark.probst@gmail.com>
2139         * metadata.c (free_generic_class): Unregister the field_objects
2140         roots if we're using SGen.
2142 2009-09-27  Mark Probst  <mark.probst@gmail.com>
2144         * reflection.c (mono_dynamic_image_free): Deregister the GC root
2145         for GenericParamTableEntry.gparam.
2147 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2149         * marshal.c: don't create the handle when calling. It is created later
2150         if needed.
2152 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2154         * sgen-gc.c: Warning fixes.
2156 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2158         * sgen-gc.c: New debug option "xdomain-checks", which scans the
2159         whole heap for cross-domain references before each collection.
2161         * sgen-scan-object.h: The scan action can now use SCAN to scan the
2162         object.
2164         * threadpool-internals.h, threadpool.c: New function
2165         mono_thread_pool_is_queue_array() for checking whether a given
2166         array is used as a (cross-domain) queue by the thread pool code.
2168 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2170         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
2171         searches the whole heap for objects containing a specific
2172         reference.  Only for debugging.
2174 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2176         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
2178         * icall-def.h, threads.c, threads-types.h: New icalls for copying
2179         byte arrays between domains.
2181 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2183         * threadpool.c:
2184         * class-internals.h:
2185         * mono-perfcounters-def.h:
2186         * mono-perfcounters.c:
2187         -There is a list of idle threads
2188         -Each of those idle threads wait on their own WaitHandle instead
2189         of all of them using the same semaphore. When a new work item is
2190         added, the job is assigned directly to an idle thread or a newly
2191         created one if possible and then the handle for that thread is
2192         signaled. Compare that to the current approach where all the
2193         threads in the pool compete to dequeue a job from the same
2194         queue.
2195         -New struct ThreadPool that brings together the bunch of static
2196         variable for each threadpool (IO and regular).
2197         -New performance counters: # of items added and its rate per
2198         threadpool. The rate will be used later, perhaps together with
2199         other perf. counters, to decide when idle threads should exit.
2201 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
2203         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
2204         Fix typo on Windows build.      
2205         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
2206         
2207         Code is contributed under MIT/X11 license.
2209 2009-09-25  Mark Probst  <mark.probst@gmail.com>
2211         * object-internals.h: The Thread class is split up into Thread and
2212         InternalThread now.  We have exactly one InternalThread per
2213         thread, and at most one Thread per appdomain per thread.  Most
2214         data is stored in InternalThread.  All InternalThread objects live
2215         in the root domain.
2217         * class-internals.h: Add internal_thread_class to MonoDefaults.
2219         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
2220         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
2221         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
2222         resulting from the split of the Thread class.
2224         * gc-internal.h: Prototype for new function for checking whether a
2225         thread is the finalizer thread.
2227         * appdomain.c: Corlib version bump.
2229 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2231         * appdomain.c|h: Add a mono_domain_try_unload method which is
2232         equivalent to mono_domain_unload, except that it returns an exception
2233         instead of throwing it. Make mono_domain_unload use the
2234         mono_domain_try_unload method to avoid code-duplication.
2236 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
2238         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
2239         a problem.
2241 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
2243         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
2244         aborting when a conversion is not implemented.
2246 2009-09-23  Miguel de Icaza  <miguel@novell.com>
2248         * verify.c: when comparing culture strings, use g_ascii_strcmp
2250         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
2251         when comparing public key tokens to use memcmp on 16 bytes.   I do
2252         not believe this ever worked as advertised in the past.
2254         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
2255         which would have always failed earlier.
2257 2009-06-25  Miguel de Icaza  <miguel@novell.com>
2259         * gc.c: Raise a NullArgumentException if the object passed is
2260         null.
2262 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
2264         * image.c (mono_image_close): Atomically decrement the reference count and
2265         remove the image from the hash tables, to prevent another thread from seeing a
2266         dying MonoImage. Fixes #541194.
2268 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2270         * threadpool.c: actually use the minimum number of 'completion ports'
2271         (for us is just a potential worker thread).
2273 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2275         * threadpool.c: remove ares_htable. It does not make sense any more
2276         since the same objects are now stored in GC-tracked arrays while they are
2277         in the queue.
2279 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2281         * threadpool.c: increase the minimum length of the queues to 128.
2282         Remove warning.
2284 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
2286         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
2287         return the modified signature used by string ctors.
2289 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
2291         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
2292         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
2293         method, to be used by full-aot.
2295 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
2297         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
2298         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
2299         be known to be good.
2301         * class.c (mono_class_init): Fail array types if their element type fails initialization
2302         as well.
2304         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
2305         initialization, additionally we request the element_type vtable to be initialized as well.
2307         This is fine and should not increase the working set in any meaningful way since it's reasonable
2308         to assume       that most code will create an array and eventually populate it, which will require the
2309         type's vtable to be initialized.
2311         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
2313 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
2315         * normalization-tables.h : regenerated.
2317 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
2319         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
2320         a leb128 encoding can take up to 5 bytes.
2322 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
2324         * class.c (verify_class_overrides): Remove useless argument.
2326         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
2327         before interface enumeration as this is no longer required.
2329 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
2331         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
2332         used under mono_class_init context. This functions avoid any code path that
2333         calls mono_class_init, which leads it to be slow as some things like the interface
2334         bitmap are not available.
2336         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
2337         of it's own broken version. Fixes the verifier part of #538588.
2339         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
2340         API.
2342 2009-09-15  Mark Probst  <mark.probst@gmail.com>
2344         * class.c (mono_class_init): Always set an exception in a class if
2345         vtable setup fails.  Fixes #538577.
2347         * generic-sharing.c: Raise an exception if mono_class_vtable()
2348         returns NULL.
2350 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
2352         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
2353         methods of vtypes, as they could be incorrectly shared with static methods
2354         taking an IntPtr argument.
2356 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
2358         * domain.c:
2359         * object.c:
2360         * class-internals.h: renamed waithandle_class to
2361         manualresetevent_class.
2362         * marshal.c: propagate the exception if a remoting BeginInvoke call
2363         fails.
2365 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2367         * object.c: Properly handle vtable failures.
2369 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2371         * socket-io.c: Assert on vtable failure.
2373         * mono-mlist.c: Assert on vtable failure.
2375 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2377         * marshal.c: Assert on vtable failure.
2379 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2381         * icall.c: Properly handle vtable failures.
2383 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2385         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
2387 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2389         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
2391         * console-unix.c (do_console_cancel_event): Same.
2393 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2395         * class-internals.h: Add mono_class_vtable_full function that allows control
2396         if an exception should be raised or not.
2398         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
2399         to do what its documentation say, that is to return NULL and set exception_type on
2400         failure.
2402         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
2403         and change the code to honor it.
2405 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2407         * verify.c: Fix typo in error message.
2409 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
2411         * security-core-clr.c: Fix default_platform_check so it can run
2412         the runtime coreclr tests (without an infinite recursion when
2413         throwing an exception).
2415 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2417         object.c (mono_delegate_ctor_with_method): Guard against null method.
2419 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2421         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
2422         that should be replaced with error handling later.
2424 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2426         * marshal.c (mono_delegate_end_invoke): Fix warning.
2428 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2430         * loader.c (mono_field_from_token): Properly handle invalid
2431         dynamic tokens.
2433 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2435         * pedump.c (verify_image_file): Skip types that can't be
2436         decoded.
2438 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2440         * verify.c: Look for recursive valuetypes only against the
2441         type been initialized as this is a lot simpler and works.
2443 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2445         * verify.c: Ensure that fields are properly loaded before
2446         checking them.
2448 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
2450         * object.c (mono_object_get_virtual_method) : Call 
2451           mono_cominterop_get_invoke if the object is a COM object.
2453         Code is contributed under MIT/X11 license.
2455 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
2457         * verify.c: Check for recursive valuetype definitions.
2459 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
2461         Use inheritance-aware interface offsets. Inherited types use the same offsets
2462         of their parents. This reduce offset duplication in case more than one type in
2463         the inheritance tree explicitly implements the same interface.
2465         This also removes a source of vtable bubbles found in #532409. An abstract type
2466         isn't required to provide abstract methods to all interfaces it implements, which
2467         resulted in a bubble with the previous scheme as the child would get a non-full
2468         vtable from its parent. We fail all concrete types with vtable bubbles, so this
2469         should be fixed.
2471         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
2472         it's expected to not cause any significant increase beyond that.
2474         * class.c (setup_interface_offsets): Compute super class iface offsets
2475         first to force sharing.
2477         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
2478         dumping only the relevant ones.
2480         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
2481         methods a new slot regardless if they belong to an interface or not. This allows
2482         an inherited type to override the iface method separately from the class one.
2484 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2486         * threadpool.c: make the Sleep() alertable to prevent delays exiting
2487         applications that take less than 2s to execute.
2488         Bug #524984 fixed.
2490 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
2492         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
2494         * object.c (mono_get_runtime_callbacks): New helper function to return
2495         the runtime callbacks.
2497         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
2498         mono_get_runtime_build_info () as the display name.
2499         
2500 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
2502         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
2503         argument, since NEWARR expects a native int. Fixes #481559.
2505 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2507         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
2508         against broken SRE methods.
2510 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2512         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
2513         a NULL variable. Abort early on failure.
2515 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2517         * class.c (can_access_type): Fail visibility test for non nested
2518         types with nested visibility.
2520 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
2522         * assembly.c (parse_public_key): Avoid allocating (and not 
2523         freeing) the public key array when it's not requested by the 
2524         caller.
2525         * threads.c (mono_thread_manage, mono_thread_create_internal, 
2526         ves_icall_System_Threading_Thread_Thread_internal): Free 
2527         allocated memory on error.
2529 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2531         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
2533 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2535         * class.c (mono_class_setup_fields): Remove duplicated local variable
2536         named gklass.
2537         Rename gklass to gtd to reflect the fact that it points to the generic
2538         type definition.
2539         Remove the duplicated call to mono_class_setup_fields on gtd and move
2540         the error check to the beginning.
2542 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2544         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
2545         Remove cruft of the previous patch.
2547 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2549         * metadata-verify.c (verify_method_table): Check for abstract + final.
2550         Fixes #534175.
2552 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2554         * verify.c (verify_class_fields): Check for duplicate fields.
2556 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2558         * metadata-verify.c: Verify the typeref table for duplicates.
2560 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2562         This reverts r140936 and properly handles interfaces with static methods. The
2563         right fix is to ensure vtables without bubles which is an easier to verify
2564         constraint. We should avoid such special cases as of the reverted patch as those
2565         only make the runtime more brittle.
2567         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
2568         static methods on interfaces.
2570         * class.c (setup_interface_offsets): Use the number of virtual methods when
2571         calculating interface offsets instead of the number of methods. This way we
2572         avoid bubles on the layout.
2574 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
2576         * metadata-verify.c (verify_metadata_header): Some very smart
2577         obfuscators like to add extra stream headers. Ignore them.
2579 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
2581         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
2582         methods correctly.
2584 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
2586         * metadata-verify.c: Verify for duplicated types.
2588 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
2590         * metadata-verify.c (verify_typedef_table): Verify for nested types
2591         without an entry on the nested class table.
2593 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
2595         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
2596         <tom_hindle@sil.org>. Add locking around hash table accesses.
2598 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2600         * verify.c (mono_verifier_verify_class): Verify all interface if
2601         really are interfaces. Fixes #534184.
2603 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
2605         * pedump.c: Initialize all types during metadata validation so we report
2606         errors only detected as part of class initialization.
2608 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
2610         * metadata-verify.c (verify_method_table): PInvoke requires method to
2611         be static. Fixes #534189
2613 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
2615         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
2616         being NULL.
2618 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2620         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
2621         for holes or bad methods. Fixes #525314.
2623 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2625         * class.c (setup_interface_offsets): Don't allocate slot
2626         for the same interface multiple times. This creates bubbles
2627         that waster space and make vtable verification harder.
2629         The same interface get a slot multiple times since we need
2630         to get the closure of all implemented interfaces, which means
2631         the same interface is reported multiple times.
2633 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2635         * verify.c (mono_verifier_verify_class): Don't check the fields
2636         of generic instances since the context on which they got expanded
2637         might lead to false positives.
2639         Such thing happens when a generic type is inflated in the context
2640         of a generic method and the inflated type of a field turns into a
2641         generic method argument, which causes the checking code to think
2642         it's an invalid class when it's not.
2644 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2646         * verify.c (mono_type_is_valid_in_context): Verify if type
2647         is NULL and remove duplicate test.
2649 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2651         * verify.c (mono_verifier_verify_class): Check fields for
2652         invalid generic arguments.
2654 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2656         * class.c (verify_class_overrides): Verify if for static
2657         and non virtual methods.
2659 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2661         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
2662         Check for errors after retrieving the vtable.
2664 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2666         * class.c (mono_class_setup_vtable_general): Verify
2667         if method overrides are valid before processing them.
2669 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2671         * marshal.c (mono_array_to_lparray): Fix minimal build with
2672         cominterop disabled.
2674         * marshal.c (mono_free_lparray): Same.
2676 2009-08-21  Mark Probst  <mark.probst@gmail.com>
2678         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
2679         the hash function for the ares_htable.
2681 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
2683         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
2684         bit for assembly flags. MS is ok with it but there is no spec anywhere
2685         on its mean
2687 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2689         * class.c (mono_class_create_from_typedef): Emit profiler events
2690         in all cases.
2692 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2694         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
2695         Release memory on failure.
2697 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2699         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
2700         to the internal API.
2702         * metadata.c (get_constraints): Use a single-linked table as we don't
2703         traverse it backward. Fail and return FALSE if only of the contraint types
2704         is not found.
2706         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
2707         to mono_metadata_load_generic_param_constraints except for having a return value.
2708         This has to be done since the later is part of the public API.
2710         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
2711         and fail the type.
2713         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
2714         and fail the method.
2716 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2718         * metadata-verify.c (is_valid_method_header): Add work-around to deal
2719         with MS broken behavior of emmitting EH section sizes without the
2720         header size added.
2722 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2724         * metadata.c (mono_type_create_from_typespec): Don't allocate image
2725         memory until we're sure that we'll need it. This avoids leaking for
2726         broken types or duplicated instantiation.
2728 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2730         * metadata-verify.c (is_valid_method_header): Fix stupid formating
2731         mistake.
2733 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2735         * metadata-verify.c (is_valid_method_header): Fix number of clauses
2736         and expected size calculation.
2738 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2740         * class.c (mono_class_get_field_idx): Add fixme for broken
2741         behavior for types with multiple fields with the same name.
2742         I would rather fix it, but have no idea on how to generate
2743         such artifact for testing.
2745 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2747         * verify.c (verifier_load_field): We should allow references to
2748         fields to be made using the generic type definition. It's up to
2749         the loader system to fail invalid ops.
2751         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
2752         are invalid.
2754 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2756         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
2758         * metadata-internals.h: Fix declaration of 
2759         mono_metadata_interfaces_from_typedef_full.
2761         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
2762         heap_alloc_result parameter that controls if the result should be
2763         g_malloc'd.
2765         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
2766         array be g_malloc'd and properly document this public API function.
2768 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2770         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
2771         remove METHOD_HEADER_TINY_FORMAT1.
2773         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
2775         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
2777         Both spec and MS uses only 2 bits to enumerate the kind of header.
2778         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
2779         is superfluous, only used for tiny headers with odd code lengths.
2781         This change also make sure that mono doesn't wronly interpret bit 2
2782         of fat header flags, which is currently reserved.
2784 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2786         * metadata.c (do_mono_metadata_parse_type): Do error
2787         checking for element types. Don't abort if presented
2788         with a broken type kind.
2790 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2792         * metadata.c (mono_metadata_parse_method_signature_full):
2793         Gracefully fail bad vararg signatures.
2795 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2797         * profiler.c:
2798         * class.c: Fix warnings for uninitialized variables.
2800 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2802         * icall.c: Fix _NSGetEnviron method declaration warning.
2804 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2806         * icall.c:
2807         * reflection.c: Make bitwise checks explicit.
2809 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2811         * debug-helpers.c:
2812         * marshal.c: Fix printf warnings.
2814 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
2816         * reflection.c (encode_cattr_value): Fix a warning.
2818 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2820         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
2821         of array bounds.
2823 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2825         * loader.c (mono_method_signature): Don't assert on broken
2826         signature. Print a more useful error message.
2828 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2830         * loader.c (mono_method_get_marshal_info): Assert if
2831         signature is invalid. Bounds check stores to the
2832         mspecs array;
2834 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2836         * loader.c (field_from_memberref): Fix warning.
2838 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2840         * loader.c (mono_method_get_param_names): Check if signature
2841         is null. Don't store beyond the size of the name array.
2843 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2845         * loader.c (mono_get_method_constrained): Check if signature
2846         is null.
2848 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2850         * loader.c (mono_loader_set_error_bad_image): Improve
2851         error messages.
2853 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2855         * loader.c (mono_get_method_full): Convert an assertion
2856         into a loader error.
2858 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2860         * class-internals.h, class.c: Better naming and documentation.
2862 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
2864         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
2865         obj is NULL.
2867 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2869         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
2870         parsing fails.
2872 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2874         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2875         errors with no class set.
2877         * loader.c (field_from_memberref): If the field signature is of the wrong
2878         type fail with a MissingFieldException instead of a BadImageException as
2879         this is the behavior observed on MS. 
2881 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2883         * loader.c (field_from_memberref): Don't crash if either the field
2884         signature or the typespec class are invalid.
2886 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2888         * verify.c (verifier_load_field): Don't allow field related
2889         ops to reference fields on generic type definition.
2891 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2893         * metadata-verify.c: Add new warning level for errors specified
2894         by ECMA 335 but that MS ignores.
2896         * metadata-verify.c (verify_method_table): Make compiler controled
2897         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2898         this check is safe because the end result will only be some visibility
2899         exceptions been thrown.
2901 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2903         * verify.c (get_boxable_mono_type): Don't allow the
2904         use of the generic type definition on boxed type positions.
2906         Fixes #531237.
2908 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2910         * threadpool.c: Make sure no cross-domain references remain in
2911         ares_htable or the arrays that are thrown away when resizing.
2913 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2915         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2916         list of classes for which we have to unregister reflection_info
2917         with the GC and which are not in the namespace cache.
2919         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2920         the class to the list.
2922 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2924         * domain.c (mono_domain_free): Unregister the GC roots in
2925         MonoDomain.
2927 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2929         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2931 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2933         * class.c: Add mono_class_get_field_from_name_full which does
2934         the same as mono_class_get_field_from_name but does check field
2935         signature as well.
2937         * class-internals.h: Export mono_class_get_field_from_name_full as
2938         part of the internal API.
2940         * loader.c (field_from_memberref): Search fields by name and signature
2941         as it's valid to have two fields with same name but different types.
2943         Fixes #528055.
2945 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2947         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2949         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2951         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2952         System.Type.
2954 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2956         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2958         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2960 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2962         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2963         to sgen-scan-object.h, which can be included and parameterized via
2964         macros.
2966         * Makefile.am: sgen-scan-object.h added.
2968 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2970         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2972 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2974         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2975         before clearing a domain in the GC.
2977 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2979         * exception.c (mono_exception_from_name_domain): Actually create
2980         the exception in the specified domain.
2982         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2983         OutOfMemoryException a bit later so that the domain is inialized
2984         "enough" that it works.
2986 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2988         * threads.c (thread_cleanup): Clean up the cached_culture_info
2989         array to prevent cross-domain references.
2991 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2993         * metadata.c: more documentation for MonoType accessors.
2995 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2997         Fix incorrect size definitions where the tail array isn't a list
2998         of pointers
2999         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
3000         define size.
3001         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
3002         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
3003         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
3005 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3007         * reflection.h:
3008         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
3010 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3012         * metadata.c:
3013         * loader.c:
3014         * metadata-internals.h:
3015         * method-builder.c:
3016         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
3018 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3020         * cominterop.c:
3021         * metadata.c:
3022         * metadata.h:
3023         * loader.c:
3024         * marshal.c:
3025         * reflection.c: #define for sizeof in MonoType and
3026         MonoMethodSignature.
3028 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3030         * domain.c:
3031         * domain-internals.h: add and use #define's instead of sizeof()
3032         for MonoJitInfo and MonoJitInfoTable.
3034 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3036         * object.c:
3037         * class.h: use #define instead of sizeof() for MonoRemoteClass.
3039 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3041         * metadata.c:
3042         * metadata.h:
3043         * object.c:
3044         * class-internals.h:
3045         * generic-sharing.c:
3046         * marshal.c: use a #define instead of sizeof() for a few
3047         structures that use a zero-length array.
3049 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3051         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
3052         to handle inflated generic methods.
3054         * appdomain.c: Bump corlib version.
3056         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
3057         instances.
3059         * reflection.c (fixup_method): Same
3061         * reflection.c (resolve_object): Same.
3063         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
3064         g_error and a decent message.
3066 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
3068         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
3069         from the object because it could not yet be available globally
3070         (it happens if the profiler tries to create a gchandle on the
3071         MonoThread object of a thread that is still registering itself
3072         with the runtime).
3074 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
3076         * reflection.c (mono_generic_class_get_object): Initialized the
3077         managed type arguments array.
3079         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
3081         * appdomain.c: Bump corlib version.
3083 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
3085         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
3086         #527902.
3088 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
3090         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3091         Avoid a crash if synch_cs is not set.
3092         
3093         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3094         Handle the case when the handle is 0.
3096         * appdomain.c: Bump corlib version.
3098 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
3100         * reflection.c (mono_type_get_object): Fix a warning.
3102 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3104         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
3105         descriptor here.  We assume it's already been computed.
3107         * generic-sharing.c (instantiate_other_info): Compute the GC
3108         descriptor for info type MONO_RGCTX_INFO_KLASS.
3110 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3112         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
3113         type, so don't use MONO_OBJECT_SETREF to set a field.
3115 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3117         * gc.c: We were missing one case where invoking a finalizer would
3118         not reset the domain.  Also, in the finalizer thread loop, assert
3119         that we're in the root domain.
3121 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3123         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
3124         if the type is not an array.
3126 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3128         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
3129         method bound to the declaring type of the method. Raise an exception
3130         if the type is not a generic param.
3132 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3134         * class.c (print_unimplemented_interface_method_info): Print the
3135         full type name.
3137         * class.c (mono_class_setup_vtable_general): When dealing with a
3138         generic instance first check if the generic type definition is
3139         not broken.
3141 2009-02-11 Tom Hindke <tom_hindle@sil.org>
3143         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
3145         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
3147         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
3149         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
3151         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
3153         Code is contributed under MIT/X11 license
3155 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
3157         * verify.c: Fix naming of stelem and ldelem.
3159 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3161         * generic-sharing.c: Replace the templates lock with the loader
3162         lock because of very hard to resolve deadlock issues.
3164 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
3166         * icall.c (ves_icall_Type_GetMethodsByName): Use 
3167         mono_class_get_vtable_size () instead of accessing klass->vtable_size
3168         directly. Fixes #525338.
3170         * class.c (mono_class_get_vtable_size): New helper function.
3172         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
3173         the field belongs to the type. Fixes #525733.
3175 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3177         * sgen-gc.c: When we stop a thread and its stack top is not within
3178         its allocated stack (because it's in an altstack signal handler),
3179         restart it and stop it again, until it is.
3181 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3183         * sgen-gc.c: Take a thread's stack top and registers from the
3184         sigcontext in the suspend signal handler.
3186         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
3187         stuff to sgen-archdep.h.
3189         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
3190         caller, because have code in sgen-archdep.h to acquire that data.
3192 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
3194         * profiler.c, profiler.h, profiler-private.h:
3195         Added support for keeping track of code chunks and buffers.
3197 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
3199         * metadata-verify.c: Fix endianness problems on decoding functions.
3200         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
3202 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
3204         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
3205         schema for vectors and one dimension SZARRAY.
3207 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
3209         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
3210         schema for vectors and one dimension SZARRAY.
3212 2009-07-27  Mark Probst  <mark.probst@gmail.com>
3214         * icall-def.h, thread-types.h, threads.c: New separate icalls for
3215         Interlocked.(Compare)Exchange with object arguments, which invoke
3216         write barriers.
3218 2009-07-26  Miguel de Icaza  <miguel@novell.com>
3220         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
3221         passed invalid arguments.   Fixes another crasher in the
3222         Silverlight test suite.
3224         * class.c (mono_class_array_element_size): Return 0 for the size
3225         of the class;  This fixes the crasher exposed by :
3227         typeof (void).MakeArrayType ();
3229         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
3230         if there is no method to dereference.    Put all the code that
3231         depends on this inside the if (method) block.
3233         This fixes the crasher exposed by Microsoft's Silvelright CLR test
3234         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
3236         With this change, we pass the test.
3237         
3238         * reflection.c (mono_reflection_sighelper_get_signature_local):
3239         Only dereference the assembly if it has been set.    Fixes a
3240         crasher exposed by #525328
3242 2009-07-25  Mark Probst  <mark.probst@gmail.com>
3244         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
3245         don't perform the store in mono_gc_wbarrier_generic_nostore().
3246         Remove the second argument (value), which is not needed.
3248 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
3250         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
3251         the build.
3253         * boehm-gc.c: Ditto.
3254         
3255 2009-07-24  Mark Probst  <mark.probst@gmail.com>
3257         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
3258         not perform the store itself.  Introduce
3259         mono_gc_wbarrier_generic_nostore(), which is the same as
3260         mono_gc_wbarrier_generic_store(), except it doesn't perform the
3261         store.
3263 2009-07-24  Mark Probst  <mark.probst@gmail.com>
3265         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
3266         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
3267         we still need the memcpy().
3269 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3271         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
3272         so that big arrays are handled correctly.  Always use
3273         safe_object_get_size() to calculate array object sizes, which
3274         takes bounds into account.
3276 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3278         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
3279         GC descriptor is computed before we use it.
3281 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3283         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
3284         write barrier if necessary.
3286 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3288         * icall-def.h, icall.c, thread-types.h: New separate icall for
3289         VolatileWrite(object&,object) that uses a write barrier.
3291         * console-unix.c, file-io.c, icall.c, threads.c: Use write
3292         barriers in icalls which write to "ref" or "out" arguments.
3294 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
3296         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
3297         handler in a separate icall, to reduce the size of the wrappers.
3299 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3301         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
3303 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3305         * metadata-verify.c (parse_field): Allow byref field.
3307         * metadata-verify.c (parse_locals_signature): Allow byref locals.
3309         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
3311 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3313         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
3314         Fixes #522784.
3316 2009-07-20  Robert Jordan  <robertj@gmx.net>
3318         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
3319         Fix invalid IL in valuetype handling (STOBJ must push the
3320         corresponding class). Fixes bug #523149.
3322         Code is contributed under MIT/X11 license.
3324 2009-07-20  Geoff Norton  <gnorton@novell.com>
3326         * gc.c: Use proper semaphores where available on posix and darwin.
3328 2009-07-19  Geoff Norton  <gnorton@novell.com>
3330         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
3332 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
3334         * refletion.c (is_sre_usertype): Change name to is_usertype and
3335         invert it's result so it returns true if the type is an user type
3336         and not the opposite.
3338         * reflection.c (is_*_type): Change all of those to use new macro
3339         check_corlib_type_cached that cached the type lookup so we don't
3340         need to do string comparisons all the type. Changed the signature
3341         to take a MonoClass instead.
3343         * reflection.c: Change mono_image_create_token and resolve_object
3344         to use is_sre_* functions.
3346 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3348         * sgen-gc.c: Check for writes to the stack in the managed
3349         wbarrier as well.
3351 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3353         * sgen-gc.c: When a thread is unregistered, don't free its remsets
3354         but put them on a list which is processed with the other thread's
3355         remsets.
3357 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3359         * sgen-gc.c: Fix and enable the internal allocator instead of
3360         using malloc/free (which causes deadlocks).
3362 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
3364         * refletion.c: Fix builds with SRE disabled by adding a minimal
3365         implementation of mono_reflection_type_get_handle.
3367 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3369         * refletion.c: Make mono_reflection_type_get_handle non static.
3371         * object-internals.h: Export mono_reflection_type_get_handle.
3373         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
3374         unmanaged handle using mono_reflection_type_get_handle.
3376 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3378         * refletion.c: Replace all reads of MonoReflectionType::type with
3379         calls to mono_reflection_type_get_handle. Only the functions that
3380         deal with constructing TypeBuilder::type have not been changed
3381         because they have to deal with NULL values.
3383         This is a first step into supporting reflection types that don't
3384         map directly into their unmanaged counterpart.
3386 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3388         * metadata-verify.c (parse_locals_signature): Don't complain
3389         on signature with zero locals since MS generates it and doesn't
3390         bother with.
3392 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3394         * reflection.c (mono_image_get_array_token): Resolve return
3395         type using mono_reflection_type_get_handle.
3397         * reflection.c (mono_image_get_array_token): Resolve array method
3398         parent type using mono_reflection_type_get_handle.
3400 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
3402         * reflection.c (mono_image_basic_init): Applied patch from
3403         <Dax@daxxfiles.net>. Set the public key token from the assembly
3404         builder. Fixes #518909.
3406         * appdomain.c: Bump corlib version.
3408 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
3410         * class.c (mono_class_needs_cctor_run): Make this return false if
3411         the class has no cctor.
3413 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3415         * sgen-gc.c: When the minor GC needs to allocate a new section,
3416         invoke the major GC afterwards.
3418 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
3420         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
3421           Applying the window_style field to the SHELLEXECUTEINFO struct.
3423         Code is contributed under MIT/X11 license.
3425 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3427         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
3428         locking earlier.  Fix it in the managed allocator by making sure
3429         that no thread is stopped there before the GC runs.  If we do stop
3430         a thread there, we restart it and let it run a but, until it stops
3431         somewhere else.
3433         * gc-internal.h, gc.c: Function for getting the IP from a signal
3434         context via a function registered by mini.
3436 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
3438         * object-internals.h (MonoIntPtr): New structure describing a boxed
3439         IntPtr.
3441         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
3442         returns. Fixes #519953.
3444         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
3446 2009-07-09  Mark Probst  <mark.probst@gmail.com>
3448         * class-internals.h, generic-sharing.c: New RGCTX info type for
3449         getting a remoting invoke with check wrapper.
3451 2009-07-07  Geoff Norton  <gnorton@novell.com>
3453         * icall-def.h: Fix the enable-minimal build.
3455 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3457         * object-internals.h: Add MonoReflectionDerivedType.
3459         * reflection.c: Implement support for PointerType.
3460         Fixed tons of warnings.
3462 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3464         * object-internals.h: Add MonoReflectionByRefType.
3466         * reflection.c: Implement support for ByRefType.
3468 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3470         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
3472         * object-internals.h: Add MonoReflectionArrayType and
3473         mono_reflection_create_unmanaged_type.
3475         * reflection.c: Implement support for ArrayType.
3477 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3479         * metadata-verify.c (is_valid_method_header): Parse EH block
3480         flags correctly.
3482 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3484         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
3485         processing the disappearing links, and process disappearing links
3486         in a loop until no new objects are copied.
3488 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3490         * object.c (handle_enum): Invoke the write barrier when copying
3491         value type instances.
3493         * sgen-gc.c: Register remsets for unmanaged write barriers only
3494         when the address written to is actually on the heap.  This makes
3495         set_value() in object.c work without requiring that the result be
3496         on the heap.
3498 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3500         The runtime wrappers are all bound to a given type that must
3501         exist in the same image. For regular images we use the <Module>
3502         type, which is required to exist for all images.
3504         The <Module> type can't be used for dynamic images because it
3505         might not exist at the time the wrapper is required, so we create
3506         a synthetic type to use instead.
3508         The current code works because of the 2 stage setup of MonoClass,
3509         but once this is gone it will no longer work.
3511         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
3513         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
3515         * object-internals.h: Export mono_image_set_wrappers_type icall
3516         as part of the internal API.
3518         * marshal.c (get_wrapper_target_class): If the image is dynamic,
3519         use MonoDynamicImage::wrappers_type instead of the <Module> type.
3521         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
3522         image wrappers_type to the provided value.
3524 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
3526         * appdomain.c (deregister_reflection_info_roots): No need
3527         to use the image lock here.
3529 2009-07-02  Mark Probst  <mark.probst@gmail.com>
3531         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
3533 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
3535         * threads.c: Store the thread start argument in a hash table instead of
3536         registering it as a root, as libgc doesn't support unregistering roots
3537         under windows, leading to 'too many root sets' errors when many threads
3538         are created.
3540         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
3541         shutdown, they can still be referenced by the other dying objects.
3542         Fixes #514506.
3544 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3546         * socket-io.c: DontLinger does not allow LingerOptions.
3548 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3550         * metadata-verify.c: The spec doesn't mention that it's possible to add
3551         custom attribute to a generic parameter. Fixed.
3553 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3555         * class.c (inflate_generic_type): Don't crash while trying to output a message
3556         on why we're aborting.
3558 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3560         * socket-io.c: DontLinger can take an int or a boolean too.
3562 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
3564         * gc.c: check for a null argument to SuppressFinalize () and
3565         ReRegisterForFinalize ().
3567 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3569         * loader.c (method_from_methodspec): Call into the verifier to check
3570         the signature.
3572         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
3574         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
3575         part of the internal API.
3577 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3579         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
3580         the signature.
3582         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
3584         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
3585         part of the internal API.
3587 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3589         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
3590         the signature.
3592         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
3593         blob verification.
3595         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3596         part of the internal API.
3598 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3600         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
3601         when doing basic verification. 
3603         This check must be done since the runtime peeks into signatures in much
3604         more places than it does decoding so it makes sense to ensure that all
3605         pointers to blob objects are well formed.
3607 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3609         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
3610         Use proper overflow dectection. Fix usage of it.
3612 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3614         * loader.c (field_from_memberref): Call into the verifier to check
3615         the signature.
3617         * loader.c (mono_method_get_signature_full): Same.
3619         * loader.c (method_from_memberref): Same.
3621         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
3623         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3624         part of the internal API.
3626 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3628         * threadpool.c (mono_thread_pool_add): If the domain is unloading
3629         or unloaded, still return an AsyncResult, but don't add it to the
3630         threadpool.
3632 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3634         * threads.c: fix missing colon when DEBUG is defined.
3636 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3638         * threadpool.c: Don't add new calls to a threadpool if the domain
3639         of the call is unloading or unloaded.  When dequeuing a job, null
3640         the reference in the queue.
3642 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3644         * sgen-gc.c (null_link_in_range): Add the dislink for the old
3645         generation if an object was moved.
3647 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
3649         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
3650           parameters of type SAFEARRAY[VARIANT].
3652         * reflection.c (encode_marshal_blob): Properly generate element type
3653           (SafeArraySubType marshal attribute option).
3655         Code is contributed under MIT/X11 license.
3657 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
3659         * reflection.c: in mono_method_clear_object () really ensure all the
3660         objects are removed.
3662 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3664         * loader.c (mono_method_signature): Call into the verifier to check
3665         the method signature.
3667         * metadata-verify.c (verify_method_table): Move signature verification
3668         to verify_method_table_full.
3670         * metadata-verify.c: Add mono_verifier_verify_method_signature.
3672         * verify-internals.h: Export mono_verifier_verify_method_signature as
3673         part of the internal API.
3675 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3677         * loader.c (mono_method_get_header): Call into the verifier to
3678         check the method header.
3680         * metadata-verify.c: Add mono_verifier_verify_method_header.
3682         * verify-internals.h: Export mono_verifier_verify_method_header as
3683         part of the internal API.
3685 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3687         * class.c (mono_class_find_enum_basetype): Call into the verifier to
3688         check the field signature. Replace an assert with an explicit check.
3690         * class.c (mono_class_setup_fields): Call into the verifier to check
3691         the field signature.
3693         * metadata-verify.c: Add mono_verifier_verify_field_signature.
3695         * verify-internals.h: Export mono_verifier_verify_field_signature as
3696         part of the internal API.
3698 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3700         * class.c (mono_class_find_enum_basetype): Simplify this function
3701         by moving code outside of the loop and not decoding static fields.
3703 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3705         * metadata-verify.c (verify_typedef_table): Check the extends
3706         token here. Move to here a flags check from verify_typedef_table_full.
3708 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3710         * metadata-verify.c (is_valid_method_header): Fix a warning.
3712         * metadata-internals.h (MonoImage): Remove the unused 
3713         static_rgctx_invoke_wrapper_cache.
3715         * image.c marshal.c: Ditto.
3717 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3719         * image.c (do_mono_image_load): Enable table data verification.
3721 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3723         * metadata-verify.c (is_valid_constant): Fix nullref check.
3725 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3727         * metadata-verify.c (is_valid_constant): Fix string bounds check.
3729 2009-06-22  Mark Probst  <mark.probst@gmail.com>
3731         * sgen-gc.c: Managed allocation with pthreads TLS.
3733         * threads.c, threads-types.h: Functions for the JIT to tell the
3734         runtime whether it supports the MONO_TLS opcode.
3736 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3738         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
3739         without methods.
3741 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3743         * metadata-verify.c (is_valid_constant): Fix the string length check.
3744         Use safe overflow checking. Add decent error messages.
3746 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3748         * metadata-verify.c: Move remaininh blob checks to the offline
3749         verification path.
3751 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3753         * metadata-verify.c: Move more blob checks to the offline verification
3754         path.
3756 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
3758         * object-internals.h : Adding interrupt_on_stop field.
3760         * threads.c (mono_thread_request_interruption) : On Windows exit the
3761           thread if interrupt_on_stop is set.
3763         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
3764          Removing old interrupt logic and setting the interrupt_on_stop for the
3765          thread when calling accept.
3767         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
3768          setting the interrupt_on_stop for the thread when calling accept.
3770         Contributed under MIT/X11 license.
3772 2009-06-20  Martin Baulig  <martin@ximian.com>
3774         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
3776 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
3778         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
3779         running in no-exec mode.
3781 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3783         * metadata-verify.c (verify_method_table): Move header
3784         checking to verify_method_table_full.
3786         * metata-verify.c (mono_verifier_verify_full_table_data):
3787         Call verify_method_table_full.
3789 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3791         * metadata-verify.c (verify_field_table): Move signature
3792         checking to verify_field_table_full.
3794         * metata-verify.c (mono_verifier_verify_full_table_data):
3795         Call verify_field_table_full.
3797 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3799         * metadata-verify.c (verify_typedef_table): Move remaining
3800         stuff to verify_typedef_table_full.
3802 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3804         * metadata-verify.c: Kill is_corlib from VerifyContext.
3805         It is only used by the offline mode.
3806         So we better remove it from the runtime path.
3808 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3810         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
3811         function that perform the offline metadata verification steps.
3813         * metadata-verify.c (verify_typedef_table): Move some checks to
3814         verify_typedef_table_full and make it been called by new function
3815         mono_verifier_verify_full_table_data.
3817         * pedump.c: Call mono_verifier_verify_full_table_data.
3819         * verify-internals.h: Export mono_verifier_verify_full_table_data as
3820         part of the internal API.
3822 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3824         * metadata-verify.c (typedef_is_system_object): Fix System.Object
3825         check.
3827         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
3828         flags bits. SupportLastError was confused as bit 7 instead of 6.
3830         * metadata-verify.c (verify_implmap_table): Fix import scope verification
3831         to check against the module ref table instead of module.
3833         * metadata-verify.c (verify_implmap_table): Fix corlib check.
3835         * pedump.c: Call mono_image_load_names.
3837 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3839         * image.c: Extract mono_image_load_names from do_mono_image_load.
3841         * metadata-internals.h: Export mono_image_load_names as part of
3842         the internal API.
3843         
3844 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3846         * metadata.c (mono_metadata_cleanup): Free the generic method cache
3847         first, as it could reference data in the other caches.
3849 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3851         * metadata-verify.c: Finished with method header verification.
3853 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3855         * metadata-verify.c: Added more header verification code.
3856         Now only EH clauses are missing.
3858 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3860         * marshal.c (get_runtime_invoke_type): Don't share primitive types
3861         for return values.
3863 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3865         * metadata-verify.c: Initial method header verification.
3867 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3869         * metadata-verify.c (verify_import_table): The IAT contents
3870         might end been patched by the windows DL when running with
3871         coree enabled.
3873 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3875         * class.c (mono_class_from_typeref): If the enclosing type is not
3876         found return null instead of crashing. Fixes #508487.
3878 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3880         * normalization-tables.h : updated to the latest unicode charcter
3881           data.
3882         * appdomain.c : bump corlib version.
3884 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3886         * class.c (mono_class_from_name): Fix support for assembly references
3887         in the EXPORTEDTYPE table. Fixes #511704.
3889 2009-06-13  Geoff Norton  <gnorton@novell.com>
3891         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3892         assembly in the target domain.
3894 2009-06-12  Robert Jordan  <robertj@gmx.net>
3896         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3897         because "this" of the managed signature has become an
3898         ordinary parameter in the unmanaged signature.
3900 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3902         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3903         field for owner-less generic containers.
3905         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3906         image field of the owner-less generic containers created here.
3908         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3909         contain is ownerless until the caller sets its owner.
3911         * metadata.c (type_in_image): Handle owner-less generic containers
3912         correctly.
3913         
3914 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3916         * image.c (mono_image_close): Support debug_assembly_unload for
3917         dynamic images too.
3919 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3921         * class.c: Fix some typos in comments.
3923 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3925         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3927         * threads.c (mono_thread_execute_interruption): Avoid creating the
3928         abort exception object while holding the synch_cs lock.
3930 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3932         * metadata-verify.c: Verify basic cattr content.
3934 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3936         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3937         nested types.
3938         
3939         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3940         support for nested types. Fixes #511704.
3942 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3944         * metadata-verify.c: Verify methodspec signatures.
3946 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3948         * metadata-verify.c: Verify typespec signatures.
3950 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3952         * metadata.c (free_inflated_method): Call 
3953         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3955 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3957         * mono-config.c: Small change to report the PPC64/ILP32 model.
3959 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3961         * metadata-verify.c (parse_type): Check szarray.
3963 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3965         * metadata-verify.c (parse_type): Check fnptr.
3967 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3969         * metadata-verify.c (parse_type): Check generic instances.
3971 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3973         * metadata-verify.c (parse_type): Check array shape.
3975 2009-06-05  Robert Jordan  <robertj@gmx.net>
3977         * class.c (mono_class_create_from_typedef): Check only for
3978         mscorlib's System.Array.
3980 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3982         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3983         and generic params. 
3985         * metadata-verify.c (parse_field): Check the signature.
3987 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3989         * metadata-verify.c: Implement locals signature check.
3991 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3993         * domain.c: Add .NET 4.0 Beta 1 version.
3995 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3997         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3998           For QueryInterface on CCWs consider the base class
3999           interfaces as well.
4001         Code is contributed under MIT/X11 license.
4003 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4005         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
4007         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
4008         used.
4010         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
4011         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
4013         * generic-sharing.c (inflate_other_data): Ditto.
4014         
4015 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
4017         * metadata-verify.c: Implement property signature check.
4019 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4021         * sgen-gc.h: Register saving support for PPC.
4023 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4025         * sgen-gc.c: Fixed a pthread TLS screwup.
4027 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4029         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
4030         supported.
4032 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4034         * sgen-gc.c: Disable TLA and managed allocation if the __thread
4035         keyword is not supported.
4037 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4039         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
4040         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
4041         the inflated method is freed. Fixes #508389.
4043         The code is contributed under the MIT/X11 license.
4044         
4045 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
4047         * marshal.c (get_wrapper_target_class): New helper function.
4048         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
4049         the <Module> class of the image. Fixes #509049.
4051 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4053         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
4054         Check if the thread was interrupted and proccess it straight away.
4055         Makes abortion much more responsive.
4057 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4059         * threads.c (mono_thread_execute_interruption): Use atomic cas with
4060         MonoThread::interruption_requested to match it's counterpart.
4062         Fixes a hang in abort-stress-1 on a 2 core x86.
4064         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4065         Fix warning.
4067 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4069         Change MonoImage::name_cache to be protected by the image lock
4070         instead of the loader lock.
4072         * appdomain.c (deregister_reflection_info_roots): Protect access
4073         to name_cache.
4075         * class.c (mono_image_init_name_cache): Change from the loader lock
4076         to the image lock. Check if the cache wasn't already created.
4078         * class.c: Change from the loader to the image lock.
4080         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
4081         the code to hold the image lock while iterating over name_cache and
4082         not go into mono_array_new holding it.
4084         * metadata-internals.h: Add a comment about this change.
4086 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4088         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
4089         Under the 2.0 profile raise the loader error.
4091         Fixes #508532.
4093 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4095         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
4096         of ldind opcode for generic instances so we don't fail for direct wrappers.
4097         This only affect direct calls.
4099 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
4101         * reflection.c (create_dynamic_mono_image): Fix warnings.
4103         * generic-sharing.c (other_info_equal): Ditto.
4104         
4105 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4107         * metadata-verify.c: Implement field signature check.
4109 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4111         * metadata-verify.c: Implement standalone signature check.
4113 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
4115         * metadata-verify.c: Implement methodref signature check.
4117 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
4119         * object-internals.h (MonoRuntimeCallbacks): New structure containing
4120         callbacks supplied by the runtime.
4122         * object.c (mono_install_callbacks): New internal function to install
4123         the callbacks.
4125         * object.c (mono_create_ftnptr): Move the implementation of this to
4126         mini/.
4128         * object.c (mono_get_addr_from_ftnptr): Ditto.  
4130 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4132         * metadata-verify.c (parse_return_type): Proper byref check.
4133         * metadata-verify.c (is_valid_method_signature): Check for zero arity
4134         generic signatures and method params.
4136 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4138         * metadata-verify.c (decode_signature_header): Fix bounds check.
4140         * metadata-verify.c (parse_custom_mods): Check custom mods.
4142         * metadata-verify.c (parse_type): Do initial basic verification
4143         of valid values.
4144         
4145         * metadata-verify.c (is_valid_method_signature): Parse the generic
4146         param count.
4148 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
4150         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
4151         discarded based on their most specific definition so we set the method_slots
4152         array before checking if the method is acceptable or not.
4154         Fixes #506757.
4156 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4158         * icall.c: Free the old array when resizing a mono_ptr_array.
4160 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4162         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
4163         for the hashes whose keys are managed objects.
4165 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4167         * object-internals.h, threads.c: Set the execution context on
4168         thread start here, not in corlib.
4170         * appdomain.c: Bump corlib version.
4172 2009-05-27  Martin Baulig  <martin@ximian.com>
4174         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
4175         if `_mono_debug_using_mono_debugger' is set to make things work
4176         properly when embedding Mono.
4178 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4180         * class.c (mono_class_setup_fields): Don't mark simd types as having
4181         16 bytes alignment as the whole runtime doesn't support.
4183 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4185         * metadata-verify.c (safe_read): Use endian safe read macros.
4187 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
4189         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
4190         it is read-only when using full aot.
4192 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4194         * metadata-verify.c (is_valid_method_signature): Verify parts
4195         of the return type. Provide an error message in case of failure.
4197 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4199         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
4201 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4203         * metadata-verify.c: Include the size prefix in the bounds check.
4205 2009-05-22  Miguel de Icaza  <miguel@novell.com>
4207         * icall.c: Remove warnings.
4209         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
4210         prevent auto-detection based on GCC defines.
4212         Add PS3
4214         * metadata-verify.c: Do not include signal.h
4216         * generic-sharing.c, marshal.c: Add returns to avoid some warning
4217         messages.  Not sure why the g_assert_not_reached is not enough to
4218         quiet the compiler.
4219         
4221         * appdomain.c: Remove code that is not used when
4222         DISABLE_SHADOW_COPY is set.
4224         * image.c: use g_getenv
4226 2009-05-21  Miguel de Icaza  <miguel@novell.com>
4228         * reflection.c: Remove code that it not used with
4229         DISABLE_REFLECTION_EMIT is defined.
4231 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
4233         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
4234         invoke wrappers.
4236 2009-05-20  Miguel de Icaza  <miguel@novell.com>
4238         * socket-io.c
4239         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
4240         the ifdef here and instead put that on io-layer
4242 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4244         * metadata-verify.c: Verify the generic param constraint table.
4246 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4248         * metadata-verify.c (verify_generic_param_table): Fix
4249         thinko on the valid flags bits for generic params.
4251 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4253         * metadata-verify.c: Verify the methodspec table.
4255 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4257         * metadata-verify.c: Verify the generic param table.
4259 2009-05-19  Mark Probst  <mark.probst@gmail.com>
4261         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
4263 2009-05-19  Mark Probst  <mark.probst@gmail.com>
4265         * sgen-gc.c: Use generation enum more consistently and use the
4266         correct generation in mono_gc_register_for_finalization().
4268 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
4270         * metadata-verify.c: Verify the nested class table.
4272 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
4274         * metadata-verify.c: Verify the manifest resource table.
4276 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
4278         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
4280 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
4282         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
4283         wrappers, this is now done in the JIT.
4284         
4285         * class.c (mono_set_generic_sharing_supported): New internal function.
4286         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
4288 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4290         * metadata-verify.c: Verify the exported type table.
4292 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4294         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
4296 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4298         * metadata-verify.c: Verify the file table.
4300 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4302         * metadata-verify.c (verify_assembly_table): Fix an error message.
4304         * metadata-verify.c: Verify the assemblyref table.
4306 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4308         * metadata-verify.c (verify_assembly_table): Fix the valid
4309         bits mask for flags.
4311 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4313         * debug-helpers.c (mono_method_full_name): Print generic parameters of
4314         generic methods as well.
4316 2009-05-15  Geoff Norton  <gnorton@novell.com>
4318         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
4319         use-case and is significantly more performant than the wapi layer.
4321 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4323         * metadata-verify.c: Verify the assembly table.
4325 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4327         * metadata-verify.c: Fix rows limit check.
4329 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4331         * metadata-verify.c: Verify the fieldrva table.
4333 2009-05-13  Mark Probst  <mark.probst@gmail.com>
4335         * sgen.c: Speed up weak links and finalizers by grouping them by
4336         generation.
4338 2009-05-13  Mark Probst  <mark.probst@gmail.com>
4340         * marshal.c (delegate_hash_table_add): When overwriting an entry,
4341         free the old GCHandle (only applies to SGen).
4343 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
4345         * loader.c (mono_get_method_from_token): Avoid the expensive call to
4346         mono_metadata_load_generic_params () for non-generic methods.
4348 2009-05-12  Mark Probst  <mark.probst@gmail.com>
4350         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
4351         New function for returning a monitor's weak link if it has one.
4353         * sgen-gc.c: Remove an object's monitor's weak link (if it has
4354         one) when clearing a domain.  These can still be around because
4355         the object might not have been collected.
4357 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
4359         * gc.c: Fix a warning.
4361 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
4363         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
4364         prevous wait that resulted in a deadlock on Windows when initializing
4365         the runtime form DllMain. Also results in improved startup time.
4366         (finalizer_thread): Get rid of thread_started_event.
4367         * threads.c, threads-types.h (mono_thread_create_internal): Return the
4368         resulting MonoThread.
4370         Contributed under MIT/X11 license.
4372 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
4374         * metadata-verify.c: Verify the implmap table.
4375         Don't require that #US and #Strings be present.
4377 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
4379         * security-core-clr.c: Delegate checks are done at creation time,
4380         not a invocation time. Fix exception for Telerik Silverlight demo
4382 2009-05-11  Mark Probst  <mark.probst@gmail.com>
4384         * sgen-gc.c (need_remove_object_for_domain): Remove the special
4385         case for the Thread class.
4387         * threads.c: Do clean-up of abort exception/state in
4388         thread_cleanup() instead of Thread.free_internal().  Also clean up
4389         current_appcontext.  The reason we have to do that is because
4390         those references might point into another domain and if that
4391         domain is unloaded before the thread is finalized, they point to
4392         invalid data.
4394 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
4396         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
4397         stub signatures.
4398         
4399         Contributed unter MIT/X11 license.
4401 2009-05-09  Miguel de Icaza  <miguel@novell.com>
4403         * verify.c, metadata-verifier.c: Add support for disabling the
4404         verifier in some builds.
4406         [ Sorry, my previous commit accidentally commited some work in
4407         progress ]
4409 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
4411         * class.c (mono_class_setup_fields): Set class->field.first for
4412         generic instances.
4414 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4416         * metadata-verify.c: Verify the typespec table.
4418 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4420         * metadata-verify.c: Verify the module table.
4422 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4424         * metadata-verify.c: Verify the methodimpl table.
4426 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4428         * metadata-verify.c: Verify the property table.
4430 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
4432         * debug-helpers.c (mono_method_desc_match): Add support for generic
4433         glob patterns.
4435 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
4437         * metadata-verify.c: Verify the propertymap table.
4439 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
4441         * metadata-verify.c: Verify the event table.
4443         * metadata-verify.c (search_sorted_table): Fix offset
4444         calculation.
4446 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
4448         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
4450 2009-05-01  Mark Probst  <mark.probst@gmail.com>
4452         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
4453         because mono_delegate_free_ftnptr() needs it.
4455 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4457         * metadata-verify.c: Verify the eventmap table.
4459 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4461         * metadata-verify.c: Verify the standalonesig table.
4463 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4465         * metadata-verify.c: Verify the field layout table.
4467 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4469         * class.c (mono_type_get_name_recurse): Don't crash
4470         for ownerless generic params.
4472         * debug-helpers.c (mono_type_get_desc): Correct the format
4473         for ownerless generic params.
4475 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4477         * metadata-verify.c: Verify the class layout table.
4479 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4481         * metadata-verify.c: Verify the decl security table.
4483 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4485         * domain.c (mono_domain_set_internal_with_options): Don't do
4486         anything if the old domain is the same as the old one.  Fixes
4487         #499326.
4489 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4491         * appdomain.c: Deregister the reflection_info roots when unloading
4492         a domain.
4494         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
4495         memory allocated by a domain and frees its disappearing links.
4497         * boehm-gc.c, null-gc.c: Empty implementation of
4498         mono_gc_clear_domain().
4500 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4502         * appdomain.c (clear_cached_vtable): Free the static fields memory
4503         block.
4505 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4507         * gc.c: Set the correct domain when invoking finalizers.
4509         * appdomain.c: Set the correct domain when creating threads.
4511 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4513         * sgen-gc.c: Fix skip size for vectors.
4515 2009-05-03  Martin Baulig  <martin@ximian.com>
4517         * mono-debug-debugger.c
4518         (mono_debugger_check_breakpoints): Check class init handlers even
4519         if we don't have any method load handers.
4521 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
4523         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
4524         returning refonly assemblies if refonly is FALSE. Fixes #499013.
4526 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4528         * metadata-verify.c: Verify the field marshal table.
4530 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4532         * metadata-verify.c: Verify the custom attribute table.
4534 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4536         * metadata-verify.c: Verify the constant table.
4538 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4540         * metadata-verify.c: Verify the memberef table.
4542 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4544         * metadata-verify.c (get_coded_index_token): Remove
4545         dead argument.
4547 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4549         * metadata-verify.c: Verify the interfaceimpl table.
4551 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4553         * verify.c: Improve error message.
4555         * debug-helpers.c (mono_type_get_desc): Harden the code that
4556         deals with VAR and MVAR.
4558 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
4560         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
4561         part of #498692.
4563 2009-04-23 Tom Hindle <tom_hindle@sil.org>
4565         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
4566         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
4568 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
4570         * security-core-clr.c: Avoid redundant checks for platform code, 
4571         e.g. check for method and for class (very common) and check
4572         for class and outer class (less common)...
4574 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
4576         * reflection.c: Avoid returning random cattrs for synthetic methods.
4577         Fixes #498545.
4579 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4581         * assembly.c: assemblies in the GAC should never be shadow-copied.
4583 2009-04-26  Mark Probst  <mark.probst@gmail.com>
4585         * domain.c, domain-internals.h: Disable
4586         track_resurrection_{objects,handles}_hash in MonoDomain if using
4587         SGen.
4589 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4591         * metadata-verify.c: Verify the param table.
4593 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4595         * metadata-verify.c (verify_typedef_table): Range check FieldList and
4596         MethodList.
4598         * metadata-verify.c (verify_method_table): Proper check the ParamList
4599         field.
4601 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4603         * metadata-verify.c (verify_method_table): Check for runtime
4604         implemented functions such as delegate .ctors. Remove spurious
4605         printf.
4606         
4607 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4609         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
4611 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4613         Don't allocate MonoGenericInfo for ownerless generic params.
4614         * class-internals.h (MonoGenericParam::info): Move field to ...
4615         (MonoGenericParamFull): ... this.  New struct.
4616         (MonoGenericContainer::type_params): Change type to
4617         MonoGenericParamFull.
4618         (MonoGenericParam, MonoGenericContainer): Update accessors.
4619         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
4620         'info' field for ownerless generic param.
4621         (mono_metadata_load_generic_params): Update to changes.
4622         * reflection.c (mono_reflection_create_generic_class): Likewise.
4623         (reflection_methodbuilder_to_mono_method): Likewise.
4624         (mono_reflection_initialize_generic_parameter): Likewise.
4626 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4628         Don't use MonoGenericParamInfo for ownerless generic params.
4629         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
4630         use ParamInfo class at all.
4631         (mono_class_from_generic_parameter): Use them.
4632         (make_generic_param_class): Fix a couple of instances where 'pinfo
4633         == NULL' wasn't handle.
4635 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4637         * class.c (make_generic_param_class): Carve out of ...
4638         (mono_class_from_generic_parameter): ... here.
4640 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4642         Simplify mono_class_from_generic_parameter
4643         * class-internals.h (MonoGenericParamInfo::token): New field.
4644         * metadata.c (mono_metadata_load_generic_params): Initialize it
4645         from metadata.
4646         * class.c (mono_class_from_generic_parameter): Use it instead of
4647         searching through metadata.
4649 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4651         * metadata-verify.c: Add verification of the method table.
4653 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4655         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
4656         Delegate::Invoke optimization.
4658 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4660         * appdomain.c (mono_domain_create_appdomain_internal): Free the
4661         string returned by get_shadow_assembly_location_base.
4663         * appdomain.c (get_shadow_assembly_location_base): Add a comment
4664         about caller's ownership.
4666 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4668         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
4669         reflection memory on domain unload.
4671         * domain.c (mono_domain_free): Don't free refobject_hash, let the
4672         reflection cleanup code do it.
4674         * domain-internals.h: Add mono_reflection_cleanup_domain.
4676         This fixes a memory leak for managed mirrors of reflection objects
4677         on domain unload. 
4679 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4681         * metadata-verify.c: Implement more verification of the field table.
4683 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4685         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
4686         doesn't try to parse the input assembly, which can be broken.
4688 2009-04-23  Mark Probst  <mark.probst@gmail.com>
4690         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
4691         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
4692         by using the lowest bit in the link to store whether the link is
4693         tracked.  Move the track_resurrection hashes into boehm-gc.c.
4695 2009-04-22  Miguel de Icaza  <miguel@novell.com>
4697         * Makefile.am: Split the console support in platform specific code
4698         and put together a framework for making this easy in the future so
4699         that we can start splitting code instead of having a mess of PLATFORM_WIN32
4701 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4703         * pedump.c: Fix a warning.
4705 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4707         * verify.c (mono_delegate_type_equal): Compare valuetypes using
4708         mono_class_from_mono_type to avoid bad interactions with the dual representation
4709         of the generic type definition.
4711 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4713         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
4714         get the MonoClass for the call context type as it might be a generic
4715         instance.
4717         Fixes #491483.
4719 2009-04-21  Mark Probst  <mark.probst@gmail.com>
4721         * object-internals.h: The Thread object has no execution_context
4722         member anymore.
4724         * threads.c, threadpool.c, threads-types.h: Accessor functions for
4725         the execution context.
4727         * appdomain.c: Bump corlib version.
4729 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4731         * verify.c (do_newobj): Improve error message.
4733 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4735         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
4736         is nested in the filter block.
4738         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
4739         block is not fully nested.
4741         Fixes #495656.
4743 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4745         * verify.c (verify_type_compatibility_full): Compare MonoClass and
4746         not MonoType to check for equality of valuetypes as the generic type
4747         definition allows for two different encodings: the generic type definition
4748         class or a generic instance over the GTD arguments.
4750         Fixes #496175.
4752 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4754         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
4756         * verify.c (do_initobj): Improve error message.
4758 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4760         * metadata-verify.c: Enable pe verification as the issue with #496453
4761         is that the authenticode data directory have a different unspecified
4762         format. Ignore it for now.
4764         * pedump.c: Run the metadata verifier together with the IL verifier.
4766         Fixes ##496453.
4768 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4770         * metadata-verify.c: Temporarily disable pe verification due to #496453.
4772 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4774         * class.c (can_access_type): Check visibility against
4775         the element type for pointers and arrays.
4777         Fixes #496150.
4779 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4781         * metadata-verify.c: Fix cli and table verification to use information
4782         from the MonoImage. A lot of duplicated code got killed.
4784 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4787         This patch starts to integrate the metadata verifier with the runtime code.
4789         This patch causes major regression in functionality for the metadata verifier
4790         as cli and table verification are disabled since they require to be ported to
4791         use MonoImage information.
4793         * image.c (do_mono_image_load): Split the code in this function
4794         into mono_image_load_pe_data and mono_image_load_cli_data.
4795         Add     care_about_pecoff parameter to not load pecoff data.
4796         Call into the metadata verifier for pecoff and cli verification.
4798         * image.c (mono_image_open_raw): New function that doesn't perform
4799         any parsing of the image contents.
4800         
4801         The reason for the 3 new functions is to give pedump better control
4802         into the interaction with the verifier.
4804         * metadata-internals.h: Add new functions from image.c as part of the
4805         internal mono API.
4807         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
4808         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
4809         to make those functions work together with the runtime.
4811         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
4812         true if the image needs to be verified.
4814         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
4816         * pedump.c: Use new metadata verifier API.
4818 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
4820         * object.c (mono_install_vtable_trampoline): Make this receive a
4821         trampoline creation function instead of trampoline, allowing the JIT
4822         to use a different trampoline for each vtable.
4824 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4826         * object.c (mono_raise_exception): Don't reset the thread abort
4827         exception state here.
4829 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4831         * icall-def.h: New icall for getting the thread abort exception
4832         state for a thread.
4834         * object.c, thread.c, object-internals.h: A thread's abort
4835         exception state is now a GC handle.  To get the object it stands
4836         for, we must move it into the current app domain, if it's
4837         different than the one where it originated from.
4839         * appdomain.c: Bump corlib version.
4841         * domain.c, domain-internals.h: New function for setting the
4842         domain and migrate the thread abort exception or not.
4844 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4846         * metadata-verify.c: Add initial verification of the
4847         field table.
4849 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4851         * metadata-verify.c: Add a macro to conditionally enable
4852         dumping of verification information. Add  make_coded_token
4853         and search_sorted_table to enable search sorted tables
4854         by a given coded token.
4856 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4858         * metadata-verify.c: Add array mapping from table index
4859         to description offset. Add get_col_offset and get_col_size
4860         functions.
4862 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4864         * metadata-verify.c: Add remaining table descriptions offsets.
4865         Add remaining coded index descriptions.
4867 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4869         * metadata-verify.c: Fixed constant table description.
4870         Fixed calculation of HasCustomAttribute coded index size.
4871         Fixed calculation of size for many table indexes. 
4873 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4875         * pedump.c (dump_metadata): Dump table offset instead
4876         of useless pointer in memory.
4878 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4880         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4882 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4884         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4885         a missing of for interface types.
4887 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4889         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4890         the code is commented.
4892         * metadata-verify.c (verify_resources_table): Remove spurious printf
4893         and don't fail if there are unmanaged resources. Gmcs generates a useless
4894         one     for all assemblies - I bet it's some MS compatibility junk.
4896 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4898         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4900         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4902         * verify-internals.h: Same.
4904         * pedump.c: Fix for mono_image_verify new signature.
4906 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4908         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4909         flags combinations.
4911 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4913         * metadata-verify.c (verify_module_table): Ignore the generation field.
4915 2009-04-15  Martin Baulig  <martin@ximian.com>
4917         * debug-mono-symfile.c
4918         (mono_debug_symfile_lookup_location): Don't print a warning for
4919         unknown extended opcodes if they're within 0x40 and 0x7f.
4921 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4923         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4924         invoke signatures returning an enum. Fixes #494847.
4926 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4928         * metadata-verify.c: Initial code to verify the typedef table.
4930 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4932         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4933         with non empty stack happens before the beginning of a try block.
4935         Fixes #494812.
4937 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4939         * metadata-verify.c: Verify typename and typenamespace fields of
4940         the typeref table.
4942 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4944         * metadata-verify.c: Initial code to verify the typeref table.
4946 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4948         * verify.c (verify_delegate_compatibility): Fix error message.
4950 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4952         * security-core-clr.c: Fix typo
4954 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4956         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4957         a MonoGHashTable to keep its values alive.
4958         (emit_marshal_boolean): Fix a warning.
4960 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4962         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4963         not have any interface configured for IPv4/IPv6.
4965 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4967         * assembly.c: fix typo in error message.
4969 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4971         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4972         allocating the location holding the this argument to prevent
4973         'too many root sets' errors.
4975         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4976         to mark fields as special static.
4977         (mono_field_static_get_value): Handle special static fields.
4978         (mono_field_static_set_value): Ditto.
4980         * class-internals.h (struct _MonoClassField): Document this.
4982 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4984         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4985           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4986           case.  This will handle when managed code returns null to native code.
4988         Code is contributed under MIT/X11 license.
4990 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4992         * object.c (build_imt_slots): Changing a free to a g_free to match
4993           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4995         Code is contributed under MIT/X11 license.
4997 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4999         * marshal.c (emit_marshal_boolean): Adding code to ensure that
5000           the correct TRUE value is passed through the marshaling layer.
5002         Code is contributed under MIT/X11 license.
5004 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5006         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
5007         correctly. Fixes #492330.
5008         
5009         * marshal.c: Fix the embedding of object pointers into JITted code in
5010         the native-to-managed wrappers by allocating some GC tracked memory, and
5011         embedding the address of that.
5013 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5015         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
5016         pointers into the vtable.
5018 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
5020         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
5022         * verify.c (verify_ldftn_delegate): Improve error message.
5024 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5026         * reflection.c (my_mono_class_from_mono_type): Remove.
5028 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5030         Prepare to reduce memory usage of owner-less generic parameters (1/n)
5031         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
5032         and constraints fields into ...
5033         (MonoGenericParamInfo): ... this.
5034         (mono_generic_param_info, mono_generic_container_get_param_info):
5035         New accessors.
5036         * class.c, debug-helpers.c, icall.c: Update to changes.
5037         * metadata.c, reflection.c, verify.c: Likewise.
5039 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
5041         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
5043         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
5044         
5045         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
5046         booleans with sbytes.
5048 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5050         * class.c (can_access_instantiation): Verify accesibility of element types
5051         for arrays and pointers.
5053         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
5055         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
5057         Fixes #493068.
5059 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5061         * verify.c (do_invoke_method): Improve error messages.
5063 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
5065         * verify.c:  Fixing the MSVC build.
5067         Code is contributed under MIT/X11 license.
5069 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
5071         * security-core-clr.c: Simplify get_reflection_caller not to call
5072         mono_method_get_last_managed (another stack walk) and adjust the
5073         callers to handle a (should not happen) NULL return value.
5075 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5077         Add accessors to some MonoGenericParam fields
5078         * class-internals.h (mono_generic_param_owner): New accessor.
5079         (mono_generic_param_num): Likewise.
5080         (mono_type_get_generic_param_owner): New helper.
5081         (mono_type_get_generic_param_num): New helper.
5082         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
5084 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5086         * class-internals.h (mono_generic_container_get_param): New wrapper.
5087         * class.c, icall.c, metadata.c, verify.c: Use it.
5089 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5091         Fix gtest-252.cs
5092         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
5093         the standard case/loop.  In particular, don't complain about
5094         references to generic type definitions.
5096 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
5098         * debug-helpers.c (dis_one): Decode string arguments.
5100 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5102         * pedump.c (dump_verify_info): Dump type name correctly.
5104 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5106         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
5107         are larger than code size.
5109         This can happen in valid code if the try/catch block is not followed by any instruction
5110         and do a backward branch on the leave instruction.
5112         Fixes #492494.
5114 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
5116         * security-core-clr.c: Fix typo while comparing second method names
5117         in can_avoid_corlib_reflection_delegate_optimization
5119 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5121         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
5123         Fixes #487738.
5125 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5127         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
5128         a MVAR using a class context.
5130         Fixes #490335.
5132 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
5134         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
5136         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
5138         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
5139         functions supplied by the JIT for the SGEN GC.
5141         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
5142         
5143 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
5145         monitor.c (mono_monitor_try_enter_internal):
5146         Added calls to profile monitor contentions.
5147         Also duplicated a small piece of code (the "get the monitor" logic)
5148         from the fast path to the slow path, and changed the relevant goto
5149         statements, so that monitor acquisition events can be emitted from the
5150         slow path (this is by Paolo Molaro).
5152 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
5154         * profiler.c, profiler.h, profiler-private.h:
5155         Added support for profiling monitor contentions.
5157 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
5159         * metadata-verify.c: Verify the modules table.
5161 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
5163         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
5164         using the context of the method been verifier and not of the method been called.
5166         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
5167         safely inflate generic types. 
5169 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5171         * security-core-clr.c: Change the strategy for checking the 
5172         "reflection using delegates optimization" to avoid unneeded 
5173         attributes in multiple class libraries.
5175 2009-04-02  Mark Probst  <mark.probst@gmail.com>
5177         * sgen-gc.c: Remove object element in the disappearing link struct
5178         by storing the object pointer in the link.
5180 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5182         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
5184 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5186         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
5188         * verify.c (mono_method_verify): Do proper bounds checking of exception
5189         clause ranges.
5191 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5193         * loader.c (mono_field_from_token): Don't crash if the field parent could
5194         not be decoded.
5196 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5198         * sgen-gc.c: Execute critical finalizers after ordinary
5199         finalizers.
5201         * class-internals.h, domain.c: Add CriticalFinalizerObject to
5202         mono_defaults.
5204 2009-03-31 Jb Evain <jbevain@novell.com>
5206         * verify.c (do_ldstr): don't check if a string is in the user strings
5207         heap if the current image is dynamic.
5209 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5211         * sgen-gc.c: Wait until the last finalizer has executed when
5212         returning from WaitForPendingFinalizers.
5214 2009-03-31  Martin Baulig  <martin@ximian.com>
5216         * mono-debug-debugger.h (MonoDebuggerEvent): Add
5217         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
5218         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
5219         (mono_debugger_event_create_appdomain): New function.
5220         (mono_debugger_event_unload_appdomain): New function.
5222         * appdomain.c (mono_domain_create_appdomain_internal): Call
5223         mono_debugger_event_create_appdomain().
5225 2009-03-31  Martin Baulig  <martin@ximian.com>
5227         * mono-debug-debugger.c
5228         (mono_debugger_register_class_init_callback): Also register the
5229         class init callback if the class is already initialized to make
5230         things work with shadow copied assemblies.
5232 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
5234         * security-core-clr.c
5235         (mono_security_core_clr_ensure_reflection_access_field): Let 
5236         critical code access the field (just like we do for methods). Use
5237         check_field_access helper.
5238         (mono_security_core_clr_ensure_reflection_access_method): Use 
5239         check_field_access helper.
5241 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5243         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
5244         call the run-finalize function directly.
5246         * gc.c, gc-internal.h: Make run_finalize() non-static.
5248 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5250         * sgen-gc.c: Use a separate struct for disappearing links.
5252 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
5254         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
5255         * MaxIOVectorLength enabled, just ignore them.
5256         Fixes bug #349688.
5258 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
5260         * metadata-verify.c: Fix eglib build.
5262 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
5264         * threads-types.h: Fix the win32 build.
5266 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
5268         * class.c: move coreclr inheritance/override checks to 
5269         security-core.clr.c
5270         * security-core.clr.c|h: add code from class.c with additional
5271         documentation. Fix override check when the method is not critical.
5273 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
5275         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
5276         (match_class): Ditto.
5278 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
5280         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
5282         * metadata-verify.c: Implement table layout row size calculation. Verify
5283         the total size of the tables.
5285 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
5287         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
5289 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5291         * appdomain.c:
5292         * console-io.[ch]: added new mono_console_init() to make sure that
5293         file descriptors 0, 1 and 2 are opened.
5294         Bug #489019 fixed.
5296 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
5298         * appdomain.h: Export a new callback type and a new function to
5299         set this callback. This allow a mono host to provide it's own
5300         definition for "platform code".
5301         * metadata-internals.h: Add a core_clr_platform_code flag on 
5302         _MonoImage to (cache and) know if it is representing platform 
5303         code.
5304         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
5305         on platform code images.
5306         * security-core-clr.c|h 
5307         (mono_security_set_core_clr_platform_callback): Allow the host
5308         to provide it's own platform check definition.
5309         (mono_security_core_clr_determine_platform_image): Detect if an 
5310         image is platform code (using the specified callback).
5311         (mono_security_core_clr_is_platform_image): Return cached value 
5312         for platform code.
5314 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
5316         * threads.c (mono_create_thread): New helper function to wrap CreateThread
5317         which has different parameter types for the 'tid' argument in windows and
5318         the io-layer.
5320         * appdomain.c attach.c threads.c: Use the new helper.
5322 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
5324         * metadata-verify.c: Verify valid table bits.
5326 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
5328         * metadata-verify.c (verify_metadata_header): Store size in the size field.
5330         * metadata-verify.c: Add initial table schema verification.
5332 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5334         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
5335         obtain the refclass argument needed by mono_param_get_objects (). Fixes
5336         #488383.
5338         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
5340         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
5342 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
5344         * security-core-clr.c: Add/update documentation
5346 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5348         * marshal.c (emit_marshal_object): Generate code to throw an exception
5349         instead of throwing it. Fixes #488670.
5351 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
5353         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
5354         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
5355         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
5356         and add a call to mono_security_core_clr_ensure_delegate_creation
5357         to do the extra checks required by CoreCLR.
5358         * security-core-clr.c|h: Add function to check delegate creation,
5359         both in the binding and accessibility, under CoreCLR.
5361 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
5363         * reflection.c (mono_reflection_create_dynamic_method): when 
5364         coreclr is enabled make sure that every resolved object are
5365         checked (e.g. field and method access).
5366         * security-core-clr.c|h: Add function to check objects resolved
5367         when a dynamic method is created.
5369 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5371         * metadata-verify.c: Cache directory rva translations.
5373         * metadata-verify.c: Add cli-header and streams verification.
5375 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5377         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
5378         the wrong offset (8 instead of 6).
5380 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
5382         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
5383         methods, return the native function address itself. Fixes
5384         #487758.
5386 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
5388         * console-io.c: some of the values for control characters might not be
5389         present.
5391 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
5393         * exception.c|h: Add helpers to create [Field|Method]AccessException
5394         * icall.c: Add required coreclr check calls for field reflection.
5395         Move the existing (method) check logic into security-core-clr.c
5396         * security-core-clr.c: Add functions to check if the access of a
5397         field or method is allowed when reflecting under coreclr. This is
5398         mostly done using a stack walk to find the "real" caller: i.e. the
5399         code that is calling the reflection
5401 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
5403         * gc-internal.h: Change location of gc_wrapper.h
5405 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
5407         * class.c: Simplification to coreclr checks for overrides that
5408         makes it easier to set breakpoints.
5410 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
5412         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
5413         mono_security_core_clr_method_level): Avoid potential 
5414         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
5415         user/application code) and make it easier to set breakpoints
5417 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5419         * metadata-verify.c: Reject cli header tables that mono don't handle.
5421 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5423         * pedump.c: Fix CLI header dumping.
5425 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5427         * metadata-verify.c: More CLI header verification.
5429 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5431         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
5433 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5435         * metadata-verify.c: Initial verification of the CLI header.
5437 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5439         * metadata-verify.c (verify_resources_table): Fix verification of zero
5440         sized resource section and id entries count.
5442 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
5444         * icall.c: Handle user types in many Type icalls. Fixes #486303.
5446 2009-03-17  Jb Evain  <jbevain@novell.com>
5448         * profiler.c: call mono_gc_base_init from mono_profiler_load.
5450 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
5452         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
5453         (mono_gc_make_descr_for_array): Ditto.
5455 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5457         * verify.c (mono_verifier_is_class_full_trust): Add support for
5458         CoreCLR security mode where trusted assemblies are defined as
5459         "platform code".
5461 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5463         * metadata-verify.c: Add minimal PECOFF resource verification.
5465 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5467         * metadata-verify.c: Be less restrictive with some coff fields.
5469 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5471         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
5472         params as boxed values on stack. Fixes #485706.
5474 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5476         * console-io.c: the termios values may vary in different flavors of unix.
5478 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5480         * console-io.[ch]: return the entire set of control characters when
5481         initializing the terminal.
5482         * appdomain.c: bump corlib version.
5484 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
5486         * mono-perfcounters.c: added support for in-process custom
5487         performance counters.
5489 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5491         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
5493 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5495         * metadata-verify.c: Verify the data pointed by the import table. 
5497 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5499         * metadata-verify.c (load_data_directories): Store data
5500         directory contents.
5502         * metadata-verify.c: Verify the import table. 
5504 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5506         * metadata-verify.c: Verify data directories.
5508 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5510         * metadata-verify.c: Check section header flags.
5512 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5514         * appdomain.c: if the assembly name is a shadow-copied file, return
5515         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
5516         in mono_make_shadow_copy.
5517         * icall.c: if the assembly name is a shadow-copied file, replace it
5518         with the original assembly path.
5520         Bug #484244 fixed. NUnit tests for corlib can be run without
5521         --noshadow now.
5523 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
5525         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
5526         entries when the table is reallocated.
5528         * icall.c: Allocate the memory used by the mono_ptr_array macros using
5529         mono_gc_alloc_fixed () since it contains GC refs.
5531 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
5533         * reflection.c (ensure_complete_type): New helper function to call
5534         type resolve handlers for unfinished dynamic types.
5535         (resolve_object): Call it for MonoClassFields. Fixes #483852.
5537 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
5539         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
5540         #483247.
5542 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
5544         * appdomain.c (get_shadow_assembly_location): Fix memleak.
5546 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
5548         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
5549         between GCHandles of type WeakTrackResurrection and the objects they
5550         point to.
5552         * gc.c: Partly implement the sematics of GCHandles of type 
5553         WeakTrackResurrection: these handles should only be cleared after the
5554         finalizer of the object they are pointing to has ran.
5556 2009-03-06  Mark Probst  <mark.probst@gmail.com>
5558         * icall.c: Partially revert r126631 because using the jump
5559         trampolines for generic shared methods makes it superfluous.
5561 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
5563         * threads.c (handle_store): Create the 'threads' hash table with the proper
5564         MONO_HASH_VALUE_GC type.
5566 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
5568         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
5569         FIRST_GC_TRACKED.
5571         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
5572         and LAST_GC_TRACKED as a GC root.
5574         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
5576         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
5577         the static data even if it consists of 1 reference.
5579         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
5580         if there is a GC descriptor.
5582         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
5583         instead of through the GC since they contain no object references.
5585 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5587         * generic-sharing.c (instantiate_other_info): Always return a jump
5588         trampoline for method code.
5590 2009-03-05  Marek Habersack  <mhabersack@novell.com>
5592         * culture-info-tables.h: generated to include the en-tt culture.
5594 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5596         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
5597         capture the thread context.
5599         * object.c (mono_async_result_new): Cache the invoke wrappers to
5600         ExecutionContext::Capture.
5602 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5604         * marshal.h: Add a prototype for what mono_compile_method returns
5605         for invoke wrappers.
5607         * gc.c: Use the new prototype declaration.
5609 2009-03-04  Geoff Norton  <gnorton@novell.com>
5611         * boehm-gc.c: Add some MONO_LOG tracing for the GC
5612         * gc-internal.h:
5613         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
5615 2009-03-04  Martin Baulig  <martin@ximian.com>
5617         * mono-debug.h
5618         (mono_debugger_runtime_invoke): Removed.
5620         * mono-debug-debugger.c
5621         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
5623 2009-03-02  Martin Baulig  <martin@ximian.com>
5625         * mono-debug.h
5626         (mono_debugger_unhandled_exception): Removed.
5627         (mono_debugger_handle_exception): Removed.
5628         (mono_debugger_throw_exception): Removed.
5630         * mono-debug.c
5631         (mono_debug_debugger_version): Bump to 5.
5633         * mono-debug-debugger.c: Moved the exception handling code to
5634         ../mini/debug-mini.c
5636 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5638         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
5639         finalize_objects_hash.
5641         * gc.c: Use the separate lock to access the finalize_objects_hash field.
5642         
5643         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
5644         field.
5646         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
5647         cache.
5649         * image.c (mono_image_close): Free it.
5650         
5651         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
5652         allowing a creation of a wrapper which invokes its method using a CALLVIRT
5653         on the this argument.
5655         * gc.c (run_finalize): Optimize the calling of the finalizers.
5657 2009-03-03  Martin Baulig  <martin@ximian.com>
5659         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
5660         of the `MonoGenericInst' changes.
5662 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
5664         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
5665         mono_array_class_get_cached to reduce locking contention. Extract
5666         a domain var.
5668         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
5669         intermediary managed arrays. Use caching version of mono_array_new
5670         to allocate the result array.
5672         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
5674         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
5676         * locales.c (create_names_array_idx):  Use mono_array_new_cached
5677         to reduce locking contention.
5679 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5680                 
5681         * object.c (mono_method_add_generic_virtual_invocation): Put back the
5682         thunk builder code for the non-interface case.
5684 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5686         * object.c (get_generic_virtual_entries): New helper function to collect
5687         the virtual generic method instances which need to be added to an IMT
5688         thunk.
5689         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
5690         Instead of creating a new IMT thunk, reset the vtable slot to the
5691         trampoline, the thunk will be created the next time the trampoline is called.
5692         (build_imt_slots): Add support for virtual generic methods in interfaces by
5693         adding to the IMT thunk all the methods registered using 
5694         mono_method_add_generic_virtual_invocation ().
5696         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
5697         (struct _MonoIMTCheckItem): Ditto.
5699         * object.c (mono_method_add_generic_virtual_invocation): Take a
5700         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
5701         the IMT thunk to include all items.
5702         
5703         * object.c (mono_class_create_runtime_vtable): Add a missing
5704         mono_loader_unlock ().
5706 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5708         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5710         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
5712 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5714         * object-internals.h: Rename _MonoReflectionEvent to
5715         MonoReflectionMonoEvent so it reflects the right managed type.
5716         Add a MonoReflectionEvent that correctly represents System.EventInfo.
5718         * icall.c:
5719         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
5720         type.
5722 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5724         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
5725         intermediary managed arrays. Use caching version of mono_array_new
5726         to allocate the result array.
5728 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5730         * reflection.c: Use cached version of mono_array_new alongside
5731         the mono_reflection_get_custom_attrs_by_type call path.
5733 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5735         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
5736         intermediary managed arrays. Use caching version of mono_array_new
5737         to allocate the result array.
5739         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
5741 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5743         * icall.c: Add small implementation of a growable stack bound array.
5745         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
5747         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
5748         intermediary managed arrays. Use caching version of mono_array_new
5749         to allocate the result array.
5751 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
5753         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
5754         helps Enum::CompareTo to be implemented without reboxing all enums
5755         to their underlying type.
5756 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
5758         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
5759         since it acquires a global lock leading to scalability problems.
5761         * profiler.c: Make the stat profiler work with multiple appdomains, this
5762         currently only works when no appdomains are unloaded.
5764 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5766         * appdomain.c: make the check to avoid copying when the assembly is
5767         already shadow copied actually work.
5769 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
5771         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5773         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
5774         changes to the managed side.
5776 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
5778         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
5779         classes + a separate lock for it, as it is used frequently at runtime, not
5780         just during metadata loading/JIT compilation.
5782         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
5783         for szarrays.
5784         
5785         * object-internals.h (mono_class_from_name_cached): New macro to cache
5786         the results of the lookup locally without having to declare a static
5787         variable to hold it.
5788         (mono_class_get_field_from_name_cached): Ditto.
5789         (mono_array_class_get_cached): Ditto.
5791         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
5792         the new macros.
5793         
5794         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
5795         slower search in metadata.
5797         * pedump.c: Fix a warning.
5799 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5801         * reflection.c (encode_locals): Add checks for user types.
5802         (method_encode_clauses): Ditto.
5803         (method_encode_code): Ditto.
5804         (mono_image_create_token): Ditto.
5806         * object-internals.h: Change the type of more fields from MonoReflectionType*
5807         to MonoObject*.
5809 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
5811         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
5812         the a thread does not suspend within 100ms.
5814         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
5815         in addition to StopRequested as well.
5817         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
5819         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
5820         search the method_hash before inserting a new entry, to avoid crashes when
5821         the same method is inserted multiple times, causing the old 
5822         MonoDebugMethodInfo structure to be freed by the value dtor function.
5824 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5826         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
5827         SO_EXLUSIVEADDRUSE where available.
5829 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5831         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
5832         runtime invoke wrappers, this time it is string ctor wrappers, which
5833         pass a dummy string as 'this' instead of their obj argument. Fixes
5834         #478473.
5836 2009-02-21  Jb Evain  <jbevain@novell.com>
5838         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5839         only get create_culture once.
5841 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5843         * reflection.c (mono_reflection_setup_internal_class): Move the user type
5844         check before the locking.
5845         
5846         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
5847         (mono_reflection_create_runtime_class): Ditto.
5848         (mono_reflection_sighelper_get_signature_local): Ditto.
5849         (mono_reflection_sighelper_get_signature_field): Ditto.
5851         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
5852         is a System.MonoType object or similar.
5853         (monotype_cast): New helper function to cast a MonoObject to a 
5854         MonoReflectionType object.
5856         * object-internals.h: Change MonoReflectionType* members in structures to
5857         MonoObject* members to force the usage of the monotype_cast () function.
5859         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
5860         structures/arrays. This causes us to assert instead of crashing when 
5861         instances of user defined subclasses of System.Type are encountered.
5863 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5865         * cil-coff.h:
5866         * icall-def.h:
5867         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
5868         win32 resource loaded from a PE file.
5870         * image.c: fix mono_image_lookup_resource.
5872 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5874         * icall-def.h:
5875         * threads-types.h:
5876         * threads.c: added internal call for WaitHandle.SignalAndWait.
5878 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5880         * cominterop.c : Adding cominterop_type_from_handle and 
5881           registering it as an icall.  Replacing all references
5882           to type_from_handle.
5884         Code is contributed under MIT/X11 license.
5886 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5888         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5890         * appdomain.c: Call the tracer init function.
5892         * domain-internals.h: Enable the tracer for the domain locks.
5894         * image.c: Enable the tracer for image locks.
5896         * loader.c: Enable the trace for the loader lock.
5898         * lock-tracer.h:
5899         * lock-tracer.c: Initial implementation of the lock trace utility.
5900         The tracer requires a compile time define to be enabled and a env var
5901         to be enabled at runtime.
5903 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5905         * domain.c (mono_domain_code_foreach): Improve documentation.
5907 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5909         * appdomain.c:
5910         * generic-sharing.c:
5911         * object.c:
5912         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5913         comes first.
5915 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5917         * domain.c: Add mono_domain_code_* functions that perform locking
5918         around the domain codeman.
5920         * domain-internals.h: Export those functions.
5922         * object.c: Use new functions instead of acquiring the domain lock.
5924 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5926         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5927         delegate. Fixes #477396.
5929 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5931         * reflection.c (create_custom_attr): Get rid of alloca.
5933 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5935         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5936           Adding exception handling for all CCW calls.
5938         Code is contributed under MIT/X11 license.
5940 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5942         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5944         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5945         native->managed marshalling code. Fixes #476247.
5947 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5949         * class.c (mono_class_get_vtable_entry): Move the addition of
5950         static rgctx invoke wrappers for vtable methods here, this simplifies
5951         a lot of code and causes fewer rgctx wrappers to be created.
5953         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5954         name of the statistics to begin with an uppercase.
5956 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5958         * reflection.c: Revert previous change as it breaks the build.
5959         
5960 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5962         * verify.c: Properly handle SZARRAY element type.
5964         Fixes #474271.
5966 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5968         * reflection.c (mono_image_create_method_token): Correctly encode
5969         MethodDef MemberRefParent token.
5971         Fixes #472845.
5973 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5975         * image.c (mono_image_close): Delete the critical section before
5976         freeing the memory holding it.
5978 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5980         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5981         Fixes #476257.
5983 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5985         * pedump.c (main): Call mono_marshal_init so pedump
5986         doesn't crash.
5988 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5990         * loader.c (method_from_memberref): Properly fix #474271 and
5991         don't break the runtime bad.
5993 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5995         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5996         (mono_domain_alloc0): Ditto.
5998 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6000         * loader.c (method_from_memberref): Don't abort if the array
6001         method is not found. A regular loader failure is more informative
6002         and correct.
6004         Fixes #474271.
6006 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6008         *loader.c: Guard MonoImage::method_cache/methodref_cache
6009         using the image lock instead of the loader lock.
6011         * metadata.h: Add comments about which fields are protected by
6012         the image lock.
6014 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6016         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
6018         * generic-sharing.c (mono_method_construct_object_context): Remove the
6019         wrapper_type == NONE assert, it is not needed.
6021 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
6023         * reflection.c (clear_cached_object): New helper function.
6024         (mono_method_clear_object): New function to clear the cached reflection
6025         objects for a dynamic method.
6027         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
6028         Partly fixes # 463323.
6029         
6030 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6032         * class.c:
6033         * loader.c:
6034         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
6036 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6038         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
6039         take the image lock instead of the loader lock.
6041         * metadata-internals.h: Export new functions.
6043 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6045         * domain.c (app_config_parse): Remove another use of stat that is
6046         not necessary as g_file_get_contents already does the presence
6047         check. 
6049 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6051         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
6053         * marshal.c: Move the bstr handling code to cominterop.c.
6055         * marshal.c: Remove some COM interop code missed previously.
6057 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6059         More Paolo patches from the Wii port:
6060         
6061         * security.c: Remove ves_icall_System_Environment_get_UserName
6062         from here.
6064         * icall.c: And put ves_icall_System_Environment_get_UserName
6065         here. 
6067         * appdomain.c (mono_set_private_bin_path_from_config): Remove
6068         redundant call to stat that was only used to test for the file
6069         existence.   Patch from Paolo.
6071         * gc.c (run_finalize): If COM is disabled, do not link in
6072         mono_marshal_free_ccw.
6074         * generic-sharing.c: Use alloca.h here as well.
6076 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
6078         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
6080 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6082         * cominterop.c cominterop.h: New files.
6084         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
6085         function/typedefs which are needed by cominterop.c global.
6087 2009-02-12  Mark Probst  <mark.probst@gmail.com>
6089         * generic-sharing.c: Don't take the loader lock to guard image
6090         mempool allocs.
6092 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6094         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
6095         called without the loader lock which is required to guard MonoImage:tokens.
6097 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6099         * class.c:
6100         * metadata.c:
6101         * method-builder.c:
6102         * marshal.c:
6103         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
6105 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6107         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6108         Rework the code to use regular mono_image_alloc/0.
6110         * loader.c: Rework the code to use regular mono_image_alloc/0.
6112         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6114 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
6116         * object-internals.h : Fixing a typo in the 
6117           MonoReflectionComVisibleAttribute struct.
6119         * marshal.c (cominterop_com_visible): Check the implemented 
6120           interfaces for ComImport.
6122         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
6123           assume that bools should be treated as VARIANTBOOLs.
6125         * marshal.c (emit_marshal_boolean): Adding cases for 
6126           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
6128         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
6129           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
6131         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
6132           should be treated as VARIANTBOOLs.    
6134         Code is contributed under MIT/X11 license.
6136 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6138         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
6139         allocation with the image lock.
6141 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6143         This patch is the last of a series to remove explicit reference of MonoImage::mempool
6144         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
6146         * object.c: Add mono_string_to_utf8_image.
6148         * object-internals.h: Export mono_string_to_utf8_image.
6150         * reflection.c: Rework all explicit references to the the image mempool to go thought
6151         the mono_image_alloc set of functions.
6153 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6155         This patch is the third of a series to remove explicit reference of MonoImage::mempool
6156         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
6157         and generics-sharing.c.
6159         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
6160         as first argument. Note that this function remains broken as it doesn't perform locking around the
6161         mempool allocation.
6163         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
6165         * image.c: Add g_slist_append_image.
6167         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
6168         the supplied image for allocation. Move code into mono_metadata_field_info_full.
6170         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
6171         Fix all related code to do the same.
6173         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
6175         * metadata-internals.h: Fix the signatures.
6177 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6179         This patch is the second of a series to remove explicit reference of MonoImage::mempool
6180         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
6181         and similar to work using MonoImage.
6183         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
6184         MonoMemPool.
6186         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
6188         * class.c (mono_metadata_signature_deep_dup): Same.
6190         * class.c (inflate_generic_type): Same.
6192         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
6194         * metadata.c (mono_metadata_signature_dup_full): Same.
6196         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
6197         mono_metadata_signature_dup_full.
6199         * metadata.c (mono_metadata_type_dup): Same.
6201         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
6203         * reflection.c: Same.
6205         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
6207         * metadata-internals.h: Fix the signatures.
6209         * class-internals.h: Same.
6211 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6213         This patch is the first of a series to remove explicit reference of MonoImage::mempool
6214         and use mono_image_alloc set of functions instead. 
6216         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
6217         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
6218         of a MonoMemPool.
6220         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
6222         * class.c (g_list_prepend_mempool): Removed.
6224         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
6226         * image.c: Add g_list_prepend_image.
6228         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
6230         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
6233 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6235         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
6236         mono_image_unlock.
6238         * image.c (mono_image_init): Init the lock field.
6240         * image.c (mono_image_init): Cleanup the lock field.
6242         * image.c: Add mono_image_(un)lock functions.
6244 2009-02-11  Mark Probst  <mark.probst@gmail.com>
6246         * class.c, class-internals.h: mono_method_get_context_general()
6247         combines the functionality of mono_method_get_context() and
6248         mini_method_get_context().
6250         * generic-sharing.c, domain-internals.h:
6251         mono_method_construct_object_context() and
6252         mono_domain_lookup_shared_generic() moved from mini.
6254         * icall.c (ves_icall_InternalInvoke): Handle the case where the
6255         method doesn't have the correct instantiation because it's shared
6256         generic code.  Fixes #473999.
6258 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
6260         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
6262         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
6263         
6264 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6266         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
6268         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
6270         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
6271         and recheck the cache for dups after it.
6273         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
6275         Fixes one of the deadlocks found in #473150.
6277 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
6279         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
6280           For Win32, add additional break conditions for accept.
6282         Code is contributed under MIT/X11 license.
6284 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6286         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
6287         lazily initialize the native wrapper cache.
6288         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
6289         cache, since they are different from the normal wrappers.
6291         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
6293         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
6294         AOT compiled native wrappers.
6296 2009-02-09  Geoff Norton  <gnorton@novell.com>
6298         * appdomain.h:
6299         * security-core-clr.c: Allow enabling core-clr from the embedding
6300         API.
6302 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6304         * socket-io.c: when requesting all the local ips, if there are no
6305         interfaces up and running, MS returns 127.0.0.1.
6307 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6309         * mono-perfcounters-def.h: processor time is an inverse time.
6310         Fixes bug #468625.
6312 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6314         * socket-io.c: an empty host name returns the list of local IPs.
6315         Fixes bug #386637 part 1/2.
6317 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
6319         * verify.c (mono_class_interface_implements_interface): Call
6320         mono_class_setup_interfaces ().
6321         (merge_stacks): Ditto.
6323 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6325         * class.c (mono_class_setup_interfaces): New function to lazily initalize
6326         klass->interfaces.
6327         (mono_generic_class_get_class): Don't initalize klass->interfaces.
6328         (mono_generic_class_get_class): Ditto.
6330 2009-02-06  U-QUACK\miguel  <miguel@quack>
6332         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
6333         they live in security.c
6335         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
6336         another bit from Paolo's code.
6338 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6340         * object.c (build_imt_slots): Add a small optimization to avoid inflating
6341         methods which will be discarded by add_imt_builder_entry ().
6343         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
6344         need to be boxed.
6346         * loader.c: Add a statistics for the size of the memberref signature cache.
6347         
6348         * loader.c (find_cached_memberref_sig): New helper function.
6349         (cache_memberref_sig): Ditto.
6351         * loader.c: Cache the result of parsing memberref signatures, since otherwise
6352         they will be parsed again for every generic instantiation, leading to unbounded
6353         memory growth.
6355 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6357         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
6358         parameters of generic methods.
6360         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
6361         after the original method is copied to the inflated method.
6362         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
6364         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
6365         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
6367         * class.c metadata.c: Update after the changes above.
6369 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6371         * metadata-verify.c: Simplified error handling and added
6372         section table validation.
6374 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6376         * class-internals.h (MonoClassExt): New structure containing rarely used
6377         fields of MonoClass.
6378         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
6379         through a new 'ext' field.
6381         * class.c (mono_class_alloc_ext): New helper function to allocate 
6382         class->ext.
6384         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
6386 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6388         * object.c (mono_object_get_virtual_method): Properly inflate
6389         generic methods.  Fixes #472692.
6391 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6393         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
6394         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
6395         for the parent type, the created type must be ready to be used on a generic
6396         instantiation.
6397         We fill this_arg/byval_arg if the parent is a generic instance to make sure
6398         we won't have duplicated entries in generic_inst_cache.
6400         Fixes #469553.
6402 2009-02-05  Miguel De Icaza  <miguel@novell.com>
6404         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
6405         replace with plain BSD per the comments on the bug MONO77637.
6407 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6409         * class.c (mono_class_get_generic_class): New accessor function.
6410         (mono_class_get_generic_container): Ditto.
6412         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
6413         fields, similar to the ones in MonoMethod.
6415         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
6416         (mono_class_create_from_typedef): Set klass->is_generic if needed.
6418         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
6419         
6420         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
6421         the same information as element_class->byval_arg.
6423         * class.c reflection.c: Remove references to class->byval_arg.
6425         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
6426         klass->enum_basetype directly.
6428         * verify.c metadata.c object.c icall.c reflection.c: Use 
6429         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
6430         directly.
6432 2009-02-04  Miguel de Icaza  <miguel@novell.com>
6434         * icall-def.h: Remove internal calls for sockets when
6435         DISABLE_SOCKET is defined, file system writing features when the
6436         OS only support reading and not writing data and Policy support if
6437         the Policy is disabled.
6438         
6439         * image.c (do_mono_image_open): Apply Paolo's patches for using
6440         mono_file_map_ APIs here.
6442         * assembly.c: Add support for platforms to avoid prefix
6443         auto-detection. 
6445 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6447         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
6448         warning.
6450         * class.c (mono_class_inflate_generic_class): New helper function.
6452         * class.c: Use mono_class_inflate_generic_class in a few places. Add
6453         statistics for inflated methods/classes.
6455         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
6457         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
6458         the call is made from Delegate.CreateDelegate () for the invoke method of
6459         a delegate.
6461         * loader.c: Add a statistics for the memory occupied by inflated signatures.
6463         * metadata.c (mono_metadata_signature_size): New helper function.
6465         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
6466         generic instances.
6468         * metadata.c (inflated_method_in_image): Avoid calling 
6469         mono_method_signature () if the method does not already have a signature.
6471 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6473         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
6474         valuetype is compatible with target type, check by inheritance as a
6475         VT is not really compatible with System.ValueType, for example.
6477         * verify.c (do_invoke_method): Improve error message.
6479         * verify.c (do_box_value): If boxing a nullable, use the type argument
6480         on stack instead.
6482         * verify.c (do_newobj): Improve error message.  
6484         Fixes #469549.
6486 2009-02-03  Miguel de Icaza  <miguel@novell.com>
6488         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
6490 2009-02-03  Mark Probst  <mark.probst@gmail.com>
6492         * generic-sharing.c: Don't hold domain lock when calling
6493         instantiate_other_info().  Fixes #471958.
6495         * domain-internals.h, loader.c: Describe locking policy of domain
6496         lock vs loader lock.
6498 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6500         * verify.c (mono_delegate_signature_equal): Make it possible to check
6501         first-arg-bound delegates to static method.
6503         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
6504         static methods with the first arg bound.
6506         Fixes #469529.
6508 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6510         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
6511         errors.
6513         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
6514         under strict mode. Any type, when boxed can be seen as a reference type.
6516         Fixes #469528.
6518 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6520         * object.h: The lower bound of an array is a signed integer value.
6521         Introduce mono_array_lower_bound_t typedef. It should be used instead of
6522         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
6524         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
6525         calculate the upper bound.
6526         
6527         Fixes #471252.
6529 2009-02-02  Miguel de Icaza  <miguel@novell.com>
6531         From Paolo's work, refactored, cleared up:
6532         
6533         * threadpool.c, icall.c: ifdef code that requires a working socket
6534         stack.
6536         * metadata.c (mono_metadata_field_info): Do not attempt to return
6537         a value from a function declared as void.
6539         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
6540         from the console stack.
6542         * assembly.c: use strrchr instead of rindex.
6544         * class.c, object.c, marshal.c, icall.c, reflection.c: include
6545         alloca.h on systems that have it.
6547         * environment.c: Avoid code that uses stuff from
6548         HAVE_SYS_UTSNAME_H
6549         
6550         * appdomain.c: Include sys/time.h.
6552         * console-io.c: include sys/ioctl.h if it is available.
6554 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
6556         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
6558         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
6559         the method builder.
6561         * marshal.c: Set mb->skip_visibility instead of setting it on the method
6562         after it was created and cached, as the later is not thread safe.
6563         
6564 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6566         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
6567         called while the debugging module is not initialized. Fixes #471669.
6569 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
6571         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
6573         Fixes #471255.
6575 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6577         * generic-sharing.c (lookup_or_register_other_info): Make sure the
6578         loader lock is not taken while the templates lock is held.  Fixes
6579         #471089.
6581 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6583         * metadata.c (type_in_image): Added a check to fix a monodis
6584         crash.
6586 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6588         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
6589         nullable arguments.
6591         * object.c (mono_runtime_invoke_array): Ditto.
6592         
6593         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
6594         freeing wrappers of dynamic methods.
6596         * loader.c (mono_free_method): Call it. Fixes #463323.
6597         
6598         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
6599         methods taking vtype/byref arguments, to fix yet another bug caused by
6600         the sharing of runtime invoke wrappers. Partly fixes #471259.
6602 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
6604         * debug-mono-symfile.c (check_line): Return NULL instead of returning
6605         <first file in file table>:1 when the IL offset does not have an associated
6606         line number.
6608 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
6610         * mono-debug.c (mono_debug_lookup_locals): New function to return local
6611         variable info for a method.
6613         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
6614         
6615 2009-01-30  Jb Evain  <jbevain@novell.com>
6617         * pedump.c: reuse code from monodis to make sure pedump honors
6618         MONO_PATH, which is needed to verify net_2_1 assemblies.
6620 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6622         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
6623         there is no line number info.
6625 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
6627         Avoid some MonoType allocations
6628         * reflection.c (mono_reflection_initialize_generic_parameter):
6629         Reuse MonoType from param->pklass rather than allocating one.
6630         (mono_dynamic_image_free): Update to changes.
6632 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6634         Rearrange some code to improve consistency
6635         * reflection.c (mono_reflection_setup_generic_class): Move body ...
6636         (mono_reflection_initialize_generic_parameter): ... here.
6638 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
6640         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
6641         with type constraints as an experiment.
6643         * boehm-gc.c (on_gc_notification): Update mono_stats.
6645 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6647         Avoid some allocations
6648         * class-internals.h (_MonoGenericInst::type_argv): Convert from
6649         pointer to tail array to avoid extra allocation.
6650         * metadata.c (free_generic_inst): Update to changes.
6651         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
6652         on-stack struct.
6654 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
6656         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
6657         return TRUE if the two type objects are the same.
6659 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6661         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
6662         (mono_class_native_size): Use klass->marshal_info->min_align instead of
6663         klass->min_align, since klass->min_align contains the managed alignment,
6664         while the native alignment can be different, like for longs on x86.
6665         Fixes #469135.
6667         * class-internals.h (MonoMarshalType): Add a min_align field.
6669 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
6671         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
6672         the 1.0 format.
6674 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6676         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
6677         some comments about the usage of the used_regs field.
6679         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
6680         Fixes #469217.
6682 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
6684         * appdomain.c: return NULL instead of throwing FileNotFoundException
6685         when LoadAssembly() fails.
6687 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6689         * metadata.c (mono_metadata_generic_param_equal): Only compare the
6690         image if the owner is NULL.  Fixes the AOT failures.
6692 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6694         * metadata.c (mono_metadata_load_generic_params): Initialize the 
6695         MonoGenericParam structure using memset so the image field is initialized
6696         as well.
6698 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6700         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
6701         a plain store.
6703 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6705         * class.c (mono_class_setup_vtable_general): In the generic instance
6706         optimization, set method->slot for abstract virtual methods. Fixes part of
6707         #467834.
6709 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6711         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
6712         which signals that the unloading has started but all appdomain services must
6713         remain operational.
6715         * appdomain.c (mono_domain_unload): The initial state for unloading now
6716         is unloading_start and we switch to unloading after the managed call to
6717         AppDomain::DomainUnload has finished.
6719         The new unloading state has to be created because managed code in the
6720         DomainUnload event can depend on things like the threadpool still working.
6721         The domain must remain fully functional while the event executes.
6723         This shown as an issue due to Process::WaitForExit, which waits for
6724         async reads of stdout and stderr to complete. Since those are processed
6725         in the threadpool the code deadlocks because the DomainUnload callback 
6726         waits for the async read finished event, which should have been set by a
6727         threadpool job but has been discarded due to the domain been in unload
6728         state.
6730 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6732         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
6733         image must match.
6735 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6737         * reflection.c (resolve_object): For fields, inflate the class and
6738         then get the field in the inflated class.
6740 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6742         * object-internals.h (struct _MonoException): Added a comment
6743         explaining the new use of trace_ips.
6745 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6747         * generic-sharing.c (inflate_other_data): Inflate array methods
6748         correctly.
6750         * loader.c, class-internals.h: Rename search_in_array_class() to
6751         mono_method_search_in_array_class() and make it non-static.
6753 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6755         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
6756         Hopefully fixes #458168.
6758 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6760         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
6761         as it is performed elsewhere.
6763         Code is contributed under MIT/X11 license
6765 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6767         * mono-perfcounters-def.h: Add counters for asp.net requests total and
6768         requests queued.
6769         * object.c (mono_raise_exception): Increment the exceptions total
6770         counter when an exception is thrown.
6771         * class-internals.h: Add a location for storing the total number of
6772         asp.net requests served.
6773         * mono-perfcounters.c: Implement update support for asp.net counters
6774         from the class libraries. Implement read support for asp.net counters
6775         and exceptions total counter.
6777 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6779         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
6780         accessing klass->methods. Fixes #467385.
6782 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6784         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
6785         for byval arguments without an [Out] attribute. Fixes #467212.
6787         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
6788         Fix compilation under android.
6789         
6790         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
6791         processed, scan them directly after they are copied, to achieve better locality
6792         and cache usage.
6794         * socket-io.c: Applied patch from Koushik Dutta
6795         (koush@koushikdutta.com). Disable IPV6 when running under android.
6797 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6799         * icall.c (ves_icall_InternalExecute): Add write barriers.
6801         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
6802         the GC code.
6804         * sgen-gc.c: Implement write barriers in IL code.
6806 2009-01-17  Geoff Norton  <gnorton@novell.com>
6808         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
6810 2009-01-17  Geoff Norton  <gnorton@novell.com>
6812         * image.c: When unloading the image->references table, there can be gaps
6813         in it.  Ensure that we iterate every entry to avoid leaking assembly references
6814         when unloading an appdomain.
6816 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
6818         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
6819         speed up ptr-in-nursery checks.
6821         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
6822         threads_lock () to prevent deadlocks.
6824         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
6825         does not need to be scanned during minor collections, since writes to it
6826         must use write barriers.
6828 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
6830         * metadata-verify.c: Add pe nt header verification.
6831         
6832 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6834         * gc.c: Fix a few warnings when using SGEN.
6836 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
6838         * metadata-verify.c: Add pe optional header verification.
6840 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6842         * sgen-gc.c: Add support for user defined marker functions, used by
6843         MonoGHashTable to avoid registering a GC root for every hash node.
6845 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6847         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
6848         non-pinned roots into separate hashes to avoid having to traverse them
6849         in functions which are only interested in one kind.
6851 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6853         * metadata-verify.c: Add pe header machine field verification.
6854         
6855 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6857         * metadata-verify.c: Add pe header size verification.
6859 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6861         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
6862         using the GC, they don't contain references.
6864         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
6866 2009-01-13  Geoff Norton  <gnorton@novell.com>
6868         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
6869         AppDomains created on the native side can be cleaned up on the native side.
6871 2009-01-13  Geoff Norton  <gnorton@novell.com>
6873         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6874         as well as the managed api.
6876 2009-01-13  Geoff Norton  <gnorton@novell.com>
6878         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6879         with a MonoAppDomain initialized against it.
6881 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6883         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6884         
6885         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6887         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6888         into the wrapper caches. Fixes #465700.
6890         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6891         method builder.
6892         (mono_mb_create_method): Set the clauses from the method builder.
6894 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6896         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6897         Patch from Makoto Kishimoto.
6899 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6901         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6902         encoding them as ROOT_DESC_COMPLEX.
6903         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6905 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6907         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6908         no longer point to the nursery.
6910         * sgen-gc.c: Add a few comments/FIXMEs.
6911         
6912         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6914         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6915         initialization of the various _method variables thread safe. Fixes
6916         #465377.
6918 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6920         * domain.c, domain-internals.h: Remove the shared_generics_hash
6921         and its lookup functions.
6923 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6925         * socket-io.c:  Fixing the MSVC build. 
6927         Code is contributed under MIT/X11 license.
6929 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6931         * metadata-verify.c: Add pe header watermark verification.
6933 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6935         * metadata-verify.c: Add lfanew verification.
6937 2009-01-12  Jb Evain  <jbevain@novell.com>
6939         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6940         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6942 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6944         * socket-io.c: Fix the build.
6946         * environment.c: Fix an #ifdef.
6948 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6950         * threadpool.c (async_invoke_thread): Handle the wait function returning
6951         WAIT_IO_COMPLETION as well.
6952         (async_invoke_io_thread): Ditto.
6954 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6956         * threads.c: Fixing the Windows build.
6958         Code is contributed under MIT/X11 license.
6960 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6962         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6963         interrupt a wait.
6964         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6965         the thread to wait again.
6967 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6969         * metadata-verify.c: Initial skeleton of the metadata verifier.
6971         * pedump.c: Add support for the metadata verifier.
6973         * verify-internal.h: Export the whole assembly metadata verifier function.
6975 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6977         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6979 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6981         * Makefile.am: Upgrade dtrace-prelink.sh location.
6983 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6985         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6986         well. Otherwise the shutdown deadlock that happens on unix will can happen
6987         as well.
6988         If the main thread code finishes too fast it's possible that the finalizer
6989         thread won't have executed yet, won't record itself as the finalizer thread
6990         and the shutdown sequence will wait on it forever.
6992 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6994         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6995         with MSVC.
6997 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6999         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
7000         Robert Jordan for pointing this out.
7002 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
7004         * icall.c
7005         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
7006         ves_icall_System_IO_DriveInfo_GetDriveType.
7008 2009-01-07  Miguel de Icaza  <miguel@novell.com>
7010         * icall.c: Wrap calls to mono_strtod in CriticalSection
7011         invocations when using eglib, to work around #464316.
7013 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7015         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
7016         return value of GetCurrentDirectory to never access unitialized memory.
7018 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7020         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
7021         return value of GetCurrentDirectory and expand the buffer if needed.
7023         Fixes #459094.
7025 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
7027         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
7028           Adding a call to mono_init_com_types.
7030         Code is contributed under MIT/X11 license.
7032 2009-01-07  Geoff Norton  <gnorton@novell.com>
7034         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
7035         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
7036         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
7037         be the value of the ip buffer.
7039 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7041         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
7042         interfaces_packed here.
7044         Fixes part of #463294.
7046 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7048         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
7050         Fixes part of #463294.
7052 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7054         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
7055         is a boxed complex as well.
7057         Fixes part of #463294.
7059 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7061         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
7062         control if a methodspec should be created for the generic method definition from external assemblies.
7063         Caching of methodspec is done using the handleref hash table.
7065         Fixes #462592.
7067 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
7069         * loader.c (find_method): When searching the interfaces of a class
7070         check the transitive closure of implemented interfaces.
7072         Fixes #463303.
7074 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7076         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
7077         
7078 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7080         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
7081         interfaces calculation to fill_valuetype_array_derived_types.
7083         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
7084         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
7085         for example.
7087         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
7088         interfaces for valuetypes if needed.    
7090         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
7091         for their basetype as well. Types are array expanded if rank is > 0.
7093         Fixes #400716.
7095 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
7097         * socket-io.h : Changing the signature of
7098           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
7099           the blocking state.
7101         * icall-def.h :  Changing the signature of
7102           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
7104         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
7105           For Windows only.  Avoid blocking when calling accept by
7106           querying for a connection via select.  The loop also queries
7107           the thread state every 1000 micro seconds for the thread
7108           stop state.  This will avoid the process hanging on shutdown
7109           when using a TcpChannel that is never connected to.
7111         Code is contributed under MIT/X11 license.
7113 2008-12-30  Marek Safar  <marek.safar@gmail.com>
7115         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
7117 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7119         * class.c (get_implicit_generic_array_interfaces): Extract common
7120         code to a helper function making it a lot easier on the eyes.
7122 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7124         * class.c (get_implicit_generic_array_interfaces): If the internal
7125         enumerator is an interface inflate System.Object instead of itself.
7127         Fixes #461261.
7129 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
7131         * object.c (mono_runtime_invoke_array): Don't assert with
7132         byref nullable types.
7134         * marshal.c (mono_marshal_get_runtime_invoke): To handle
7135         byref nullables we unbox the object and store it on the
7136         stack. 
7137         We can't use the boxed object since it is the T of Nullable<T>
7138         and the boxed representation of a nullable it's underlying type
7139         or null.
7140         We could cheat and create a boxed nullable and use the same
7141         machinery of other byref VTs but this feels like a hack and
7142         using the stack has the bonus of reducing heap pressure.
7144         Fixes #461941.
7146 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
7148         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
7149         return value.
7151         Fixes #461867.
7153 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
7155         * icall-def.h : Adding an internal call definition for 
7156           System.Environment.internalBroadcastSettingChange.
7158         * icall.c : Adding a Windows only implementation to broadcast a 
7159           WM_SETTINGCHANGE when an environment variable has changed.
7161         Code is contributed under MIT/X11 license.
7163 2008-12-19  Mark Probst  <mark.probst@gmail.com>
7165         * class.c, class-internals.h: Made
7166         mono_class_has_parent_and_ignore_generics() non-static.
7168 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
7170         * image.c: deal with the mmap failing when loading an image.
7172 2008-12-17  Geoff Norton  <gnorton@novell.com>
7174         * threadpool.c: Ensure that the io_queue_lock is initialized
7175         in all circumstances, as we always attempt to cleanup against it.
7177 2008-12-17  Miguel de Icaza  <miguel@novell.com>
7179         * icall.c (ves_icall_System_Environment_get_Platform): For
7180         compatibility reasons for existing client code we will keep
7181         returning 4 for a while.   
7183         For how long will depend on the documentation being updated, and
7184         for us to give client code a chance to be updated.
7186         This reverts the original decison on #433108 since we did not
7187         catch roughly 33 instances of the broken code in our own source
7188         code base, we did not catch failures on the buildbots, and QA did
7189         not bring this as a problem.
7191         Only today I found some customer's code breaking due to our own
7192         class libraries not being fully updated and tracked it down to
7193         this change.  I am reverting it because if we could not even get
7194         our story straight in our own code base, how can we hope that our
7195         end user code be fixed?
7197         As of this morning, our Wiki page that documents how to detect
7198         Unix had not been fixed.    
7200 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
7202         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
7204         * class.c (mono_class_get_fields): Handle loading errors.
7206 2008-12-12 Mark Mason <mmason@upwardaccess.com>
7208         * 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.
7209         
7210 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7212         * mono-perfcounters.c: avoid warning.
7214 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7216         * reflection.c (ensure_runtime_vtable): Work on generic instances and
7217         make sure all interfaces have MonoClass::interface_id set.
7219         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
7220         method table is property set.
7222 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7224         * class.c: New function mono_class_setup_interface_id that setup
7225         MonoClass::interface_id if needed.
7227         * class-internals.h: Export new function.
7229 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7231         * class.c: Add code to sanity check the vtable after setup_vtable_general
7232         has done it's work.
7234 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
7236         * icall.c: make Assembly.GetExecutingAssembly work properly when
7237         reflection is used to invoke the method.
7238         Bug #321781 fixed.
7240 2008-12-11  Mark Probst  <mark.probst@gmail.com>
7242         * metadata/generic-sharing.c: Look for constraints in all type
7243         arguments, not just the first one.
7245 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7247         * appdomain.c: return the correct CodeBase for an Assembly instance
7248         that was loaded from the shadow-copy directories.
7249         Bug #458190 fixed.
7251 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
7253         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
7255         * sgen-gc.c (check_object): New debugging helper function.
7257         * object.c: Fix calls to mono_value_copy_array ().
7259 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7261         * class.c (mono_class_setup_fields): If working on an inflated class
7262         first check if the generic definition did init with success.
7264         Fixes #445361.
7266 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7268         pedump.c (main): Fix a warning.
7270 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
7272         * object-internals.h : Adding a definition for 
7273           MonoReflectionComVisibleAttribute.
7275         * marshal.c (cominterop_com_visible) :  Method added to check the 
7276           ComVisible attribute of a class.
7278         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
7279           cominterop_raise_hr_exception added to consolidate common code 
7280           to raise hr exceptions.
7282         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
7283           if a managed class should support IDispatch.
7285         * marshal.c 
7286           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
7287           Added additional checks for managed object when getting 
7288           an IDispatch interface.
7290         Code is contributed under MIT/X11 license.
7292 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7294         pedump.c (main): Handle mono_get_method () returning NULL. 
7296 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7298         * marshal.h: Fix a warning.
7300 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
7302         * marshal.c : Adding cominterop_release_all_rcws to release all
7303           runtime callable wrappers held by the runtime.
7305         * marshal.h : Adding declaration for cominterop_release_all_rcws.
7306           
7307         Code is contributed under MIT/X11 license.
7309 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7311         * metadata.c (mono_image_alloc_lock): New helper function.
7312         (mono_image_alloc0_lock): Ditto.
7314         * metadata.c: Use the alloc_lock () helper functions for allocating
7315         memory from the image mempool.
7317 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
7319         * class.c (mono_class_from_generic_parameter): Document it's
7320         locking behavior. Fix double checked locking here, we stored in
7321         param->pklass a partially initialized MonoClass and no membar was used.
7323 2008-12-05  Marek Habersack  <mhabersack@novell.com>
7325         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
7326         (3) functions are present in the C library use them to do the
7327         job. If they are absent, make sure that the sum of int_part and
7328         dec_part is rounded before returning. This is necessary due to the
7329         division of dec_part by the power of 10 before the final addition
7330         is performed - if the result is not rounded in some cases it will
7331         yield invalid results.
7333 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
7335         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
7336         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
7337         instruction instead of a pointer constant.
7339 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
7341         * loader.c (mono_method_get_header): Do most of the work outside the
7342         loader lock, to avoid assembly load hook deadlocks.
7344         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
7345         (mono_metadata_parse_type_full): Ditto.
7347 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
7349         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
7350         Make the stack depth fixed. Ensure proper argument passing to the backtrace
7351         funtions. Finally, use a lock to produce well ordered output.
7353         The lock looks silly, as all calls to the corlib mempool should be guarded
7354         with the loader lock, but for some reason this fact doesn't help. 
7356         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
7358 2008-12-02  Mark Probst  <mark.probst@gmail.com>
7360         * socket-io.c: 64 bit big-endian fixes.
7362 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
7364         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
7365         targets that require strict compatibility between the types.
7367         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
7368         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
7369         Kill the strict argument and create a new one valuetype_must_be_boxed.
7371         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
7372         state that all valuetypes must be boxed.
7374         Fixes #448560.
7376 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
7378         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
7379         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
7381         Contributed under MIT/X11 license.
7383 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
7385         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
7386         the inflate_generic_type machinery should handle it.
7388         This avoids a crash when the field's flags is zero and it's type is
7389         a primitive.
7390         What happens is that mono_metadata_parse_type_full will see that opt_attrs
7391         is zero and will return one of the cached built-in primitive types. Since
7392         those types live in read-only memory, the code that copies it crashes.  
7394 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7396         * object.c: Don't put function descriptors into generalized IMT
7397         thunks.
7399 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7401         * class.c: Enable generic code sharing on PPC64.
7403 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7405         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
7406         from mini/mini.c.
7408         * generic-sharing.c: Allocate the method template slists from the
7409         image mempool so it doesn't leak.
7411 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
7413         * class.c (generic_array_methods): Release the linked list.
7415 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7417         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
7418         invocation to g_utf16_to_utf8().
7420 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7422         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
7423         arguments on big endian archs.
7425 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7427         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
7428         the type name (test added in corlib).
7430 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7432         * pedump.c: initialize perf. counters. Fixes a segv.
7434 2008-11-25  Martin Baulig  <martin@ximian.com>
7436         * mono-debug-debugger.c
7437         (mono_debugger_runtime_invoke): Return the exception object if an
7438         exception was thrown.  Visual Studio displays the exception object
7439         in the locals window.
7441 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7443         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
7444         ftnptr.
7446 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7448         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
7449         MONO_TYPE_U are sizeof (gpointer), too.
7451 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7453         * marshal.c (mono_type_native_stack_size): Fixed size and
7454         alignment for reference types.
7456 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7458         * class.c (mono_class_generic_sharing_enabled): Disable generic
7459         code sharing for PPC64.
7461 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
7463         * icall.c (mono_method_get_equivalent_method): Make sure
7464         method->klass->methods is inited before looping over it.
7466 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7468         * object.c: when calling ExecuteAssembly in a newly created domain,
7469         the configuration file and application base are already set up.
7470         Bug #446353 take 2 fixed.
7472 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
7474         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
7475         Fixes #444715. Fix a warning.
7477 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
7479         * appdomain.c: write the full path of the assembly to the .ini file
7480         created when "shadow-copying"
7481         Bug #446353 fixed.
7483 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
7485         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
7486         if signature==FALSE.
7488 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7490         * marshal.h : Fix the cygwin build.
7491            marshal.c:12442: undefined reference to `_IID_IMarshal'
7492           
7493         Code is contributed under MIT/X11 license.
7495 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7497         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
7498           free threaded marshaler when QueryInterface is called on a COM callable
7499           wrapper requesting the IMarshal interface.
7500           
7501         Code is contributed under MIT/X11 license.
7503 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
7505         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
7507         * reflection.c (mono_type_get_object): Special case the very common
7508         void type.
7510         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
7511         hold typeof(void).
7513 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
7515         * process.h : Adding method declaration for
7516           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7517           
7518         * process.c : Adding implementation for
7519           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7520           
7521         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
7522           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7524         Code is contributed under MIT/X11 license.
7526 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
7528         * appdomain.c (unload_thread_main): Clean up threadpool by
7529         calling mono_thread_pool_remove_domain_jobs.
7531         * domain-internals.h (struct _MonoDomain): Add new fields to
7532         help coordinate the cleanup of the threadpool.
7534         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
7535         that cleans up the threadpool of all jobs associated with an appdomain.
7536         It does that by cleaning up the queues and making sure all active
7537         threads are accounted.
7539         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
7540         unloaded or in the process of. Take this is such way that there is
7541         no race condition between another thread starting the unload and the
7542         current thread acknowledging it.
7544         * threadpool.c (async_invoke_thread): Same.
7546         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
7547         firing the new thread.
7549         * threadpool.c (start_tpthread): Same.
7551         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
7553         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
7555 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
7557         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7558         Add support for DuplicateHandle.
7559         
7560         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7561         Add support for DuplicateHandle.
7562         
7563         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7564         Add support for DuplicateHandle.
7566         Code is contributed under MIT/X11 license.
7568 2008-11-06  Mark Probst  <mark.probst@gmail.com>
7570         * class-internals.h: Make min_align into a whole byte.
7572         * class.c: Set min_align for SIMD types to 16.
7574 2008-11-05  Geoff Norton  <gnorton@novell.com>
7576         * attach.c: Default the attacher to enabled for all cases including
7577         embedded.
7579 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
7581         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
7582         change r117650.
7584 2008-11-04  Mark Probst  <mark.probst@gmail.com>
7586         * monitor.c, monitor.h: New function for querying offsets of
7587         members of MonoThreadsSync.
7589 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
7591         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
7592         to speed up this function and to avoid the boundless memory growth caused by
7593         the signature_dup () calls.
7595 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
7597         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
7598         wrapper.
7600         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
7601         by 1 bit.
7603         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
7605 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7607         * appdomain.c:
7608         * domain-internals.h: made mono_set_private_bin_path_from_config()
7609         "internal".
7610         * object.c: call the above function after setting the configuration
7611         file path for the root domain.
7612         Fixes bug #314478.
7614 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7616         * assembly.c: when the assembly is loaded from an absolute path, end
7617         basedir with a directory separator.
7618         Bug #440781 fixed.
7620 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7622         * monitor.c (mono_monitor_get_fast_enter_method): If
7623         CompareExchange is not available, don't create the fastpath
7624         instead of asserting.  (The method is missing in the 1.1 profile.)
7626 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7628         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
7630         * monitor.c, monitor.h: Code for generating Monitor.Enter and
7631         Monitor.Exit IL fastpaths.
7633 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7635         * class.c (mono_class_create_from_typedef): Added Vector2ul.
7637 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7639         * class.c (mono_class_create_from_typedef): Added Vector2l.
7641 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7643         * class.c (mono_class_create_from_typedef): Added Vector2d.
7645 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7647         * appdomain.c: translate \ into / for cache_path.
7648         * domain-internals.h: new mono_is_shadow_copy_enabled().
7649         * icall.c: (fill_reflection_assembly_name) do the same path
7650         manipulations that get_code_base does.
7651         (get_code_base) use mono_is_shadow_copy_enabled.
7653 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7655         * appdomain.c: shadow-copied assemblies go to CachePath +
7656         ApplicationName when both are set. DynamicBase has nothing to do with
7657         shadow copies.
7658         Bug #406877 fixed.
7660 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
7662         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
7663         STANDALONESIG table.
7665         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
7666         standalone signatures.
7668         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
7669         comparison code: instead of comparing the signatures using a custom
7670         equals function, transform them to a common signature and compare that. This
7671         works better with AOT.
7673 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
7675         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
7677         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
7678         call for generic instances.
7679         (mono_class_setup_properties): Call setup_properties () before accessing
7680         gklass->properties.
7682         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7683         over the virtual methods of a class using metadata if possible, avoiding the
7684         creation of MonoMethod's for non-virtual methods.
7685         
7686         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7687         get_virtual_methods () to iterate over the virtual methods of classes.
7689 2008-10-25  Martin Baulig  <martin@ximian.com>
7691         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
7693 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7695         * class.c (mono_class_create_from_typedef): Added Vector4i.
7697 2008-10-24  Mark Probst  <mark.probst@gmail.com>
7699         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
7700         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
7701         special-casing applies to eliminate the call completely.
7703 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7705         * class.c (mono_class_create_from_typedef): Added Vector8s.
7707 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7709         * class.c (mono_class_create_from_typedef): Added Vector16sb.
7711 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7713         * icall.c: get rid of annoying warning.
7715 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7717         * threadpool.c: in 1.x, if you change the background status of the
7718         threadpool thread, it's not reset.
7719         Remove unnecessary calls to SetState.
7721 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7723         * threadpool.c: asynchronously create a set of idle threads upon first
7724         use of the threadpool. SetMinThreads will now start the appropriate
7725         number of idle threads if they are not already running. The default is
7726         1 threadpool thread per CPU. Increased the maximum number of threads
7727         per CPU to 10.
7729 2008-10-22  Martin Baulig  <martin@ximian.com>
7731         Revert r116521 from Zoltan, it breaks the debugger:
7733         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7734         over the virtual methods of a class using metadata if possible, avoiding the
7735         creation of MonoMethod's for non-virtual methods.
7736         
7737         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7738         get_virtual_methods () to iterate over the virtual methods of classes.
7740 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7742         * threads.c: when creating a threadpool thread, set its state to
7743         'background'.
7744         * threadpool.c: reset the background state of a threadpool thread
7745         after finishing each work item
7746         Bug #437888 fixed.
7748 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7750         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
7751         
7752         * class.c (mono_class_setup_vtable_general): Add an optimized version for
7753         generic instances which works by inflating the methods in the container
7754         class's vtable.
7756         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
7757         variant which doesn't make a copy if no inflation was done.
7758         (mono_class_setup_fields): Use it.
7760         * metadata.c (mono_metadata_get_shared_type): New helper function to
7761         return a shared instance of a given MonoType.
7763         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
7764         a copy of most non-generic types.
7766 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
7768         * threadpool.c: remove one more GetSystemInfo () call.
7770 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7772         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
7773         use the code in mono-proclib.h to get processor information.
7775 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7777         * appdomain.c: fixed the logic that determines whether assemblies in a
7778         directory are "shadow-copied" or not. Bug #433483 fixed.
7780 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7782         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
7783         warning.
7785 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7787         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
7788         returning a vtype.
7790         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
7791         reflection.c: Use mono_field_get_name () for accessing a field's name.
7793         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
7794         class.c
7796         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
7797         field.
7799         * loader.c (find_method_in_class): Reenable the metadata optimization by
7800         not using it for generic instances.
7802         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
7803         data/def_type fields from MonoClassField into a separate structure.
7804         (struct MonoClassField): Remove data/def_type fields.
7805         (struct _MonoClass): Add a 'field_def_values' array to store the default
7806         values/RVA for fields.
7808         * class.c reflection.c: Update after the changes.
7809         
7810         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
7811         for accessing field->data.
7813         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
7815         * loader.c (find_method_in_class): Revert the last change for now as
7816         it breaks Mono.C5 unit tests.
7818         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
7819         'field_generic_types' and 'field_objects' which contain the information
7820         previously stored in MonoInflatedField.
7821         (MonoInflatedField): Delete.
7822         (struct _MonoClassField): Delete 'generic_info' field.
7824         * reflection.c: Store the information which was previously in 
7825         field->generic_info in MonoDynamicGenericClass instead.
7827         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
7828         MonoClassField changes.
7830 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
7832         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
7833         store the value inside the data array of the MonoMethodWrapper.
7834         This saves memory, is faster and fixes the lifetime issues (methods
7835         were never removed from the hash previously). May also fix bug#436996.
7837 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7839         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
7840         generic instances, compute the type from the generic definition instead of
7841         looking in field->generic_info.
7843         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
7844         for inflated fields, the only user was get_fieldref_token () which no
7845         longer needs it.
7847         * class.c (mono_class_init): Revert the last change as it seems to cause
7848         crashes.
7850         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
7851         bytes on 64 bit platforms.
7853         * object.c (mono_class_create_runtime_vtable): Fix a warning.
7854         
7855         * object.c (mono_class_create_runtime_vtable): Don't initalize
7856         field->data/field->def_type here, it is done lazily by 
7857         mono_class_get_field_default_value ().
7859         * icall.c (ves_icall_get_enum_info): Call 
7860         mono_class_get_field_default_value () instead of directly accessing
7861         field->data and field->def_type.
7863         * object.c (get_default_field_value): Ditto.
7865         * class.c (mono_field_get_data): Ditto.
7866         
7867         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
7868         call for generic instances.
7870         * loader.c (find_method_in_class): If klass != from_class, then inflate
7871         the method with the context of from_class, since the caller assumes this.
7873 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7875         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7876         for accessing method->slot.
7878 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7880         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7882 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7884         * class.c (mono_method_get_vtable_index): Use
7885         mono_method_get_vtable_slot () for accessing method->slot.
7887         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7888         accessing klass->methods.
7890         * class.c (mono_method_get_vtable_slot): New helper function.
7891         (mono_class_get_vtable_entry): Ditto.
7892         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7893         accessing method->slot.
7895         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7896         method to get_inflated_method ().
7898         * class.c (mono_class_get_inflated_method): New helper method to obtain
7899         a method of an inflated class without calling setup_methods ().
7900         (mono_class_get_cctor): Use get_inflated_method.
7902         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7903         
7904         * marshal.c image.c: Lazily create all the marshal caches.
7906         * image.c (mono_image_init): Move initialization of runtime_invoke
7907         caches to marshal.c.
7909         * marshal.c (get_cache): New helper function to lazily initialize a 
7910         wrapper cache.
7911         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7913         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7915 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7917         * loader.c: fixed check for interface type.
7919 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7921         * appdomain.c: check for NULL setup before it's referenced.
7924 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7926         * class.c: remove the unused old vtable setup code.
7928 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7930         * class.c: don't depend on interface order in
7931         setup_interface_offsets (bug #435777).
7932         * reflection.c: sort the InterfaceImpl table (patch from
7933         Jb Evain  <jbevain@novell.com>).
7935 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7937         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7938         the low level assemblies lock.
7940 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7942         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7943         object.c, reflection.c, socket-io.c, threads.c: introduced
7944         mono_framework_version () to return the major framewrok version,
7945         changed the code that was using more complex patterns to use it.
7946         Return the correct value for PlatformID for OSX.
7948 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7950         * icall-def.h, process.h, process.c: added an icall to get info about
7951         processes using mono-proclib.
7953 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7955         * mono-perfcounters.c: use the mono-proclib functions to
7956         access process information.
7958 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7960         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7961         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7962         reflection.c: remove rawbuffer usage: mmap support is more sanely
7963         provided by utils/mono-mmap.
7965 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7967         * gc.c: use posix semaphores when possible so that
7968         mono_gc_finalize_notify() is signal safe.
7970 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7972         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7973         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7974         be #ifdef-ed out, the linker will remove the rest.
7976         * marshal.c: Implement DISABLE_COM.
7978         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7980 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7982         * locales.c (string_invariant_compare_char): Optimization: do not
7983         call g_unichar_type unless we actually need the information.
7985 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7987         * object.c, class-internals.h: Also create remoting trampolines
7988         for generic methods.  Pass the domain to the remoting trampoline
7989         creation function, too.
7991 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7993         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7995 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7997         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7998         Vector4ui.
8000 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8002         * assembly.c:
8003         * locales.c: remove the use of g_strdown. Fixes bug #322313.
8005 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8007         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
8008         for the least possible amount of time (extending the fix in r113458).
8010 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8012         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
8014 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8016         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
8017         as possible simd intrinsic types.
8018         Optimized the test to check for the common prefix first.
8020 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
8022         * class.c: back out part of a broken optimization committed on
8023         May 23th (bug #433908).
8025 2008-10-09  Mark Probst  <mark.probst@gmail.com>
8027         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
8028         Win32.  Should fix #432388 for most cases until we have the new
8029         profiler on Win32.
8031 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
8033         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
8034         instead of using inst->id so the hash is stable for AOT.
8036 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8038         * appdomain.c:
8039         * icall.c: create a .ini file for shadow-copied assemblies that
8040         contains the location of the original assembly. Use this to return the
8041         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
8042         Also fix the number of '/' for windows when returning the CodeBase.
8043         Fixes bug #430920.
8045 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8047         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
8049         Code is contributed under MIT/X11 license.
8051 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8053         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
8054           if if the class vtable needs initialized.
8056         Code is contributed under MIT/X11 license.
8058 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8060         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
8061           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
8062           STRING->BSTR, and CLASS->INTERFACE.
8064         Code is contributed under MIT/X11 license.
8066 2008-10-07  Marek Habersack  <mhabersack@novell.com>
8068         * sysmath.h: changed the declaration of the
8069         ves_icall_System_Math_Round2 icall by adding an extra
8070         away_from_zero parameter.
8072         * sysmath.c (ves_icall_System_Math_Round2): added support for
8073         away from zero rounding. The icall now takes an extra boolean
8074         parameter to signal that away from zero operation is requested.
8076 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8078         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
8079         the delegate klass so it can work with full-aot.
8080         (mono_marshal_get_delegate_end_invoke): Ditto.
8081         (mono_marshal_get_delegate_invoke): Ditto.
8083 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
8085         * gc.c, attach.h, attach.c: remove a bad pattern:
8086         add_finalizer_callback () is not implemented correctly, it can't
8087         without adding more overhead to the finalizer loop and it's not
8088         even needed, since we know exactly what we need to call, so there is
8089         no need to do so through an expensive function pointer.
8091 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
8093         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
8094         for the no-gc case.
8095         * attach.c (mono_attach_init): Remove the #ifdef.
8097 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
8099         * attach.c (mono_attach_init): Don't use
8100         mono_gc_add_finalizer_thread_callback when compiling without GC.
8101         Fixes #432306.
8102         
8103         Code is contributed under MIT/X11 license.
8105 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
8107         * class.c (mono_class_create_from_typedef): Remove the 
8108         #ifndef DISABLE_SIMD stuff.
8110 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
8112         * class-internals.h (MonoClass): Added simd_type bit field.
8114         * class.c (mono_class_create_from_typedef): Check if type is a simd
8115         intrinsic.
8117 2008-10-03  Mark Probst  <mark.probst@gmail.com>
8119         * object.c (mono_method_add_generic_virtual_invocation): Only add
8120         instantiations to the thunk whose count is at least as large as
8121         the threshold.
8123 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
8125         * icall.c: changed the Type of the exception thrown when trying to
8126         invoke a constructor on an abstract class. Part of the fix for bug
8127         #324185.
8129 2008-10-02  Mark Probst  <mark.probst@gmail.com>
8131         * class.c, class-internals.h (mono_method_get_vtable_index): New
8132         function which returns the index into the vtable and properly
8133         handles inflated virtual generic methods.
8135 2008-10-01  Mark Probst  <mark.probst@gmail.com>
8137         * object.c, domain.c, object-internals.h, domain-internals.h:
8138         Generalize IMT thunk machinery to also handle thunks for virtual
8139         generic method invokes.  When a virtual generic method is invoked
8140         more than a number of times we insert it into the thunk so that it
8141         can be called without lookup in unmanaged code.
8143         * generic-sharing.c, class-internals.h: Fetching a
8144         MonoGenericInst* for a method from an (M)RGCTX.
8146 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
8148         * marshal.c (emit_marshal_string): Applied a variant of a patch by
8149         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
8150         marshalling. Fixes #431304.
8152 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
8154         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
8155           handle when ref is specified without In or Out.
8157         Code is contributed under MIT/X11 license.
8159 2008-09-30  Mark Probst  <mark.probst@gmail.com>
8161         * loader.c (mono_get_method_constrained): Don't expand method with
8162         the class's context, because it's already a method of that class.
8164 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
8166         * attach.c : should be correct build fix.
8168 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
8170         * attach.c: Fix the previous change.
8172 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
8174         * attach.c : quick w32 build fix.
8176 2008-09-27  Miguel de Icaza  <miguel@novell.com>
8178         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
8179         crashes MonoDevelop: #430455.
8181 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
8183         * domain-internals.h (struct _MonoDomain): Move most fields used only by
8184         the JIT do MonoJitDomainInfo in ../mini/mini.h.
8186         * domain.c: Remove initialization/cleanup of the removed fields.
8188 2008-09-27  Mark Probst  <mark.probst@gmail.com>
8190         * class.c (mono_class_generic_sharing_enabled): Enable generic
8191         code sharing for PPC.
8193 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
8195         * attach.c : Fixing the Windows builds.
8197         Code is contributed under MIT/X11 license.
8199 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
8201         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
8202         the default generic sharing mode to 'all'.
8204 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8206         * generic-sharing.c, class-internals.h: New function for checking
8207         whether a method needs a static RGCTX invoke wrapper.  A few
8208         funtions moved from mini/generic-sharing.c.
8210         * icall.c: New function used.
8212 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8214         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8215         Static RGCTX invoke wrapping applies to value type methods, too.
8217         * class.c (mono_class_setup_vtable_general): In generic-shared
8218         value types, wrap methods with a static RGCTX invoke wrapper.
8220 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
8222         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
8223         osx build.
8225 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
8227         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
8228         register a callback which is called when the finalizer thread is woken
8229         up.
8230         (finalizer_thread): Call the callback if it exists.
8232         * attach.h attach.c: New files, implementing the attach mechanism.
8234         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
8235         
8236         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
8237         by the previous change.
8239 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
8241         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
8242         loader.c, marshal.c, metadata-internals.h, metadata.c,
8243         method-builder.c, object.c, reflection.c: introduced specific functions
8244         to allocate from the domain and image mempools and cleaned up most of
8245         the code to use them (still missing a few in reflection.c).
8246         Keep the loader bytes counter updated.
8248 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
8250         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
8251         loader-related counters.
8253 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
8255         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
8256         added more MS-compatible counters.
8258 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
8260         * class.c (mono_class_setup_fields): Call setup_fields before accessing
8261         class->blittable. Fixes #428217.
8263 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
8265         * reflection.c (mono_image_get_field_on_inst_token): Call 
8266         field_encode_signature () since that handles custom modifiers too.
8267         Fixes #424663.
8269 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
8271         * reflection.c (add_custom_modifiers): New helper function to merge custom
8272         modifiers stored in objects to a MonoType.
8273         (fieldref_encode_signature): Encode custom modifiers.
8274         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
8275         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
8277 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
8279         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
8280         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
8281         64-bit IL only images because imports are not resolved for IL only images.
8282         Special thanks to Bill Holmes for finding this bug and testing the patch.
8283         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
8285         Contributed under MIT/X11 license.
8287 2008-09-19  Miguel de Icaza  <miguel@novell.com>
8289         * mono-config.c (dllmap_start): Add support for the bits keyword
8290         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
8292 2008-09-19  Mark Probst  <mark.probst@gmail.com>
8294         * reflection.c (inflate_mono_method): When the class the method is
8295         to be inflated for is itself not inflated, just return the method.
8297 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
8299         * mono-perfcounters.c: use more user friendly process instance names.
8301 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
8303         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
8304           handle "[in] ref" and "[in][out] ref" cases.
8306         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
8307           to mono_mb_create_method.  This was causing problems calling native to
8308           managed passing Variants by value.
8310         Code is contributed under MIT/X11 license.
8312 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
8314         * class.c (can_access_internals): Call mono_assembly_load_friends ()
8315         before accessing the friend_assembly_names field.
8317         * assembly.c (mono_assembly_load_friends): Make this callable multiple
8318         times.
8319         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
8320         called lazily when it is needed.
8322         * metadata-internals.h (struct _MonoAssembly): Add 
8323         'friend_assembly_names_inited' flag.
8325 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
8327         * mono-perfcounters-def.h: fix the types of a few counters.
8328         * mono-perfcounters.c: implemented the instance names getter
8329         and a few bugfixes.
8331 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
8333         * culture-info-table.h : regenerated.
8335 2008-09-17  Robert Jordan  <robertj@gmx.net>
8337         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
8338         context bound objects. Fixes #415577.
8340         Code is contributed under MIT/X11 license.
8342 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
8344         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
8345         implementation (bug #423582).
8347 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
8349         * object.c (mono_object_get_virtual_method): Handle the case method->slot
8350         is not set. Fixes #426309.
8352 2008-09-16  Jb Evain  <jbevain@novell.com>
8354         * class.c (mono_class_from_name): fix the exported type look up
8355         when the type is defined in a referenced assembly.
8357 2008-09-16  Jb Evain  <jbevain@novell.com>
8359         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
8360         increment the next index counter on each iteration to make that work
8361         for more than one type forwarder. Unmanaged part to fix #422929.
8363 2008-09-15  Mark Probst  <mark.probst@gmail.com>
8365         * object-internals.h: enum ComInterfaceType in
8366         MonoInterfaceTypeAttribute is guint32, not guint16.
8368 2008-09-12  Mark Probst  <mark.probst@gmail.com>
8370         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
8371         writing code.
8373 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8375         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
8376         not gboolean.
8378 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8380         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
8381         Endianness fixes for MonoSymbolFileOffsetTable.
8383 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8385         * process.c (complete_path) : Removing quotes from the 
8386           input path.  The glib file routines do not handle file paths
8387           that have quotes around them.
8389         Code is contributed under MIT/X11 license.
8391 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8393         * socket-io.h : Adding a comment to provide locations where 
8394           changes to MonoSocketAsyncResult need to be synced.
8396         Code is contributed under MIT/X11 license.
8398 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
8400         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
8401         parameters as well. Fixes #425001.
8403 2008-09-08  Miguel de Icaza  <miguel@novell.com>
8405         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
8406         windows build.
8408 2008-09-07  Miguel de Icaza  <miguel@novell.com>
8410         * console-io.c: Add support for tracking the window size if it
8411         changes.
8413         The setup is very simple: the TtySetup function will now return a
8414         pointer to a location in memory that tracks the current console
8415         size.  The managed code checks its current value every time its
8416         queried against the last value set, and updates accordingly.
8418         With this setup we can work with multiple consoles, and we do not
8419         require to poke into managed code from a signal handler.
8421         Additionally, the environment for COLUMNS and LINES is now handled
8422         in unmanaged code.
8424         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
8426 2008-09-07  Mark Probst  <mark.probst@gmail.com>
8428         * marshal.c (mono_type_native_stack_size): Treat
8429         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
8431 2008-09-04  Jb Evain  <jbevain@novell.com>
8433         * class.c (mono_class_is_assignable_from): fix assignability of nullables
8434         to nullables.
8436 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
8438         * verify.c (verify_type_compatibility_full): Revert change
8439         to allow converting a native int to unmanaged pointer be verifiable
8440         under non-strict mode.
8441         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
8443         * verify.c: Added some TODOs.
8445 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
8447         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
8448           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
8449           Changed to use GlobalAlloc for the memory returned on Windows platforms.
8451         Code is contributed under MIT/X11 license.
8453 2008-09-02  Jb Evain  <jbevain@novell.com>
8455         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
8457 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
8459         reflection.c (typebuilder_setup_fields): Handle classes with
8460         explicit size.
8462 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
8464         class.c (mono_class_setup_events): Add memory barrier due to
8465         double checked locking.
8466         
8467         class.c (mono_class_setup_properties): Same.
8469 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
8471         * class.c (mono_class_is_assignable_from): Fix the build.
8472         
8473         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
8474         before accessing klass->interface_bitmap. Fixes #421744.
8476 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
8478         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
8479         the runtime into no-exec mode, useful when running the AOT compiler.
8481         * appdomain.c gc.c object.c: Avoid executing managed code when running
8482         in no-exec mode.
8483         
8484         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
8486         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
8487         special case when the mono_assembly_loaded () returns NULL because the 
8488         search hook is not installed.
8490 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
8492         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
8493         crashes in bstr marshalling on linux.
8495 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8497         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
8498         with more than one parameter.
8500 2008-08-24  Miguel de Icaza  <miguel@novell.com>
8502         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
8503         start/stop flow control as well when turning off ICANON (allows
8504         C-s and C-q to be read by Console.ReadKey).
8506 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8508         * class.c (mono_class_init): Move the initialization of nested classes
8509         into mono_class_get_nested_types (). Fixes #418433.
8511         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
8512         flag.
8514         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
8515         iterating tough the nested classes of a class.
8517 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
8519         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
8520         on arm.
8522 2008-08-22  Miguel de Icaza  <miguel@novell.com>
8524         * console-io.c (sigcont_handler): Support signal chaining for
8525         SIGCONT.
8527         (console_set_signal_handlers): Use best practices with sigaction,
8528         clear the structure before using it. 
8530 2008-08-22  Robert Jordan  <robertj@gmx.net>
8532         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
8533         Fix the Windows build.
8535 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
8537         * class.c (mono_class_generic_sharing_enabled): Make the default
8538         sharing mode 'corlib'.
8540 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
8542         * console-io.c (console_set_signal_handlers): Fix a warning.
8544         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
8545         method normally, the JIT will take care of avoiding recursion.
8547 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8549         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
8551         Code is contributed under MIT/X11 license.
8553 2008-08-20  Miguel de Icaza  <miguel@novell.com>
8555         * console-io.c (sigcont_handler): We need to restore the entire
8556         termios state, not only the original settings, as things like echo
8557         can be controlled after this (Booish exposes this issue with its
8558         own ReadLine implementation).
8560         Additionally, we need to set the terminal back into keypad_xmit
8561         mode.
8562         
8563         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
8564         string as a paramter as well.   Otherwise we get different
8565         keyboard sequences.
8567 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
8569         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
8570         delegates with byref out parameter passing. Fixes #351520.
8572         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
8573         a generic context.
8574         (mono_type_get_desc): Add the type arguments for GENERICINST.
8575         (mono_method_full_name): Stringify the class name using mono_type_full_name
8576         so it picks up generic arguments.
8578 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
8580         * console-io.c: Removed debug output.
8582 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
8584         reflection.c (mono_reflection_create_runtime_class): Alloc
8585         the nested classes linked list using the dynamic image mempool.
8586         Fixes leak in corlib compilation.
8588 2008-08-19  Miguel de Icaza  <miguel@novell.com>
8590         * console-io.c: Fix incredibly annoying behavior on the console
8591         after resuming execution after control-z.   This affected every
8592         console application.
8594 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
8596         * mempool-internals.h: Header for mono private mempool functions. The first
8597         two function are for allocating glib linked lists using pools.
8599         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
8601         * Makefile.am: Added mempool-internals.h.
8603 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
8605         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
8606         (mono_domain_free): Ditto.
8608         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
8609         be used by the JIT to store its domain-specific information, instead of putting
8610         it directly into MonoDomain.
8612         * domain.c (mono_install_create_domain_hook): New helper function to install
8613         a hook which initializes domain->runtime_info.
8615         * domain.c (mono_install_free_domain_hook): Ditto.
8616         
8617 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
8619         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
8620         asserting if the ares parameter is null.
8622         * mono-perfcounters.c: Fix warnings.
8624         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
8625         is not needed, don't check for interruptions either.
8626         (mono_marshal_get_delegate_end_invoke): Ditto.
8628 2008-08-15  Marek Habersack  <mhabersack@novell.com>
8630         * mono-perfcounters.c (predef_readonly_counter): added support for
8631         reading the ASP.NET Requests Queued counter from another process.
8633 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8635         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
8636         MonoImage to simplify the AOT code.
8638 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
8640         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
8641         marshalling. Fixes #416078.
8643 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8644         
8645         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
8646         it is set, looking up the icall address is deferred to the JIT, since 
8647         in embedded scenarios, the icall might not be registered in the runtime
8648         doing the AOT compilation. Backported from the 2.0 branch.
8650 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8652         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
8653         Fixes #415621.
8655 2008-08-05  Marek Habersack  <mhabersack@novell.com>
8657         * Makefile.am: added support for cross-compilation.
8659 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
8661         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
8663 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8665         * mono-perfcounters.c: jitted methods and jitted bytes counters.
8667 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
8669         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
8670         mono-perfcounters.c: performance counters implementation.
8672 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
8674         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
8675         to gpointer, letting the AOT code decide what to store in it.
8677 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
8679         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
8680           mono_class_setup_methods if the methods are not initialized.
8682         Code is contributed under MIT/X11 license.
8684 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8686         * verify.c: Remove some debug code I commited by accident.
8688         * verify.c (mono_method_is_valid_in_context): Change the return value
8689         to make possible to distinguish between invalid and unverifiable.
8691         * verify.c (verifier_load_method): Don't return NULL for unverifiable
8692         methods.
8694 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8696         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
8697         constraints. Fixes regression in gtest-253.
8699 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8701         * verify.c (mono_verifier_verify_class): Don't allow generic types
8702         with explicit layout.
8704         * verify.c (mono_method_verify): Check locals and argument types.
8706 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
8708         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
8709         wait if the thread is in StopRequested state.
8711         * class.c (mono_class_from_name): Refactor the module searching code into
8712         a separate function so it can be reused in the AOT case too.
8714 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
8716         * verify.c (mono_type_is_valid_in_context): Improve the error message.
8717         Check both the type and it's generic type definition for loader errors.
8718         
8719         * verify.c (mono_method_is_valid_in_context): Don't generate another
8720         error when a type errors occur, this leads to the wrong exception been
8721         thrown.
8723 2008-07-28  Dick Porter  <dick@ximian.com>
8725         * icall-def.h
8726         * process.c
8727         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
8728         New internal calls to duplicate and close a process handle.
8730 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
8732         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
8734 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
8736         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
8738 2008-07-27  Robert Jordan  <robertj@gmx.net>
8740         * class.c (mono_class_init): Don't compute class.has_finalize for
8741         valuetypes. Fixes #412477.
8743 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
8745         * verify.c: Implement constraint equivalence checking.
8746         This is required when a generic parameter is used as
8747         argument to a constrained one.
8749         Fixes #410637.
8751 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
8753         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8755         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
8757         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
8758         synch with managed object layout.
8760 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8762         * verify.c (do_branch_op): Handle valuetypes and generic
8763         arguments properly.
8765         * verify.c (do_cmp_op): Same.
8767         Fixes #410383.
8769 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8771         * generic-sharing.c: Fix memory leaks.
8773         * class.c, class-internals.h: Make
8774         mono_class_inflate_generic_type_with_mempool() non-static.
8776 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8778         * pedump.c (dump_verify_info): Dump full class name.
8780 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8782         * generic-sharing.c: Removed some old code that didn't do anything.
8784 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
8785         * profiler.c: Added runtime_initialized_event,
8786         mono_profiler_install_runtime_initialized and
8787         mono_profiler_runtime_initialized. This new hook tells the profiler
8788         when the runtime is sufficiently initialized to be able to call
8789         mono_thread_attach on the root appdomain.
8790         * profiler.h, profiler-private.h: Likewise.
8792 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8794         * verify.c (do_cast): Do boxing for generic arguments as well.
8796         * class.c (is_nesting_type): Drop generic instantiations before
8797         checking for nesting.
8799         * class.c (can_access_instantiation): Allow access to generic
8800         arguments.
8802 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8804         * verify.c (verify_class_for_overlapping_reference_fields):
8805         On some cases, the field size might be zero, guard against that.
8806         Fix the explicit layout check to work as expected.
8808 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
8810         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
8811         mono_thread_resume () during shutdown, since the thread we want to abort
8812         might be suspended.
8814 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
8816         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
8817         warning.
8819         * debug-mono-symfile.c: Fix a warning.
8821         * mono-perfcounters.c (get_cpu_times): Fix a warning.
8823         * object.c (mono_class_vtable): Check if exception_type is set, and return
8824         NULL as defined by the function comments.
8826 2008-07-22  Mark Probst  <mark.probst@gmail.com>
8828         * mempool.c: Use malloc for every single mempool allocation if the
8829         configure option is set.  This makes it easier to track mempool
8830         allocations with tools like Valgrind.
8832 2008-07-22  Jb Evain  <jbevain@novell.com>
8834         * reflection.c (create_dynamic_mono_image): emit the same
8835         metadata version that SL2 does when creating a SL2 image.
8837 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
8839         * icall-def.h:
8840         * icall.c: New icall System.Enum:get_hashcode. This function
8841         avoids the overhead of boxing the enum to the underlying type.
8843 2008-07-21  Mark Probst  <mark.probst@gmail.com>
8845         * reflection.c (mono_method_get_object): Don't let static RGCTX
8846         invoke wrappers get into MonoReflectionMethods.
8848 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
8850         * object-internals.h:
8851         * object.c: New mono_runtime_class_init_full function
8852         that makes throwing the exception optinal.
8854         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
8855         for the case where the exception object is supplied.
8857 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
8859         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
8860         old ld versions.
8862         Contributed under MIT/X11 license.
8864 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8866         * string-icalls.c (ves_icall_System_String_InternalSplit):
8867         Optimize array allocation by caching the MonoClass of the
8868         array type.
8870         * icall.c (ves_icall_Type_GetMethodsByName): Same.
8872         * reflection.c (mono_param_get_objects): Same.
8874 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8876         * icall-def.h:
8877         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8878         It inflates the given type using the class context.
8880 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8882         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8883         the vtable if it already exists.
8885         * object-internals.h: Add mono_class_try_get_vtable as part of the
8886         internal API.
8888         * reflection.c (mono_type_get_object): Use the MonoObject from the
8889         vtable when possible. Reduces locking contention on reflection heavy
8890         code.
8892 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8894         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8895         g_bit_nth_msf () since that macro is not implemented in eglib.
8897 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8899         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8900         on platforms which do not support it.
8902 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8904         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8906 2008-07-11  Martin Baulig  <martin@ximian.com>
8908         * mono-debug-debugger.h
8909         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8911         * mono-debug-debugger.c
8912         (_mono_debugger_interruption_request): New global volatile variable.
8913         (mono_debugger_check_interruption): New public function.
8915         * threads.c
8916         (mono_thread_current_check_pending_interrupt): Call
8917         mono_debugger_check_interruption().
8918         (mono_thread_interruption_checkpoint_request): Likewise.
8920 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8922         * verify.c: Add more type checks for loaded types. Verify the result
8923         handle from ldtoken.
8925 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8927         * loader.c (field_from_memberref): Don't crash if the field
8928         wasn't found.
8930 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8932         * verify.c: Verify if type and method instantiations
8933         don't have invalid VAR or MVAR arguments.
8935 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8937         * verify.c: Fix double free of function pointer list.
8939 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8941         * object.c (mono_string_to_utf8): Comment the new code as it
8942         breaks under eglib.
8944 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8946         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8948 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8950         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8951           is not throw too many times.
8953         Code is contributed under MIT/X11 license.
8955 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8957         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8958         debugging is turned off.
8960 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8962         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8964 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8966         * class-internals.h, class.c: Added new generic sharing option:
8967         Share only stuff in System.Collections.Generic, which is now the
8968         default.
8970 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8972         * generic-sharing.c, class-internals.h: New function for getting a
8973         generic method in a generic class given the corresponding method
8974         for a different instantiation of the class.  Partly refactored
8975         from mini-trampolines.c.
8977         * class.c: Make sure generic methods have a class_inst if they are
8978         part of a generic class.
8980         * metadata.c (mono_type_stack_size_internal): Handle type
8981         variables.
8983 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8985         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8986         Signifies whether information on the this/vtable/mrgctx variable
8987         is available.
8989 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8991         * object.c, object-internals.h, icall.c: New function
8992         mono_delegate_ctor_with_method(), which does the same as
8993         mono_delegate_ctor(), but takes an explicit method argument
8994         instead of taking the method from the jit info.
8996         * marshal.c: When creating a delegate with an inflated method take
8997         the "this" argument as the target class for the castclass.
8999 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9001         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
9002         mono_jit_info_table_find() to perform very badly in some cases.
9004 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9006         * icall.c (type_from_typename): Handle 'string'.
9008         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
9009         wrappers into the wrapper_hash, since the key is not a MonoMethod.
9011 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9013         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
9015         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
9016         number of available managed allocator types.
9018         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
9019         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
9021 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
9023         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
9024         which is a low level lock protecting just the 'jit_code_hash' hash table.
9026         * domain.c: Initialize+cleanup jit_code_hash_lock.
9027         
9028 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9030         * coree.c (mono_load_coree): Set coree_module_handle global variable only
9031         after initialization.
9033         * coree.h: Make MonoFixupExe internal.
9035         Contributed under MIT/X11 license.
9037 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9039         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
9040         because that is platform independent. Check NumberOfRvaAndSizes in PE32
9041         as well.
9042         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
9043         image being loaded is a CLI image and _CorValidateImage gets called.
9045         * coree.h: Add MonoLoadImage.
9047         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
9048         instead of LoadLibrary.
9050         Contributed under MIT/X11 license.
9052 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
9054         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
9055         for any primitive type.
9057 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
9059         * object.c (mono_array_new_specific): Optimize this and the other allocation
9060         functions a bit.
9061         
9062         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
9063         domains too if mono_dont_free_domains is set.
9065         * domain-internals.h (mono_dont_free_domains): New internal option controlling
9066         whenever to free appdomain data after it has been unloaded.
9068         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
9069         
9070 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
9072         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
9073         (mono_method_get_equivalent_method): Fix a warning.
9075         * object.c (mono_message_init): Avoid looking up array types for each call.
9077 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
9079         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
9080         call.
9082         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
9083         even more.
9085         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
9086         each iteration.
9088         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
9089         fields of an enum.
9091 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
9093         * object.c (mono_value_box): Fix boxing of nullables.
9095 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
9097         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
9098         mono_module_handle that is defined by the linker; no initialization required.
9099         * coree.h: Remove mono_module_handle, add __ImageBase, update
9100         mono_image_open_from_module_handle.
9101         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
9102         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
9103         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
9104         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
9105         to 4 GB away from image base address. IA64 version is not tested but was very
9106         easy to implement and should work if we ever need it.
9107         * domain.c (mono_init_internal): Avoid system error message boxes.
9108         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
9109         with has_entry_point. Handle do_mono_image_load fauilre correctly.
9110         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
9111         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
9112         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
9114         Contributed under MIT/X11 license.
9116 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9118         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
9119         as part of the private mono API.
9120         
9121         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
9122         Do proper argument checking for methods that belong to generic classes.
9123         Do proper type resolution for GMFH/2.
9124         Fixes #377324.
9125         
9126 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9128         * verify.c (do_switch): Fix a memory corruption bug with
9129         the jump index is out of bound.
9131 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9133         * verify.c: Disable debug code.
9135 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9137         * reflection.c (mono_image_get_methodbuilder_token): Use
9138         mono_image_get_methodspec_token_for_generic_method_definition
9139         instead of mono_image_get_memberref_token. We cache more memberef
9140         entries now.
9142 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9144         * verify.c: Inflate exception clause types.
9145         Fixes #402606.
9146         
9147 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9149         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
9150         name.
9152         * reflection.c (mono_image_get_ctorbuilder_token): Same.
9154         * reflection.c (mono_image_create_method_token): Same.
9156 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9158         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
9159         It does the same as mono_image_get_methodref_token but works on
9160         MethodBuilder.
9162         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
9163         and always generate a methodspec. This follows the old behavior and fixes
9164         the regressions in System.Core. 
9166 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
9168         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
9169         don't event mono_class_get () succeeds. Fixes #402182.
9171 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
9173         * metadata-internals.h: Added MonoDynamicImage::methodspec
9174         hashtable to store methodspec tokens created for MethodBuilders.
9176         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
9177         MethodBuilders as open instantiations if a methodspec was requested.
9179         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
9181         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
9183         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
9185         Fixes bug #349190.
9187 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
9189         * loader.c (method_from_methodspec): Avoid crashing if the
9190         method lookup fails.
9192 2008-06-20  Dick Porter  <dick@ximian.com>
9194         * socket-io.c (get_socket_assembly): Cope with Moonlight network
9195         classes being in a different assembly.  Fixes bug 399184.
9197 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
9199         * loader.c (mono_loader_init): Make this callable multiple times.
9200         (mono_dllmap_insert): Call mono_loader_init () so this works even before
9201         the runtime is initialized. Fixes #401755.
9203 2008-06-19  Dick Porter  <dick@ximian.com>
9205         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
9206         Fixes bug 349688.
9208 2008-06-19  Dick Porter  <dick@ximian.com>
9210         * socket-io.c:
9211         * icall-def.h: Implement Socket generic Send() and Receive()
9212         methods.  Fixes bug 395168.
9214 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
9216         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
9218         Contributed under MIT/X11 license.
9220 2008-06-18  Martin Baulig  <martin@ximian.com>
9222         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
9223         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
9224         set to 80.0.  The debugger <-> runtime interface is now frozen as
9225         well.   
9227         * mono-debug.c
9228         (mono_debug_debugger_version): Bump to 4.
9230 2008-06-18  Martin Baulig  <martin@ximian.com>
9232         * debug-mono-symfile.c
9233         (load_symfile): Don't check the minor version.
9235         * debug-mono-symfile.h: Bump the version number to 50.0.
9237 2008-06-18  Martin Baulig  <martin@ximian.com>
9239         * debug-mono-symfile.c
9240         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
9241         minimum required version.
9243 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
9245         * reflection.c (mono_custom_attrs_from_property): Fix support for
9246         retriveving cattrs of dynamic inflated generic types.
9248         * reflection.c (mono_custom_attrs_from_event): Same.
9250         * reflection.c (mono_custom_attrs_from_field): Same;
9252         * reflection.c (typebuilder_setup_events): Same cattrs of events.
9254         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
9255         Moved to metadata.c.
9257         * metadata.c: New functions to retrive the equivalent field, event
9258         of property from the generic type definition.
9260         * metadata-internals.h: Added new functions from metadata.c.
9262 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
9264         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
9265         to cached in a mempool is used.
9267         * metadata.c (free_generic_class): In some situations field generic_info type
9268         is not properly dup'ed and leads to double free'ing.
9270         Fixes #400643.
9272 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9274         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
9275         this arguments (will be needed later for generic methods).
9276         Collect stats.
9278 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9280         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9281         Create a static RGCTX invoke wrapper for methods which require it.
9283 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9285         * object.c, class-internals.h: New function for checking whether
9286         an individual field is special static.
9288 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
9290         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
9291         linear search since the table is sorted.
9293         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
9294         Fixes #324180.
9296 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
9298         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
9299         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
9301         * gc.c (mono_domain_finalize): Allow an infinite timeout.
9303         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
9304         
9305         * threads.c (mono_thread_request_interruption): Get rid of locking, use
9306         InterlockedCompareExchange to query and modify 
9307         thread->interruption_requested.
9309         * object-internals.h (struct _MonoThread): Change interruption_requested
9310         to a gint32 so it can be modified by atomic operations. Add 
9311         'critical_region_level' from the managed side, change small_id to a guint32,
9312         add new set of 'unused' fields.
9314         * appdomain.c: Bump corlib version.
9316 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
9318         * class.c (mono_class_from_name): Search modules as well. Fixes
9319         #322332.
9321 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9323         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
9324         templates.  Templates are generalized with an additional type_argc
9325         argument.  RGCTX templates have type_argc==0, MRGCTX templates
9326         have type_argc>0.
9328         * domain-internals.h, domain.c: New hash table for looking up
9329         MRGCTXs.
9331         * metadata.c, metadata-internals.h: Rename hash and equal
9332         functions for MonoGenericInst's and make them public.
9334         * class-internals.h: New data structures for the MRGCTX.  Macros
9335         for distinguishing slots in the RGCTX and the MRGCTX.
9337 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9339         * object.c (mono_method_get_imt_slot): Put the same methods of
9340         different instantiations of the same generic interface in the same
9341         IMT slots, to make generic sharing simpler.
9343 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9345         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
9347         * metadata.c (mono_metadata_field_info_with_mempool): Added.
9348         This function works just like mono_metadata_field_info, but
9349         accept a mempool as argument to be used allocating memory.
9351         * marshal.c (mono_marshal_load_type_info): Use new function
9352         to load marshal data into image mempool.
9354 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9356         * class.c (mono_class_inflate_generic_type_with_mempool):
9357         This function allows to inflate a generic type using
9358         a mempool.
9360         * class.c (inflate_generic_type): Take a mempool as argument
9361         and use it to do type dup'ing.
9363         * class.c (mono_class_setup_fields): Field type for generic
9364         generic classes are allocated from the image mempool.
9366         * metadata.c (free_generic_class): Inflated field type is
9367         now allocated in the image mempool.
9369 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9371         * threads.c (thread_cleanup): Free MonoThread::name.
9373 2008-06-12  Marek Habersack  <mhabersack@novell.com>
9375         * appdomain.c (ensure_directory_exists): avoid unnecessary
9376         mkdir(2) calls when the shadow directory already exists.
9377         (mono_make_shadow_copy): copy also satellite assemblies from the
9378         private bin directories.
9380 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9382         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
9383         
9384         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
9385         a page boundary. Fixes #396219.
9387 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9389         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
9390         due to double-checked locking.
9392 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9394         * assembly.c (build_assembly_name): Release memory on failure.
9396         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
9398 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9400         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
9401         memory on failure.
9403 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9405         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
9406         memory on failure.
9408 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9410         * loader.c (field_from_memberref): Check if field signature type is equal
9411         to the non-inflated type of the field. Fixes #398980.
9413 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9415         * assembly.c (mono_assembly_load_from_full): Call 
9416         mono_assembly_load_friends () outside the assemblies lock, since it can
9417         acquire the loader lock. Fixes #323696.
9419         * reflection.c (resolve_object): Inflate the inst with the context for
9420         FieldOnTypeBuilderInst. Fixes #399010.
9422 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9424         * reflection.c (mono_image_get_field_on_inst_token): Don't
9425         inflate the field to encode it's signature. If it's a
9426         VAR or MVAR it should stay that way in the signature.
9427         Fixes #399047.
9429 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9431         * reflection.c (resolve_object): Release memory of inflated types.
9433 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9435         * loader.c (mono_method_get_signature_full): Remove assert about
9436         loading a methodspec to a generic method. We have such methods, such as
9437         System.Threading.Interlocked::CompareExchange<T>.
9438         This assert was removed since it crashes the verifier when it checks
9439         methods calling CompareExchange<T>.
9441 2008-06-10  Marek Safar  <marek.safar@gmail.com>
9443         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
9444         of Type array and not MonoType.
9446 2008-06-10  Marek Habersack  <mhabersack@novell.com>
9448         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
9449         <lupus@ximian.com>
9451 2008-06-10  Martin Baulig  <martin@ximian.com>
9453         * debug-mono-symfile.h
9454         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
9455         changes to the file format, but we were generating incorrect
9456         source file indices in the line number table due to a bug, which
9457         made backtraces report an incorrect source file.
9459 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9461         * mono-debug.c: Moved mono_debug_free_method_jit_info from
9462         mini/debug-mini.c to here.
9464         * mono-debug.c (il_offset_from_address): Free memory from find_method.
9466         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
9467         use it to release structs returned by mono_debug_find_method.
9469 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
9471         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
9472         since it needs to set method->slot for all interface methods.
9474 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9476         * class-internals.h: Forgot to add.
9478 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9480         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
9482         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
9483         Lookup the custom attributes from property_hash.
9485         * reflection.c (mono_save_custom_attrs): Save the custom attributes
9486         in property_hash. Allocate all data using the image mempool.
9488         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
9489         for dynamic_custom_attrs to checks if the image is dynamic.
9491 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9493         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
9494         assemblies array.
9495         
9496         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
9497         runtime functions while holding the domain assemblies lock.
9499 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9501         * verify.c: Reapplied the last bit of the reverted changes.
9503 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9505         * verify.c: Reapplied more of the reverted changes.
9507 2008-06-09  Martin Baulig  <martin@ximian.com>
9509         * debug-mono-symfile.c (load_symfile): Check the major version
9510         first; if it's wrong, don't print the minor version in the error message.
9512 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9514         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
9515         lock instead of the domain lock to avoid deadlocks, since the thread might
9516         already hold the loader lock.
9518         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
9519         (mono_thread_attach): Ditto.
9521         * monitor.c: Use a TLS variable for holding the current thread id instead
9522         of calling pthread_self ().
9523         (mono_monitor_init_tls): New internal function to initialize the TLS
9524         variable.
9525         (mono_monitor_try_enter_internal): Put the owner == id check after the
9526         owner == 0 check.
9528         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
9529         missed optimizations when using gcc-4.3.
9531 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
9533         * reflection.c (mono_dynamic_image_free): Free the memory
9534         used by MonoGenericParam in MonoDynamicImage::gen_param.
9536         * reflection.c (mono_reflection_setup_generic_class): Allocate
9537         container from mempool.
9539         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
9540         container from mempool.
9542 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9544         * threads.c (mono_set_pending_exception): New internal function to set the
9545         pending exception of the current thread.
9546         (mono_thread_get_and_clear_pending_exception): Check for 
9547         thread->pending_exception as well.
9549         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
9551         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
9552         it can trigger a collection.
9554 2008-06-06  Martin Baulig  <martin@ximian.com>
9556         Merged the `debugger-kahalo' branch.
9558         * mono-debug.h
9559         (MONO_DEBUGGER_VERSION): Bumped to 72.
9561         * debug-mono-symfile.h
9562         (MonoSymbolFileMethodIndexEntry): Removed.
9563         (MonoSymbolFileMethodEntry): New public typedef.
9564         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
9565         (MonoSymbolFileSourceEntry): Remove everything except `index' and
9566         `data_offset'.
9567         (MonoSymbolFileMethodEntry): Removed.
9568         (MonoSymbolFileLexicalBlockEntry): Removed.
9569         (MonoSymbolFileLineNumberEntry): Removed.
9570         (MonoDebugLexicalBlockEntry): Removed.
9571         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
9572         removed `num_il_offsets' and `il_offsets'.
9573         (MonoSymbolFile): Replace `version' with `major_version' and
9574         `minor_version'.
9575         (MONO_SYMBOL_FILE_VERSION): Replace with
9576         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
9577         `MONO_SYMBOL_FILE_MINOR_VERSION'.
9579         * debug-mono-symfile.c
9580         (mono_debug_symfile_lookup_location): Add support for the new line
9581         number table format.
9583 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9585         * metadata.c (free_generic_class): Release the inflated
9586         MonoClass of dynamic generic classes if it's not a generic
9587         type definition.
9589 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9591         * verify.c: Reapplied more of the reverted changes.
9593 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9595         * reflection.c (lookup_custom_attr): Clean the cached flag or
9596         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
9597         for SRE types.
9599 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9601         * verify.c: Reapplied a small part of the reverted changes.
9603 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9605         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9607         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
9608         previously in managed code.
9609         (mono_monitor_exit): Ditto.
9610         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
9612         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
9613         the managed definition.
9615 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9617         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
9619 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9621         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
9622         
9623         * monitor.c: Add some micro optimizations.
9625         * icall.c (type_from_typename): Handle 'bool'.
9627 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9629         * verify.c: Implement constructor verification per P III 1.8.1.4.
9630         Fixes #396716.
9632 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9634         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
9635         holding the assemblies lock here too.
9637 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9639         * verify.c: Kill stack_top function.
9641 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9643         * verify.c: Kill stack_get function.
9645 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9647         * verify.c (mono_method_verify): Last change broke the build. Fixed.
9649 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9651         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
9652         more reliable.
9654         * verify.c (mono_method_verify): Inflate params and locals to avoid
9655         mismatch when checking for compatibility.
9657 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
9659         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
9660         Length prefix should be size in bytes. Fix bug #339530.
9661         
9662         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
9663         Length prefix should be size in bytes. Fix bug #339530.
9665         Code is contributed under MIT/X11 license.
9667 2008-06-05  Bill Holmes <billholmes54@gmail.com>
9669         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
9671         Contributed under MIT/X11 license.
9673 2008-06-05  Martin Baulig  <martin@ximian.com>
9675         * mono-debug-debugger.c
9676         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
9678 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
9680         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
9681         while holding the assemblies lock to prevent deadlocks. Handle the case
9682         where the search hook returns NULL but the assembly was still loaded.
9683         Fixes #323696.
9685         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
9686         modify domain state.
9688 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
9690         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
9691         * Makefile.am (pedump_LDADD): Post-process object files and
9692         add dtrace-generated object file, if necessary.
9694         Code is contributed under MIT/X11 license.
9696 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9698         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
9700 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9702         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
9704 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9706         * threads.c: Try to free everything from the delayed free table
9707         when shutting down threads, and set the variable to NULL after the
9708         table is freed so that calling
9709         mono_thread_hazardous_try_free_all() when shutting down the root
9710         domain doesn't crash.
9712 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9714         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
9715         the caller if resulting type was inflated.
9717         * class.c (mono_class_create_from_typespec): Free the MonoType if it
9718         was inflated.
9720         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
9723 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
9725         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
9726         class library tests.
9728         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
9729         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
9730         #396989.
9732 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9734         * domain.c, domain-internals.h: The JIT infos are now freed by the
9735         JIT info table code.  They are freed immediately if there only a
9736         single JIT info table in circulation.  If there is more, the free
9737         is delayed via a queue.
9739         * threads.c, threads-types.h: New hazard pointer function for
9740         freeing all freeable delayed items in one sitting.
9742 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9744         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
9746         * reflection.c (typebuilder_setup_properties): Same.
9748         * reflection.c (typebuilder_setup_events): Same.
9750 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9752         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
9753         and use it for allocating memory.
9755         * reflection.c (mono_marshal_spec_from_builder): Same.
9757         * reflection.c: Change code to use new signatures.
9759         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
9761 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9763         * decimal.c (rescale128): Put back one line which was accidently commented
9764         out.
9765         
9766         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
9767         to cause crashes.
9769 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9771         * reflection.c (mono_reflection_generic_class_initialize): Name must
9772         be always malloc'ed so we can free it later on. Do this for field, property
9773         and event.
9775         * metadata.c (free_generic_class): Free field, property and event names.
9777 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9779         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
9780         instead of g_memdup.
9782         * reflection.c (typebuilder_setup_fields): Same.
9784 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9786         * decimal.c (rescale128): Optimize this function a bit more.
9788 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9790         * metadata.c (free_generic_class): Release some memory from
9791         SRE generic classes.
9793 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9795         * reflection.c (mono_image_get_generic_field_token): No reference
9796         to name is kept, free it.
9798         * reflection.c (mono_reflection_generic_class_initialize): Free
9799         more memory of the inflated field.
9801 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9803         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
9804         code.
9806 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9808         * reflection.c (mono_dynamic_image_free): Release memory used by
9809         MonoDynamicImage::array_methods elements.
9811         * reflection.c (assembly_add_win32_resources): Release memory after
9812         encoding.
9814 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9816         * decimal.c (log2_32): Use an optimized version for this function too.
9817         
9818         * decimal.c (log2_64): Fix this on 32 bit machines.
9820 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9822         * class.c (mono_dup_array_type): Implement allocation using a mempool.
9824         * class.c (mono_metadata_signature_deep_dup): Same.
9826         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
9827         a mempool.
9829         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
9831         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
9833         * metadata-internals.h: Added mono_metadata_signature_dup_full.
9835         * class-internals.h: Update signatures to take a MonoMemPool.
9837 2008-06-02  Dick Porter  <dick@ximian.com>
9839         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
9840         * icall-def.h: Add
9841         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
9842         FormatMessage API to get the error text.  Fixes bug 321827.
9844 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9846         * decimal.c: Add some micro optimizations to make decimal operations faster.
9848 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
9850         * reflection.c (method_encode_clauses): Take a mempool
9851         as parameter and use it to allocate the clause array.
9853         * reflection.c (mono_image_get_field_on_inst_token): Free
9854         the inflated type after encoding it.
9856         * reflection.c (mono_dynamic_image_free): Free each element
9857         of MonoDynamicImage::gen_params.
9859         * reflection.c (reflection_methodbuilder_to_mono_method):
9860         Allocate the generic param array from the mempool.
9861         Allocate signature params from the mempool.
9863         * reflection.c (mono_reflection_generic_class_initialize):
9864         Free inflated fields after been used.
9866 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9868         * icall.c: Reapply the memory leak fixes as they no
9869         longer make mono crash.
9871 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9873         * reflection.c (mono_type_get_object): Don't store the suplied
9874         MonoType with type_hash. A caller which pass a type that
9875         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9876         might end with a pointer to freed memory.
9877         The solution is to use byval_arg or this_arg from the associated
9878         MonoClass of the supplied type.
9880 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9882         * icall.c: Revert the rest of the last change as it breaks the build too.
9884 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9886         * icall.c: Revert a leak fix as it's breaking the build.
9888 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9890         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9892 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9894         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9896 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9898         * icall.c: Fix some memory leaks.
9900 2008-05-29  Dick Porter  <dick@ximian.com>
9902         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9903         async socket operations from the pending list when a socket
9904         closes.  Leaving it until the threadpool services the event
9905         exposes a race condition when a socket descriptor is reused.
9906         Fixes bug 377589.
9908 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9910         * object.c: Fix negative index check for array alocation.
9912 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9914         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9915         This check is performed by the verifier for IL created delegates
9916         and by Delegate::CreateDelegate for programatically created ones.
9917         Fixes #372406.
9919 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9921         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9922         Fix code to use mono_array_size_t instead of int.
9924         Based on patch by Luis F. Ortiz.
9925         Contributed under X11 license.
9926         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9928 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9930         * icall.c: Added ves_icall_System_Array_GetLongLength and
9931         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9932         arrays.
9934         * icall.h: Export both new functions.
9936         Based on patch by Luis F. Ortiz.
9937         Contributed under X11 license.
9938         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9940 2008-05-28  Martin Baulig  <martin@ximian.com>
9942         The debugger now requires exactly r103463.
9944         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9945         This version is not supported by the debugger, wait for 72.
9947 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9949         * object.h: Changed array related functions to use
9950         mono_array_size_t instead of guint32. Forgot to commit this file.
9952         Patch by Luis F. Ortiz.
9953         Contributed under X11 license.
9954         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9957 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9959         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9960         don't define it. Use the number literal instead.
9962 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9964         * icall.c: Changed array related functions to use
9965         mono_array_size_t instead of guint32.
9967         * icall.c (ves_icall_System_Array_GetLength): Check for length
9968         overflow under MONO_BIG_ARRAYS.
9970         Based on patch by Luis F. Ortiz.
9971         Contributed under X11 license.
9972         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9974 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9976         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9978         Based on patch by Luis F. Ortiz.
9979         Contributed under X11 license.
9980         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9982 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9984         * object.c, object.h: Changed array related functions to use
9985         mono_array_size_t instead of guint32.
9987         Patch by Luis F. Ortiz.
9988         Contributed under X11 license.
9989         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9991 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9993         * object.h: Introduced mono_array_size_t typedef. This must be used
9994         in all places an array length is expected. This is 64bits wide if
9995         MONO_BIG_ARRAYS is enabled.
9997         Patch by Luis F. Ortiz.
9998         Contributed under X11 license.
9999         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10001 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10003         * security-manager.c class.c: Set the class exception info by calling
10004         mono_class_set_failure ().
10006         * class.c (mono_class_get_exception_data): New accessor function.
10007         (mono_class_set_failure): Store exception_data in the property hash.
10009         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
10010         the struct as a property.
10012         * loader.c (mono_get_method_full): Store the lookup result for method
10013         tokens in method_cache, the others in methodref_cache to decrease the memory
10014         usage of hash tables.
10016         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
10017         (mono_image_init): method_cache is lazy inited now.
10019         * metadata-internals.h (struct _MonoImage): Change method_cache to
10020         a MonoValueHashTable, add a separate methodref_cache.
10022 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
10024         * number-formatter.h: Fix tables to avoid arithemtic overflow in
10025           Double.ToString as exposed by Bug #383531.
10027 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
10029         * number-formatter.h: Make some tables static.
10031         * class.c (mono_method_set_generic_container): New accessor function.
10032         (mono_method_get_generic_container): Ditto.
10034         * class-internals.h (struct _MonoMethod): Remove rarely used 
10035         'generic_container' field, store it in the property hash instead. Add 
10036         'is_generic' boolean field instead.
10038         * image.c (mono_image_init): Initialize property_hash.
10039         (mono_image_close): Destroy property_hash.
10041         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
10042         hold rarely used fields of runtime structures belonging to this image.
10044         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
10045         to get/set method->generic_container.
10047         * loader.c (mono_get_method_from_token): Avoid loading the method header for
10048         generic methods.
10050 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
10052         * class.c (mono_class_inflate_generic_method_full): Don't increase
10053         mono_stats.inflated_method_count for methods found in the cache.
10055         * threads.c (mono_thread_request_interruption): Add a comment about 
10056         QueueUserAPC ().
10058 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
10060         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
10061         interface_offsets_packed table.
10062         
10063         * class.c (mono_class_init): Remove some dead code.
10065         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
10066         mono_class_setup_vtable () when CAS is active to detect security problems.
10068 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
10070         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
10072         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
10073         parameters as it's irrelevant for delegate checking.
10075 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
10077         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
10079         * class.c (mono_class_init): Control the creation of a generic vtable using
10080         a global which is true by default, but set to false by the runtime startup code.
10081         
10082         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
10083         Disabled for now since it breaks the embedding API.
10084         Move the setup of class->methods for arrays to mono_class_setup_methods ().
10085         (mono_class_setup_methods): Add a memory barrier.
10087         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
10088         when mono_class_init () doesn't compute the generic vtable.
10089         
10090 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
10091         * profiler.c: Added mono_profiler_install_statistical_call_chain,
10092         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
10093         to support call chains (backtrace) in the stat profiler.
10094         * profiler.c, profiler-private.h: Likewise.
10096 2008-05-22  Mark Probst  <mark.probst@gmail.com>
10098         * generic-sharing.c: Init generic class when a method of it is
10099         requested via a runtime generic context.
10101 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
10103         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
10105         * reflection.c (mono_type_get_object): Add a FIXME.
10107         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
10109         * class.c (mono_class_get_method_by_index): New helper function, returning an
10110         entry in the class->methods array.
10112 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10114         * class.c (mono_class_init): Only do the array optimization for szarrays. 
10115         Avoid creating a generic vtable for generic instances as well.
10116         (mono_class_get_method_from_name_flags): Don't search in the metadata for
10117         generic instances.
10119 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
10121         * loader.c (mono_get_method_constrained): Inflate the signature
10122         with class context. Fix #325283.
10124 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10126         * object.c (mono_class_create_runtime_vtable): Add a comment.
10128         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
10129         where needed.
10130         (setup_interface_offsets): Handle the case when this is called twice for arrays.
10131         (mono_class_setup_vtable_general): Add an assert.
10132         (mono_class_init): Avoid creating a generic vtable for arrays.
10134         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
10135         here, let mono_class_init () do that.
10137         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
10138         interfaces in mscorlib.
10140         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
10141         interfaces. Add some comments.
10142         (mono_class_init): Call mono_class_setup_methods () here since it is no
10143         longer called by mono_class_setup_vtable ().
10145         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
10146         not set in class->vtable.
10147         (mono_class_create_runtime_vtable): Reenable the disabled code.
10149         * object.c (mono_class_create_runtime_vtable): Disable the last change for
10150         now as it causes some test failures.
10152         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
10153         if using the vtable trampoline. Also remove some strange code which put the
10154         generic methods themselves into the vtable slots. Remove the AOT init_vtable
10155         stuff as it is no longer needed.
10157 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
10159         * pedump.c: Give make --verify all option check code as well.
10160         Using --verify code won't check for metadata now.
10162 2008-05-19  Martin Baulig  <martin@ximian.com>
10164         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
10166         * mono-debug.c
10167         (_mono_debug_using_mono_debugger): New global variable; it's set
10168         directly by the debugger, so mono_debug_using_mono_debugger() also
10169         works after attaching.
10171 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
10173         * object.c (mono_class_create_runtime_vtable): Use memory barriers
10174         as we do double checked locking on MonoClass::runtime_info and
10175         MonoClassRuntimeInfo::domain_vtables.
10177 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
10179         * debug-helpers.c (print_field_value): Fix a warning.
10181 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
10183         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
10184         set in the AOT case.
10186 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
10188         * class.c (mono_class_setup_vtable_general): Use memory barriers
10189         as we do double checked locking on MonoClass::vtable.
10191 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
10193         * reflection.c (resolve_object): Inflate only if the generic context
10194         is not null. Fixes #389886.
10196 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
10198         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
10199         instead of g_free.
10201         Code is contributed under MIT/X11 license.
10203 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10205         * class.c: Revert unrelated change.
10207 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10209         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
10210         a generic instantiation, use mono_class_from_mono_type instead of playing
10211         with MonoType directly.
10213 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10215         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
10216         checks must ignore generic instantiations, so mono_class_has_parent is not
10217         suitable. Fixes #390128.
10219 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
10221         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
10222         it to avoid registering tokens during metadata generation. Fixes #390023.
10224 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
10226         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
10227         consistent.
10229         Contributed under MIT/X11 license.
10231 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
10233         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
10234         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
10235         to fixup the EXE image.
10236         (mono_cleanup): Use mono_close_exe_image.
10237         (mono_close_exe_image): New function.
10238         * image.c: Include "marshal.h".
10239         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
10240         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
10241         counting when the image is loaded outside of mono_image_open_full. Set status
10242         based on GetLastError.
10243         * coree.c: Include required headers. Add init_from_coree.
10244         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
10245         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
10246         (_CorExeMain): Set init_from_coree.
10247         (CorExitProcess): Only call ExitProcess for now.
10248         (CorBindToRuntimeEx): New stub implementation.
10249         (CorBindToRuntime): New function.
10250         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
10251         (MonoFixupExe): ILONLY executables require no fixups.
10252         (mono_set_act_ctx): New function to set activation context.
10253         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
10254         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
10255         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
10256         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
10257         as MONO_INTERNAL.
10258         * domain-internals.h: Add mono_close_exe_image.
10260         Contributed under MIT/X11 license.
10262 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
10264         * metadata.c (mono_metadata_compute_size): Correctly calculate field
10265         size for generic param and event tables. Fixes #388977.
10267 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
10269         * loader.c (mono_method_signature): Use memory barriers because of the double
10270         checked locking pattern.
10272         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
10273         aborting or aborted as well. Fixes #376391.
10274         
10275         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
10276         existing runtime state in the Suspend handler during shutdown.
10278 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
10280         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
10282         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
10283         which are starting up or shutting down.
10285         * threads.c (mono_threads_set_shutting_down): Don't return a value since
10286         this function never returns if the runtime is already shutting down.
10288         * icall.c (ves_icall_System_Environment_Exit): Update after 
10289         mono_threads_set_shutting_down () signature change.
10290         
10291 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
10293         * class.c: Added can_access_instantiation to verify if the instantiation
10294         is visible. Fix access check for nested types as they returned TRUE
10295         before doing type and generic instantiation visibility checks.
10297 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
10299         * reflection.c (mono_reflection_create_generic_class): The created type
10300         must have a different container from its TypeBuilder. Otherwise they
10301         will end sharing generic arguments, which is wrong.
10303         Due to the sharing, making a generic instance of the created type using
10304         the TypeBuider generic arguments resulted in the generic type definition
10305         been returned, which is wrong as well.
10307         As a bonus the code was leaking the type_params array. This memory should
10308         be allocated from the image mempool.
10310         This fixes bug #354047.
10312 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
10314         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
10315         to here         as they are now used in assembly.c new code.
10316         Added a skipverification flag to MonoAssembly.
10317         New internal function mono_assembly_has_skip_verification.
10319         * assembly.c: New function mono_assembly_has_skip_verification. It checks
10320         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
10321         part of #387274.
10323 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10325         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
10326         needed. Fixes #387034.
10328         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
10330 2008-05-06  Miguel de Icaza  <miguel@novell.com>
10332         * assembly.c (mono_assembly_load_reference): Prevent crash while
10333         disassembling Silverlight 2.0 executables while we still do not
10334         have GACed libraries.
10336 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10338         * reflection.c: Special case generic type definitions as well. Fixes #383444.
10340 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
10342         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
10343         of the dynamic case. Fixes #387404.
10345 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10347         *verify.c (mono_verifier_is_class_full_trust): If under
10348         verify_all and the verifier mode was not set, only
10349         gac and corlib types are fulltrust. This makes --verify-all
10350         usable to detect unverifiable code, which is the expected
10351         use case.
10353 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10355         * verify.h: Ops, commited the header with debug
10356         enabled.
10358 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10360         * verify.c (merge_stack): Use the new value on unverifiable
10361         stack merges.
10363         * verify.c (verify_type_compatibility_full): Comparison
10364         of nullable types can't use mono_class_is_assignable_from.
10366         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
10367         that makes all verification errors be reported.
10369         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
10370         mono_method_verify.
10372 2008-05-05  Robert Jordan  <robertj@gmx.net>
10374         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
10375         support for value types. See #386415.
10377         * object.c: comments.
10379         Code is contributed under MIT/X11 license.
10381 2008-05-05  Martin Baulig  <martin@ximian.com>
10383         * debug-mono-symfile.h
10384         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
10385         for old pre-terrania symbol files.
10387 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10389         * mono-config.c: Add ppc64 architecture.
10391         Code is contributed under MIT/X11 license.
10393 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10395         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
10396           PPC64 uses function descriptors as well.
10398         Code is contributed under MIT/X11 license.
10400 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
10402         * object.c (compute_class_bitmap): Ignore literal static fields.
10404         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
10405         var has an invalid format.
10406         (describe_ptr): Add some sanity checks for the vtable.
10407         (add_nursery_frag): Clear unused nursery fragments.
10408         (major_collection): Clear all remaining nursery fragments.
10410 2008-05-03  Robert Jordan  <robertj@gmx.net>
10412         * image.c, metadata-internals.h: add thunk_invoke_cache.
10414         * marshal.c, marshal.h: implement
10415         mono_marshal_get_thunk_invoke_wrapper ().
10417         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
10419         Code is contributed under MIT/X11 license.
10421 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10423         * verify.c (do_leave): Empty the stack.
10425 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10427         * class.c (mono_class_is_assignable_from): Variance
10428         doesn't work between reference and value types. For example,
10429         given type C<T+>, C<int32> is not assignable to C<object>.
10430         Break the argument checking loop on first error. 
10432 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
10434         * icall.c : base64_to_byte_array() needs some more strict
10435           check for sequence of '=' characters. Patch by Santa
10436           Marta (http://deee.g.hatena.ne.jp/santamarta).
10438           Contributed under MIT/X11 license.
10439           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
10441 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
10443         * domain.c: Disable LoadLibrary support to fix Win32 build.
10445         Code is contributed under MIT/X11 license.
10447 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
10449         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
10450         to help with cache behaviour.
10452 2008-05-01  Miguel de Icaza  <miguel@novell.com>
10454         * appdomain.c (mono_domain_from_appdomain): Add new accessor
10455         method. 
10457 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
10459         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
10461 2008-05-01  Dick Porter  <dick@ximian.com>
10463         * process.c (process_get_fileversion): Only pass 16 bits of
10464         language ID to VerLanguageName.  Fixes bug 381204.
10466 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10468         * verify.c (mono_method_verify): Fix the comparison
10469         operator for code bounds check.
10471 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10473         * verify.c (mono_method_verify): Check the bounds of
10474         all access of the code array.
10476 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
10478         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
10480 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
10482         * image.c (mono_image_strong_name_position): Fix return value when the rva is
10483         not valid.
10485 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
10487         * loader.c (mono_get_method_from_token, mono_method_signature): Add
10488         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
10489         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
10490         fixup main EXE images when using mono.exe for mixed-mode assembly support.
10491         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
10492         mono_runtime_load.
10493         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
10494         runtime initialization from metadata.
10495         * assembly.c: Remove obsolete ceGetModuleFileNameA.
10496         (mono_set_rootdir): Use mono_get_module_file_name.
10497         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
10498         handles.
10499         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
10500         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
10501         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
10502         MonoCLIImageInfo. Add support for module handles.
10503         (load_cli_header): Update mono_cli_rva_image_map signature.
10504         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
10505         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
10506         (mono_image_rva_map): Add support for module handles.
10507         (mono_image_ensure_section_idx): Add support for module handles.
10508         (mono_image_close): Add support for module handles.
10509         (do_load_header): Add support for module handles.
10510         (mono_image_open_from_module_handle): New function for internal use.
10511         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
10512         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
10513         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
10514         handles.
10515         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
10516         * image.h: Add mono_image_fixup_vtable.
10517         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
10518         support.
10519         * coree.h: New file.
10520         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
10521         unsupported native code.
10522         (mono_marshal_set_callconv_from_modopt): New function splitted from
10523         mono_marshal_get_managed_wrapper.
10524         (mono_marshal_get_managed_wrapper): Use
10525         mono_marshal_set_callconv_from_modopt.
10526         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
10527         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
10528         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
10529         that results in a deadlock when the runtime is loaded in _CorDllMain.
10530         * Makefile.am: Add coree.c and coree.h.
10532         Contributed under MIT/X11 license.
10534 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10536         * generic-sharing.c: Search for type arguments in array element
10537         types as well.
10539 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10541         * class-internals.h, generic-sharing.c: New, small runtime generic context.
10543         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
10545         * object.c: Don't setup the RGCTX when the vtable is created,
10546         because we're setting it up lazily now.
10548 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
10550         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
10551         64 bit support.
10553 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10555         * verify.c (verify_class_for_overlapping_reference_fields): 
10556         If class is under fulltrust allow reference types to overllap
10557         if they have the same RVA.
10559 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10561         * pedump.c: Added new flag valid-only, that makes the verifier
10562         behaves just like --security=validil. It won't fail type load
10563         due to unverifiable restrictions.
10565 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10567         * class-internals.h (struct MonoMethod): Added a verification_success
10568         field to cache verifier executions. Reduced MonoMethod:slot size by
10569         one bit.
10571 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
10573         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
10574         instead of a 'vt' argument to save an indirection and to allow these to be used
10575         for valuetypes.
10576         (scan_vtype): New helper function to scan an area using a gc descriptor.
10577         (mono_gc_wbarrier_value_copy): Implement this.
10578         (handle_remset): Add support for REMSET_VTYPE.
10579         (find_in_remset_loc): Ditto.
10580         (mono_gc_base_init): Allow some debugging options to be controlled through the
10581         use of the MONO_GC_DEBUG env variable.
10582         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
10583         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
10585 2008-04-23  Martin Baulig  <martin@ximian.com>
10587         * domain.c (mono_domain_create): Move the call to
10588         mono_debug_domain_create() down, after allocating the domain id.
10590 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10592         verify.c (verify_class_for_overlapping_reference_fields): Skip
10593         static fields while verifying for overlapping fields as they
10594         don't matter at all.
10596 2008-04-23  Marek Habersack  <mhabersack@novell.com>
10598         * domain-internals.h: added a declaration of
10599         mono_make_shadow_copy.
10601         * assembly.c (mono_assembly_open_full): shadow copying of
10602         assemblies moved to here, so that all the assemblies within the
10603         application domain's private binary directories can be
10604         processed. Fixes bug #380546
10606         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
10607         mono_make_shadow_copy and made non-static. The decision whether
10608         to shadow-copy an assembly is made based on its location - it's
10609         copied if it's in one of the private application domain binary
10610         directories and its different to the target file in the shadow
10611         directory. Fixes bug #380546
10613 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
10615         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
10617         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
10618         types.
10620         * reflection.c (mono_image_create_token): Handle 
10621         Method/ConstructorOnTypeBuilderInst.
10622         (resolve_object): Ditto.
10623         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
10624         so it can be called from resolve_object. Also handle the case when the inflated
10625         class already has its methods setup.
10627 2008-04-21  Martin Baulig  <martin@ximian.com>
10629         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
10631 2008-04-20  Geoff Norton  <gnorton@novell.com>
10633         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
10634         pointer dereference.
10636 2008-04-15  Marek Habersack  <mhabersack@novell.com>
10638         * appdomain.c (try_load_from): if IOMAP is in effect, call the
10639         portability API to look up the assembly file. Fixes behavior in
10640         situations when the application has a bin/ directory, but the
10641         assembly search patch refers to Bin/ (and thus the requested file
10642         name is Bin/SomeLibrary.dll). Fixes bug #379888
10644 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
10646         verify.c (mono_type_is_generic_argument): Extracted this check
10647         from a dozen places to here.
10649         verify.c: Fixed all issues related to boxing generic arguments
10650         and their constraints.
10652 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
10654         verify.c (mono_class_interface_implements_interface): Fix win32 build.
10656 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
10658         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
10659         isn't finished yet. Fixes #363447.
10661 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
10663         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
10664         Fixes #346419.
10666 2008-04-13  Jb Evain  <jbevain@novell.com>
10668         * domain.c: update the 2.1 profile versions.
10669         Merged from the Moonlight 2 branch.
10671 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
10673         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
10674         mscorlibs for the non-refonly case as well.
10676         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
10677         in mono_assembly_load_from_full (). Fixes #378924.
10679 2008-04-11  Geoff Norton  <gnorton@novell.com>
10681         * icall.c: The global extern environ doesn't exist on Mac.  We
10682         need to call NSGetEnviron instead.
10684 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10686         verify.c: Add generic method constraint verification.
10688 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10690         class.c (mono_class_inflate_generic_method_full): Add a long
10691         explanation to the is_mb_open hack. Remove the FIXME.
10693 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10695         * verify.c (mono_method_verify): Mark all unknown opcodes
10696         as invalid. Mark jmp as unverifiable.
10698 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10700         * verify.c: Add code to do type constraint verification on class instances.
10702         * verify.c (mono_verifier_verify_class): Use the type constraint 
10703         verification code.
10705 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10707         * class.c (mono_class_get_field_default_value): Don't pass cindex
10708         as hint to mono_metadata_get_constant_index. The local is not initialized
10709         and should contain garbage most of the time. This could only work
10710         with a lot of luck.
10712 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10714         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
10716 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10718         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
10720         * class.c (mono_class_from_generic_parameter): Save the token of the
10721         generic param in MonoClass::sizes.generic_param_token.
10723         * reflection.c (mono_custom_attrs_from_class): If the class type is
10724         VAR or MVAR retrieve the attributes of the generic param.
10726 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10728         * class.c (mono_class_init): Do class verification if the verifier
10729         is enabled.
10731 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10733         * verify-internal.h: Added mono_verifier_verify_class.
10735         * verify.c: Added mono_verifier_verify_class. It checks for
10736         classes with explicit layout that have overlapping reference fields.
10738         * pedump.c: Init the verifier state prior to verification. Fixed
10739         command line arguments.
10741 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10743         * Makefile.am: Added verify-internals.h, hopefully fix the build.
10745 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10747         * verify-internals.h: Fix a warning.
10749 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10751         * verify-internals.h: New header with the verifier configuration
10752         extracted from mini.c.
10754         * verify.c: Implemented the new functions exported by verify-internals.h.
10756 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10758         * verify.c: Add proper verification of ckfinite.
10760 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10762         * verify.c (do_conversion): Improved error message to something
10763         more meanfull.
10765         * verify.c (check_is_valid_type_for_field_ops): Fix to work
10766         with primitive types.
10768 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10770         * verify.c: Added tail prefix checking. Marked icall
10771         as unverifible.
10773 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10775         * verify.c: Fix the detection of branches to the middle
10776         of an instruction.
10778 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
10780         * verify.c: Implemented verification of volatile. and
10781         unaligned. prefix. Check if a type is valid after retrieving it.
10783 2008-04-01  Dick Porter  <dick@ximian.com>
10785         * process.c (process_get_fileversion): If there's no string block,
10786         set the file language to en_US.  Fixes the other new part of bug
10787         374600.
10789 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
10791         * class.c: New functions mono_method_can_access_field_full and
10792         mono_method_can_access_method_full. They perform type visibility
10793         and type site check.
10795         * class-internal.h: Added exported functions.
10797         * verify.c: Use new functions to implement proper visibility checks.
10799 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
10801         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
10803 2008-03-28  Dick Porter  <dick@ximian.com>
10805         * process.c (process_get_fileversion): Use the first language ID
10806         we see, rather than insisting on an invariant language.  Fixes bug
10807         374600.
10809 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
10811         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
10812         the streams to fix reading of invalid memory later.
10814         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
10815         to ease debugging.
10817 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10819         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
10820         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
10822 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
10823         * threads.h: Added MonoThreadManageCallback type and
10824         mono_thread_set_manage_callback prototype
10825         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
10826         (used to store the mono_thread_manage callback).
10827         * threads.c: Added mono_thread_set_manage_callback, and handle
10828         "MonoThread->manage_callback" in build_wait_tids.
10830 2008-03-26  Dick Porter  <dick@ximian.com>
10832         * process.c (process_get_fileversion): Set FileVersionInfo strings
10833         to Empty when the resource doesn't have the particular info.
10834         Fixes bug 355717.
10836 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
10838         * verify.c (mono_method_verify): Proper prefix validation.
10840 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10842         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
10843         itself in a separate argument instead of throwing them. Fixes #373448.
10845         * appdomain.c: Bump corlib version.
10847 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
10849         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
10851 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
10853         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
10854         version macros.
10856 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10858         * generic-sharing.c, class-internals.h: Code for putting
10859         reflection types into the runtime generic context.
10861 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
10863         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
10864         Fixes #340662. 
10867 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
10869         * verify.c (VerifyContext): Added instruction prefix data to the struct.
10871         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10873         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10875         * verify.c (do_cast): Let the result value keep the boxed status.
10877         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10879 2008-03-17  Jb Evain  <jbevain@novell.com>
10881         * reflection.c: when running on a 2.0 runtime, emit
10882         unconditionally the #~ header version as 2.0, and the
10883         CLI header version as 2.5, for symmetry's sake with csc.
10885 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10887         * class.c: Remove the unused cache_interface_offsets stuff.
10889         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10890         profiler.c: Fix warnings.
10892 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10894         * generic-sharing.c, class-internals.h: Support for putting
10895         methods into the runtime generic context.
10897 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10899         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10900         classes which are generic instances of not-yet finished typebuilders. Fixes
10901         #351172.
10903         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10905 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10907         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10909         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10910         field, replace it with a hash table in MonoDynamicImage.
10912         * reflection.c (inflate_mono_method): Access the generic definition object from
10913         image->generic_def_objects instead of imethod->reflection_info.
10915         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10917         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10918         
10919         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10920         function in reflection.c so it is easier to keep in sync with the dynamic image
10921         creation code.
10923         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10924         mono_image_close ().
10926 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10928         * class.c (mono_class_generic_sharing_enabled): Disable generic
10929         sharing for all architectures except AMD64 and x86 to fix build.
10931 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10933         * verify.c: Use the generic definition MonoGenericContext when available.
10934         Remove code for checking generics instance compatibility in favor of
10935         mono_class_is_assignable_from.
10937 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10939         * marshal.c, marshal.h, metadata-internals.h, image.c,
10940         wrapper-types.h: New wrapper for invoking a shared static method
10941         without having to pass the runtime generic context argument.
10943 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10945         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10947 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10949         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10950         
10951         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10952         create a token from a FieldOnTypeBuilderInst.
10953         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10954         (resolve_object): Ditto.
10956         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10957         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10959 2008-03-14  Martin Baulig  <martin@ximian.com>
10961         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10963         * debug-mono-symfile.h
10964         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10965         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10967 2008-03-10  Martin Baulig  <martin@ximian.com>
10969         * debug-mono-symfile.h
10970         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10971         `lexical_block_table_offset'.
10972         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10973         `lexical_blocks'.
10974         (MonoSymbolFile): Added `version'.
10976         * mono-debug.h
10977         (MonoDebugLexicalBlockEntry): Removed.
10978         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10979         `lexical_blocks'.
10981         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10982         blocks here; the debugger now does this internally.
10984 2008-02-27  Martin Baulig  <martin@ximian.com>
10986         * object.c (mono_runtime_exec_main): Call
10987         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10988         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10990 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10992         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10993         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10995 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10997         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10998         ldftn with a virtual method.
11000 2008-03-13  Geoff Norton  <gnorton@novell.com>
11002         * decimal.c:  Only include memory.h if the platform has it.
11004 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
11006         * assembly.c, class.c, metadata-internals.h: make sure public key
11007         tokesns are compared in a case-insensitive way. Also, all
11008         the lookups in the GAC use a lowercase public key token
11009         (gaacutil already does the lowercasing on install). Fixes
11010         bug #369541.
11012 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
11014         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
11015         and return value.
11017 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
11019         * image.c: when someone loads a mscorlib from a file, return the
11020         currently loaded mscorlib (fixes bug #369253).
11022 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11024         * class.c: handle types with no parents by forcing them to have
11025         System.Object as a parent and marking them as broken (this currently
11026         allows the first part of bug #369173 to work as well, likely because
11027         we don't check for typeload exceptions everywhere yet).
11029 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
11031         * class.c: more complete check that types belong to corlib
11032         (fixes second part of bug #369173).
11034 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
11036         * generic-sharing.c:  Including glib.h for the MSVC builds to define
11037           "inline" to "__inline" before including mono-membar.h.
11038           
11039         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
11040           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
11041           MSVC builds.
11043         Contributed under MIT/X11 license.
11045 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11047         * verify.c (do_invoke_method): Remove return type validation.
11049         * verify.c (do_ret): Do return type validation at return site instead of
11050         call site.
11052 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11054         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
11056         * verify.c: Some todos cleaned and improved a few error messages.
11058 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
11060         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
11062 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
11064         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
11065         system types correctly.
11067         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
11068         function.
11070 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11072         * assembly.c (build_assembly_name): Fix a warning.
11074 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
11076         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
11077         the called function takes an object type argument. Fixes storing or
11078         valuetypes across remoting as well as reducing memory usage.
11079         * image.c, metadata-internals.h: remove now unused ldfld_remote and
11080         stfld_remote wrapper caches.
11082 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11084         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
11085         is not found.
11087         * reflection.c (mono_image_register_token): New helper function to save
11088         a token->object mapping.        
11090         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
11091         managed code.
11093         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
11094         one dimension arrays. Fixes #367670.
11095         (mono_reflection_get_type_internal): Ditto.
11097 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
11099         * marshal.c: mono_load_remote_field_new() always returns object.
11100         so use the proper signature (fixes bug #366445).
11102 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11103         
11104         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
11105         add an 'inline_failure' flag instead.
11107 2008-03-04  Mark Probst  <mark.probst@gmail.com>
11109         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
11110         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
11111         contains the location of "this", used for exception handling.
11113 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11115         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
11116         their size on all platforms for perf reasons.
11118 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11120         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
11121         object-internal.h
11123         * object-internal.h: Same.
11125 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11127         * reflection.h: Fix the build I just broke.
11129 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11131         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
11132         Test if a token is valid, this remove explicit usage of 
11133         MonoDynamicImage::tokens from the verifier code.
11135         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
11137         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
11138         instead of direct access to MonoDynamicImage::tokens.
11140 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11142         * verify.c (token_bounds_check): Fix the build I just broke.
11144 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11146         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
11148         * verify.c (verifier_load_method): Fixed the errors message.
11150         * verify.c (mono_method_verify): Fixed a debug message.
11152 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
11154         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
11155         mono-perfcounters.h, class-internals.h: support for predefined
11156         writable counters, query of categories and counters, bugfixes.
11158 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
11160         * verify.c (do_refanytype): Verify the refanytype opcode.
11162         * verify.c (mono_method_verify): Use do_refanytype.
11164 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
11166         * verify.c (do_mkrefany): Verify the mkrefany opcode.
11168         * verify.c (mono_method_verify): Use do_mkrefany.
11170 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
11172         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
11173         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
11174         implementation.
11176 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
11178         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
11179         the type load exception.
11181 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
11183         * verify.c: Added a few FIXME for method signatures
11185         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
11186         of mono_method_get_signature and get vararg call working. Removed unused
11187         checks for return value.
11189         * verify.c (do_refanyval): Verify the refanyval opcode.
11191         * verify.c (mono_method_verify): Implemented verification of arglist and
11192         use do_refanyval.
11194 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
11196         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
11197         vtypes to marshal.c.
11199         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
11200         it works for AOT as well.
11202 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11204         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
11205         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
11206         the system time is adjusted.
11208 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
11210         * icall.c, icall-def.h: use the new time functions (fixes the
11211         non-monotonic behaviour of TickCount).
11213 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
11215         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
11216         it breaks the build.
11217         
11218         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
11219         cattr is not finished yet.
11221 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
11223         * verify.c: Proper token validation for field, method and type.
11225 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
11227         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
11229         * loader.c (method_from_memberref): Generate type load error instead of method missing
11230         if the type is not found.
11232 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
11234         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
11235         some of the conversions caused the generation of a marshal directive exception.
11237 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
11239         verify.c: Report which exception should be thrown by the JIT.
11240         Added a lot of FIXME notes.
11242 2008-02-22  Mark Probst  <mark.probst@gmail.com>
11244         * generic-sharing.c: Runtime generic context slots are not
11245         instantiated on init anymore.  Instead, provide function to do the
11246         instantiating on demand.
11248         * class-internals.h: Added vtable to runtime generic context.
11249         Macros for encoding direct and indirect slot offsets in one
11250         guint32.
11252 2008-02-21  Mark Probst  <mark.probst@gmail.com>
11254         * object.c, generic-sharing.c: Moved some generic sharing code
11255         from object.c to generic-sharing.c.
11257         * generic-sharing.c: Added support for extensible runtime generic
11258         context.
11260         * metadata-internals.h: Two new hash tables in MonoImage for
11261         extensible runtime generic context support.
11263         * domain.c: Unregister generic vtables upon domain unloading.
11265         * image.c: Destroy new hash tables upon image unloading.
11267         * metadata.c: Unregister generic subclasses upon image unloading.
11269         * class-internals.h: New data structure for runtime generic
11270         context template.  New fields in the runtime generic context for
11271         extensible part.
11273         * Makefile.am: Added generic-sharing.c.
11275 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
11277         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
11278         there is a pending loader exception, raise it.
11280         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
11281         same.
11283         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
11284         same.
11286         Fixes #363450.
11288 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
11290         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
11292         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
11293         
11294         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
11295         ref-only requests for compatibility with MS.
11297 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
11299         * reflection.c (mono_custom_attrs_from_method): Don't silently
11300         return an empty list for generic method instances.
11301         (mono_custom_attrs_from_param): Likewise.
11303 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
11304             Raja R Harinath  <harinath@hurrynot.org>
11306         Fix #354757
11307         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
11308         * class.c (mono_class_inflate_generic_method_full): Initialize it
11309         when a fully-open method is instantiated.
11310         * metadata.c (inflated_method_equal, inflated_method_hash): Update
11311         to new field.
11312         * reflection.c (inflate_mono_method): Don't create a temporary context.
11314 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
11316         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
11317         Compute correct value, to prepare for imethod->reflection_info going away.
11319 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
11321         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
11323 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
11325         * verify.c: Implement skip visibility flag.
11327 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
11329         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
11330         which contains an extra field to tell the kind of exception that should be thrown.
11332         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
11334 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
11336         * loader.c (mono_method_get_param_names): Initialize 'klass' after
11337         'method' is updated.
11339 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
11341         * class.c (mono_class_layout_fields): Set class->min_align for classes using
11342         explicit layout as well. Fixes #360375.
11344 2008-02-11  Geoff Norton  <gnorton@novell.com>
11346         * loader.c: Guard and dereference against inflated generic methods
11348 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
11350         * class.c: Include Retargetable spec in assembly name.
11351         * assembly.c: Always include PublicKeyToken spec in assembly name
11352         (with value "null" if assembly is not signed), and include
11353         Retargetable spec.
11354         * icall-def.h: Added icall for Assembly.get_fullname.
11355         * icall.c: Added icall returning the fullname of an assembly.
11357 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
11359         * class.c (mono_class_setup_vtable_general): Add a missing call to
11360         mono_class_setup_methods () which is needed in the AOT case.
11362 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
11364         * verify.c (mono_type_get_stack_name): Added. Return the name for the
11365         stack type of the given MonoType.
11367         * verify.c (verify_type_compatibility_full): Handle the void type.
11369         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
11370         way stack merging works.
11372         * verify.c (store_local): Improved verification message.
11374         * verify.c (do_branch_op): If the merging is invalid, the method
11375         is unverifiable and not invalid. Improved error message.
11377         * verify.c (merge_stacks): Properly merge a boxed valuetype and
11378         a reference type diferent than System.Object. Improved error
11379         message.
11381 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
11383         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
11385         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
11386         type of an enum even if the argument is byref.
11388         * verify.c: Replace all explicit uses of enumtype and enum_basetype
11389         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
11391         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
11393         *verify.c (verify_type_compatibility_full): Make enum types
11394         compatible with their base types.
11396         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
11397         types are compatible for the special case of a boxed valuetype and
11398         System.Object.
11400         * verify.c (verify_stack_type_compatibility): The function
11401         is_compatible_boxed_valuetype was extracted from here.
11403         * verify.c (push_arg): Only set ctx->has_this_store if the method
11404         is not static.
11406         * verify.c (do_ldelem): Fixed a typo in an error message and added
11407         strict check for mixing int32 and native int as the array type
11408         and ldelem type.
11410         * verify.c (merge_stacks): Consider boxed valuetypes in the
11411         compatibility checks.
11413 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
11414         * profiler.h: (MonoGCEvent): Added start-stop the world events.
11416 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11417         *class.c: use_new_interface_vtable_code: renamed the env var to have
11418         a "MONO_" prefix, and fix the logic to enable it by default.
11420 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11421         *class.c:
11422         mono_class_setup_vtable_general: rewrote the way in which interface
11423         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
11424         makes the code more maintainable.
11425         For now the old code is still there, and can be activated setting
11426         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
11428 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
11430         * verify.c: guarded some debug functions around and #ifdef.
11432         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
11434 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11436         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
11437         changes for now since they seem to break too many things.
11439 2008-02-05  Mark Probst  <mark.probst@gmail.com>
11441         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
11442         mono_marshal_find_nonzero_bit_offset): Added macro and function
11443         for finding the byte- and bit-offset of a bitfield within a
11444         struct.
11446 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
11448         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
11449         (mono_marshal_get_struct_to_ptr): Ditto.
11451         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
11452         cctor_signature.
11454 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
11456         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
11457         between methods for non-corlib types.
11459 2008-02-02  Geoff Norton  <gnorton@novell.com>
11461         * loader.c (mono_method_get_param_names): Populate the parameter name for 
11462         generic parameters as well. (Fixes #342536)
11464 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
11466         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
11468         * verify.c (do_invoke_method): Fix for calling with byref structs.
11470         * verify.c (do_cast): push a boxed value type based on the type token and not
11471         the type of stack.
11473 2008-01-31  William Holmes  <billholmes54@gmail.com>
11475         * process.c (process_module_string_read): Check the size returned form 
11476           VerQueryValue to avoid out of memory exception. 
11478 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
11480         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11481         Handle properly modules which are not in the moduleref table. Fixes
11482         #356938.
11484 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
11486         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
11487         the dynamic case which is now in managed code.
11488         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
11490         * marshal.c (mono_string_to_bstr): Fix a warning.
11491         (init_com_provider_ms): Ditto.
11493         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
11495         * exception.c (mono_get_exception_out_of_memory): New helper function.
11497 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
11499         * marshal.c: Add support for BSTR marshalling
11500         using other COM systems.
11502         Code is contributed under MIT/X11 license.
11504 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11506         * object.c (mono_runtime_invoke_array): reverted previous
11507         commit as it breaks the build.
11509 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11511         * object.c (mono_runtime_invoke_array): Verify arguments for
11512         invalid types. Fixes #348522.
11514 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11516         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
11517         non-final virtual calls using call. 
11519         * verify.c (do_invoke): fixed some TODOs.
11521         * verify.c (push_arg): set has_this_store for "ldarga 0".
11523 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
11525         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
11526         which belong to an inflated class. Fixes #356531.
11528 2008-01-26  Robert Jordan  <robertj@gmx.net>
11530         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
11531         which resort to FindFirstFile when a certain error condition
11532         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
11533         Code is contributed under MIT/X11 license.
11535 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
11537         * marshal.c (emit_marshal_string): Fix out string marshalling
11538         to use specified encoding. Fixes #323900.
11540         Code is contributed under MIT/X11 license.
11542 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
11544         * class.c (mono_class_inflate_generic_method_full): Don't modify
11545         iresult->context after cache check.
11547 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
11549         * class.c (mono_class_inflate_generic_method_full): Change the
11550         struct assignments to memcpy for better visibility and add some comments.
11552 2008-01-23  Dick Porter  <dick@ximian.com>
11554         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
11555         procedure, and make it work on windows.
11557 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
11559         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
11560         a MonoReflectionTypeBuilder since it is always of that type.
11562         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
11564         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
11566         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
11567         
11568         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
11570         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
11572         * reflection.c (mono_reflection_create_runtime_class): Remove already created
11573         instantiations from the type cache.
11575 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11577         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
11579         * verify.c (do_unbox_value): push a controled mutability managed pointer.
11581 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11583         * verify.c (do_ldstr): added, verifies if the #US token is valid.
11585         * verify.c (mono_method_verify): removed old TODO
11587 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11589         * verify.c (do_newobj): add visibility check.
11591 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11593         * verify.c (do_load_function_ptr): add visibility check.
11595 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
11596         *class.c:
11597         mono_generic_class_get_class: hook profiler events.
11598         mono_field_get_offset: added to support heap-shot in the new profiler.
11599         *class.h: exported mono_field_get_offset.
11600         * reflection.c:
11601         mono_reflection_setup_internal_class: hook profiler events.
11603 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
11605         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
11606         argument here too and use it to avoid checking for pending exceptions if 
11607         possible.
11609 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
11611         * assembly.c (build_assembly_name): add arg for passing the assembly
11612         flags. Do not consider a PublicKey with value "null" valid.
11613         (mono_assembly_name_parse_full): added boolean argument that will be
11614         set if the assembly name contains a PublicKeyToken spec. Added support
11615         for the Retargetable spec for which only Yes or No are allowed as valid
11616         value. Consider assembly name invalid if Retargetable spec is set, but
11617         either version, culture or public key (token) are not specified.
11618         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
11619         with implementation in assembly.c.
11620         * icall.c (fill_reflection_assembly_name): also copy assembly flags
11621         from MonoAssemblyName.
11622         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
11623         introduced argument for mono_assembly_name_parse_full to know if the
11624         assembly name has a PublicKeyToken spec, and if it has instruct
11625         fill_reflection_assembly_name to use default value for keyToken (if
11626         PublicKeyToken is null).
11628 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11630         * verify.c (mono_method_verify): fixed ovf ops with
11631         float values. They are unverifiable now.
11633 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11635         * class.c (set_failure_from_loader_error): add BadImageException to the
11636         list of exceptions that can cause a type to fail to load.
11638         * class.c (mono_class_get_exception_for_failure): same.
11640 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
11642         * verify.c (in_any_exception_block): added, check if offset
11643         is part of any exception handling clause.
11645         * verify.c (get_stack_type): added VAR and MVAR types.
11647         * verify.c (do_stobj): better error messages.
11649         * verify.c (do_cpobj): added, check cpobj.
11651         * verify.c (do_initobj): added, check initobj.
11653         * verify.c (do_sizeof): added, check sizeof.
11655         * verify.c (do_localloc): added, check localloc.
11657         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
11659 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
11661         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
11662         save_lmf/restore_lmf opcodes.
11664         * threads.c (mono_threads_install_notify_pending_exc): New function to
11665         install a callback notifying the JIT there is a pending exception on a thread.
11666         (mono_thread_request_interruption): Call the new callback.
11667         (mono_thread_get_and_clear_pending_exception): New function to return the
11668         exception pending on a thread.
11670         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
11671         to turn off checking for pending exceptions.
11672         (mono_marshal_get_native_wrapper): Ditto.
11674 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11676         * threads-types.h: Get rid of the unnecessary extern declarations.
11678 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
11680         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
11681         return field from parent class if not private.
11682         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
11683         returns fields from parent class if they are not private.
11684         (method_nonpublic): added function to determine if a given method
11685         should be considered non-public. Returns false for private methods
11686         on parent class, and internal methods from parent on the 1.0 profile.
11687         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
11688         use method_nonpublic function to determine whether method should be
11689         returned.
11690         (property_accessor_public): use newly introduced method_nonpublic
11691         function to determine whether accessor is non-public. 
11692         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
11693         event from parent class if not private. Only return static event if
11694         Static flag is set, and only return static event from parent class if
11695         FlattenHierarchy flag is set.
11696         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
11697         include non-private events from parent class.
11699 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11701         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
11702         warning.
11704 2008-01-16  Wade Berrier <wberrier@novell.com>
11706         * security.c: Add assembly.h header to appease some warnings
11708 2008-01-16  Dick Porter  <dick@ximian.com>
11710         * process.c (process_module_string_read): Remove trailing null
11711         when saving string.
11713 2008-01-16  Mark Probst  <mark.probst@gmail.com>
11715         * class-internals.h: A new data structure describing the layout of
11716         a runtime generic context (MonoRuntimeGenericContextTemplate).
11718         * metadata-internals.h: Added a hash table to MonoDomain that maps
11719         from open generic classes to their runtime generic context
11720         templates.
11722         * object.c: Building of the runtime generic context, including
11723         proper handling of generic type arguments of superclasses.
11724         Building of the runtime generic context according to the template.
11726 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
11728         * class.c (mono_class_setup_fields): Set field.count for generic instances.
11729         Fixes #350856.
11731         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
11732         mono_portability_find_file (). Fixes #325466.
11733         (mono_image_get_public_key): Fix a warning.
11735 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
11737         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
11738         Fixes #353550.
11739         (mono_class_from_name_case): Ditto.
11741 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
11743         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
11744           common storage for the tables used in the System/NumberFormatter class.
11746 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
11748         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
11750 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
11752         * verify.c (get_boxable_mono_type): check if the token is valid.
11754         * verify.c (set_stack_value): changed to add an error if an
11755         invalid type is set on stack. Changed all callers due to signature change.
11757         * verify.c (do_stobj): implement stobj validation.
11759 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11761         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
11762         set container->is_method, it was set earlier.
11764         * metadata.c (type_in_image): Handle MVARs which belong to not finished
11765         generic methods.
11767         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11768         is_method of the generic container to TRUE for methods.
11770 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11772         * metadata.c (type_in_image): Handle type parameters properly.
11774         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
11775         memory ownership of this structure.
11777 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
11779         * verify.c (get_boxable_mono_type): make typedref types been just
11780         unverifiable. check for void type.
11782         * verify.c (do_unbox_any): added, verify opcode unbox.any.
11784         * verify.c (do_load_function_ptr): accept method spec tokens.
11786 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11788         * marshal.c (mono_class_native_size): Always set *align even if this is called
11789         recursively.
11791 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
11793         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
11794         out-of-date.
11796 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
11798         * verify.c: removed some old unused tables. A huge bunch of small fixes
11799         to things found while testing the verifier with mono basic.
11801         * verify.c (dump_stack_value): dump null literal flag to.
11803         * verify.c (verify_type_compatibility_full): fix comparison
11804         for types that have a generic super type.
11806         * verify.c (verify_stack_type_compatibility): fix compatibility
11807         between null literals and reference types. fix compatibility between
11808         boxed valuetypes and object. fix corner case test for enums.
11810         * verify.c (do_cmp_op): proper verification of cgt.un in case
11811         of reference types.
11813         * verify.c (do_invoke_method): fix error message.
11815         * verify.c (do_store_indirect
11817         * verify.c (check_is_valid_type_for_field_ops): proper verification
11818         of managed pointers to valuetypes and boxed valuetypes. proper verification
11819         of null literals.
11821         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
11822         allow token to be a reference type.
11824         * verify.c (do_cast): proper handling of boxes valuetypes.
11826         * verify.c (do_stelem): proper handling of storing a boxed valuetype
11827         in object[].
11829         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
11830         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
11831         fixed the decoding of unbox_any
11833 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11835         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
11837 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
11839         * verify.c (do_newobj): do delegate verification.
11841         * verify.c (verify_delegate_compatibility): perform delegate
11842         verification.
11844         * verify.c (verify_ldftn_delegate): perform tests related to
11845         ldftn delegates.
11847         * verify.c (mono_delegate_signature_equal): perform the
11848         slightly diferent signature comparison required by delegates.
11850         * metadata.c (mono_metadata_type_equal_full): added and exported
11851         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
11852         allows signature only comparison.
11854         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
11855         as MONO_INTERNAL.
11857 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
11859         * verify.c: added a bunch of stack_slot_* functions to
11860         make access to stack slot type easier. This is required to
11861         allow optional flags, like null literal, boxed value and
11862         this pointer.
11863         All access paths to IlStackDesc::stype have been changed 
11864         to use these new funcions.
11865         Removed a bunch of unused functions and cleared all warnings.
11866         This patch introduces the usage of the this pointer and 
11867         boxed value flags.
11869 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
11871         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11873 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11875         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11876         match managed version.
11878         * appdomain.c: Bump corlib version.
11879         
11880         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11881         argument.
11883 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11885         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11886         Set public key token to zero-length byte array if assembly is not
11887         strongnamed.
11889 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11891         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11892         writing a vtype array elem.
11894 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11896         * assembly.c (build_assembly_name): return FALSE if length of token is
11897         not 16 (if not "null").
11898         (mono_assembly_name_parse_full): return FALSE if value of version,
11899         culture, token or key is 0.
11900         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11901         specify whether public key and public key token must be set to default
11902         value (zero-length byte array) if not available. Set versioncompat to
11903         SameMachine. If public key is available or the default is set, then
11904         set PublicKey flag.
11905         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11906         is available, use empty byte array as default value. On the 2.0
11907         profile, use default value for public key token if not set.
11908         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11909         profile, use default value for public key if not set. On the 2.0
11910         profile, use default value for public key token if not set.
11911         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11912         default values for public key and public key token.
11914 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11916         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11917         field to keep it in synch with the managed object.
11919         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11920         delegates. Fixes #351520.
11922         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11923         contains defined memory.
11924         
11925         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11927         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11928         
11929         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11930         of the GC data structures.
11932         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11934         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11935         
11936         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11937         barrier.
11938         (mono_array_clone_in_domain): Ditto.
11939         (mono_array_clone_in_domain): Ditto.
11941         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11942         (cache_culture): Use a write barrier.
11944         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11945         (ves_icall_get_property_info): Ditto.
11947         * object.h (MONO_STRUCT_SETREF): New macro.
11949         * class-internals.h (MonoStats): Add some GC statistics.
11951         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11953 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11955         * exception.c (mono_exception_from_name_two_strings):
11956         Break from loop after method is found.
11958 2008-01-04  Dick Porter  <dick@ximian.com>
11960         * process.c (process_module_string_read): Rename variable to
11961         reflect correct usage, after fixing bug 345972.
11963 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11965         * verify.c (mono_type_create_fnptr_from_mono_method): 
11966         created a MonoType function pointer instance to be used during
11967         verification. The verifier releases this memory at end.
11969         * verify.c (mono_method_is_constructor): extracted repeated
11970         checks for constructor into a single class.
11972         * verify.c (do_push_field): use new extracted method
11973         for constructor check.
11975         * verify.c (do_newobj): same.
11977         * verify.c (do_ldftn): renamed to do_load_function_ptr
11978         and make it verify ldvirtftn too.
11980         * verify.c (mono_method_verify: proper verification
11981         of ldvirtftn. release created MonoMethod instances.
11983 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11985         * verify.c (token_bounds_check): added.
11987         * verify.c (do_ldftn): added.
11989         * verify.c (mono_method_verify): proper verificartion of ldftn.
11991 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11993         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11994         than the table row count. It's the resposibility of the caller to
11995         make the bounds check and raise the correct error.
11997         * metadata.c (mono_metadata_decode_row_col): Same.
11999         * loader.c (mono_get_method_from_token): perform bounds check
12000         on token for methoddef table.
12002 2007-12-29  Miguel de Icaza  <miguel@novell.com>
12004         * icall.c
12005         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
12006         assert into a negative result, the managed code already coped with
12007         that.
12009         Some folks on Windows reported this error. 
12011 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
12013         * appdomain.c: Bump corlib version.
12014         * icall.c:
12015         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
12016         CultureInfo.CreateCulture to create CultureInfo for name.
12017         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
12018         create CultureInfo for name. Fixes bug #347174.
12020 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12022         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
12023         flags.
12025         * verify.c (is_valid_branch_instruction): allow branching to the
12026         first instruction of the protected block.
12028         * verify.c (is_valid_cmp_branch_instruction): same.
12030         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
12031         avoid double initialization.
12033         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
12034         detect which cases the eval stack should just be copied.
12036         * verify.c (mono_method_verify): check if the eval stack
12037         is empty when entering a protected block.
12039 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12041         * verify.c: added is_clause_in_range, is_clause_inside_range,
12042         is_clause_nested and verify_clause_relationship. They perform
12043         the verifications stated in P1 12.4.2.7.
12045         * verify.c (mono_method_verify): remove some unused variables,
12046         add the new exception clause checks, add instruction border
12047         checks for protected block start/end, improved some error 
12048         messages and fixed a bug in the way invalid instruction access
12049         is detected.
12051 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
12053         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
12054         from GC 7.0 if available.
12056         * object.c: Remove an unused define.
12057         
12058         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
12060         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
12062         * null-gc.c (mono_gc_make_descr_for_array): Implement.
12064         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
12066         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
12067         to take the same arguments as the other make_descr functions.
12069         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
12071         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
12072         directly.
12074         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
12075         mini.c.
12077         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
12078         call to boehm-gc.c.
12080         * boehm-gc.c (mono_gc_register_root): Fix a warning.
12082         * null-gc.c (mono_gc_register_root): Fix a warning.
12084         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
12086         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
12087         (mono_gc_base_init): Call GC_init ().
12089         * null-gc.c: Define mono_gc_register_root () as a no-op.
12091         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
12093 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
12095         * verify.c: add prototype for merge_stacks at top
12097         * verify.c (do_switch): added.
12099         * verify.c (merge_stacks): on some cases the stack merging
12100         was not happening properly. Unequal stack sizes at merge
12101         points should be invalid.
12103         * verify.c (mono_method_verify): added more debug info on stack state.
12104         verify switch properly.
12106 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
12108         * method-builder.h: New file, moved the mono_mb_ declarations here from 
12109         marshal.h.
12111         * boehm-gc.c marshal.c: Include method-builder.h.
12113         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
12115         * marshal.c: Remove some code which is now in method-builder.c.
12117 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
12119         * method-builder.c: New file, extraction of the method builder functionality 
12120         from marshal.c.
12122         * marshal.c: Move the mb functions into method-builder.c.
12124         * marshal.h marshal.c: Export some mono_mb_... functions.
12126         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
12128         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
12129         the caller.
12131         * class.c (mono_class_get_full): Check the token type in the dynamic case.
12133         * loader.c (mono_field_from_token): Ditto.      
12135         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
12136         type as well.
12137         
12138         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
12139         Fixes #342565.
12141         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
12142         a helper function for setting it.
12144         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
12146         
12147         * assembly.c: Significally simplify code now that referenced assemblies are 
12148         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
12150         * threads.h: Don't include  the internal threads-types.h header file. Fixes
12151         #349952.
12153 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
12155         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
12156         instructions that were target of branches or are at protected block boundaries.
12158         * verify.c (in_same_block): handle filter clauses.
12160         * verify.c (is_valid_branch_instruction): added. checks the target of
12161         instructions br or brtrue/false.
12163         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
12164         binary branch instructions such as beq and bge.
12166         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
12167         and made it pin the instruction as been part of the exception block.
12169         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
12170         of in_same_block.
12172         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
12173         of in_same_block.
12175         * verify.c (do_ret): ret from a protected block is unverifiable and
12176         not invalid.
12178         * verify.c (do_static_branch): verify br and br.s instructions.
12180         * verify.c (merge_stacks): add extra param to support detection
12181         of branches in the middle of instructions.
12182         
12183         * verify.c (mono_method_verify): verify branches and exception blocks
12184         that target the middle of instructions. Proper verification of br and br.s.
12186 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
12188         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
12189         skip_visibility field.
12190         (reflection_methodbuilder_from_dynamic_method): Ditto.
12192         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
12193         registrations. Fixes #348193.
12195         * threads.h: Move the internal mono_thread_get_pending_exception () to
12196         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
12198 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
12200         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
12201         icall registration. Fixes #348193.
12203         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
12204         for corlib classes into object. Fixes #349621.
12206 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
12208         * icall.c (property_accessor_nonpublic): new function to determine
12209         whether an accessor allows a property to be considered non-public.
12210         Returns false for private accessor(s) from parent class, and internal
12211         accessor(s) from parent on 2.0 profile (and higher).
12212         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
12213         to determine whether property should be included if NonPublic flag
12214         is set. Fixes bug #349078.
12216 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
12218         * verify.c (init_stack_with_value): added.
12220         * verify.c (mono_method_verify): extracted common
12221         code for exception initialization into init_stack_with_value.
12223         * verify.c (mono_method_verify): initialize the exception
12224         for handler clauses as well.
12226         * verify.c (mono_method_verify): fix the exception clause
12227         ordering rules, it should use handler end offset and not
12228         start offset.
12230 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
12232         * rawbuffer.c: remove useless warning.
12234 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
12236         * threads.h, threads-types.h: move functions to the correct header
12237         (fixes bug#349952).
12239 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12241         * verify.c (mono_method_verify): proper verification
12242         of exception handling clauses ranges and fallthru in
12243         and out of protected blocks.
12245 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12247         * verify.c (mono_method_verify): fixed compilation issue.
12249 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12251         * verify.c (mono_method_verify): a printf slipped in, changed
12252         to use verifier debug macro.
12254 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
12256         * verify.c (is_correct_leave): check for filter clauses.
12258         * verify.c (do_filter): added.
12260         * verify.c (mono_method_verify): property verification of leave.
12263 2007-12-18  Mark Probst  <mark.probst@gmail.com>
12265         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
12266         Win32 build, until we figure out how to do the proper thing on
12267         Win32.
12269 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
12271         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
12272         by the previous patch.
12273         
12274         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
12275         the assembly resolve handler for refonly assemblies.
12277 2007-12-17  Mark Probst  <mark.probst@gmail.com>
12279         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
12280         Make sure only one thread is allowed to commence shutdown, and
12281         don't allow new threads to be started once shutdown is in
12282         progress.
12284 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
12286         * verify.c (is_correct_endfilter): added.
12288         * verify.c (is_unverifiable_endfilter): added.
12290         * verify.c (do_endfilter): added.
12292         * verify.c (mono_method_verify): property verification of endfilter
12293         and fixed a corner case or endfinally.
12295 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
12297         * verify.h: new flags to support fail fast of unverifiable code and
12298         do non-strict verification. Non-strict verification is required to
12299         have MS runtime compatibility. There are a huge amount of unverifiable
12300         code that it accepts as verifiable. The strict mode verifies the code
12301         as the specs says.
12302         Non-strict mode will be required in cases where code needs to be
12303         accepted as verifiable but fails under strict mode.
12305         * pedump.c: added support to fail fast and non-strict verification.
12307         * verify.c: added support for both fail fast and non-strict verification.
12309 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
12311         * verify.c (is_correct_endfinally): added.
12313         * verify.c (mono_method_verify): property verification of endfinally.
12315 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
12317         * verify.c (in_any_block): check for filter clauses.
12319         * verify.c (is_correct_rethrow): added.
12321         * verify.c (mono_method_verify): property verification of rethrow.
12323         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
12325 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
12327         * verify.c (do_throw): added.
12329         * verify.c (mono_method_verify): property verification of throw
12331 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
12333         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
12334         assemblies. Fixes #346425.
12336 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
12338         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
12339         FieldBuilders.
12341         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
12343         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
12344         prevent asserts when this is called with a token which might not be valid.
12346         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
12347         lookup_dynamic_token_class with valid_token == FALSE.
12349         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
12351         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
12353         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12354         
12355 2007-12-10  Mark Probst  <mark.probst@gmail.com>
12357         * gc.c: Don't delay threadpool thread finalization unless Mono is
12358         shutting down.
12360 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
12362         * threads.c: turn an assert into a non-fatal warning.
12364 2007-12-09  Robert Jordan  <robertj@gmx.net>
12366         * icall.c (GetVirtualMethod): Add missing argument validation.
12368 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12370         * verify.c (do_cast): added.
12372         * verify.c (mono_method_verify): property verification of castclass and isinst.
12375 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12377         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
12379         * verify.c (do_stelem): added.
12381         * verify.c (mono_method_verify): property verification of stelem.X.
12383 2007-12-07  Mark Probst  <mark.probst@gmail.com>
12385         * class.c, class-internals.h: Introduce an environment variable
12386         (MONO_GENERIC_SHARING) through which the extent of generic code
12387         sharing can be controlled (share all classes, share only corlib
12388         classes, or share nothing).
12390         * object.c: Only create runtime generic context for classes for
12391         which sharing is enabled.
12393 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12395         * verify.c (do_ldelem): refactor it to work with ldelem.any.
12397         * verify.c (mono_method_verify): property verification of ldelem.any.
12399 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12401         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
12402         added ldelem.X opcodes.
12404         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
12406         * verify.c: proper verification of ldelem.X 
12408 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
12410         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
12412 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12414         * verify.c (mono_method_verify): null literal requires special handling,
12415         the value pushed on stack need to be flagged as so.
12417         * verify.c (do_ldelema): Verify ldelema properly.
12419 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12421         * verify.c: Verify ldlen properly.
12423 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
12425         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
12426         to the target object's type. Fixes #346160.
12428 2007-12-05  Dick Porter  <dick@ximian.com>
12430         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
12431         Solaris needs the same workaround as BSD-derived systems.  Fixes
12432         bug 323524, patch by Burkhard Linke
12433         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
12435 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
12437         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
12438         handle to use when error dialog is shown; otherwise, update mask
12439         to show no error dialog when an error occurs.
12441 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
12443         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
12445         * class.c (mono_class_get_field_default_value): New helper function to initialize
12446         field->def_type and field->data.
12448 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
12450         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
12451         the general one.
12453         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
12455         * marshal.c: Avoid depending on delegate->method_info being set.
12457         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
12458         
12459         * object.c (mono_delegate_ctor): Set delegate->method.
12461         * object-internals.h (struct _MonoDelegate): Add 'method' field.
12463         * appdomain.c: Bump corlib version.
12465 2007-11-27  Raja R Harinath  <harinath@gmail.com>
12467         * metadata.c (mono_generic_inst_equal_full): Short-circuit
12468         equality check if we're comparing canonicalized MonoGenericInsts.
12470 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
12472         * class.c (generic_array_methods): Call mono_class_setup_methods () before
12473         accessing class->methods.
12475 2007-11-22  Dick Porter  <dick@ximian.com>
12477         * threads.c: Ensure that the synch_cs is set before trying to use
12478         it.
12480 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
12482         * profiler.c: r89126 broke the statistial profiler, unbreak.
12484 2007-11-22  Martin Baulig  <martin@ximian.com>
12486         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
12488         * mono-debug.c
12489         (mono_debug_debugger_version): Bump to 3.
12490         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
12491         -> mono_debugger_class_initialized().
12493         * mono-debug-debugger.c
12494         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
12496         * class.c
12497         (mono_debugger_start_class_init_func): Removed.
12498         (mono_debugger_class_loaded_methods_func): Added.
12499         (mono_class_setup_methods): Call it here.
12501 2007-11-22  Martin Baulig  <martin@ximian.com>
12503         * mono-debug.c
12504         (mono_debug_add_delegate_trampoline): New public method.
12505         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
12507         * mono-debug.h
12508         (MonoSymbolTable): Added `global_data_table'.
12509         (MonoDebuggerTypeKind): Removed.
12511 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
12513         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
12514         these methods.
12516         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12517         
12518 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
12520         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
12522 2007-11-20  Martin Baulig  <martin@ximian.com>
12524         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
12526         * mono-debug-debugger.c
12527         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
12528         (mono_debugger_remove_breakpoint): Likewise.
12529         (mono_debugger_check_breakpoints): Likewise.
12530         (mono_debugger_register_class_init_callback): New public method.
12531         (mono_debugger_remove_class_init_callback): Likewise.
12532         (mono_debugger_add_type): Likewise.
12534         * mono-debug-debugger.h
12535         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
12537 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
12539         * class.c: more interface implementations needed for the
12540         array enumerator (fixes bug #341112).
12542 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
12544         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
12545         fix ParamName of ArgumentNullExceptions.
12547 2007-11-17  Miguel de Icaza  <miguel@novell.com>
12549         * reflection.c (mono_reflection_encode_sighelper): Generate the
12550         modopts and modreqs.   I have a useless test that crashes monodis,
12551         but that shows the code working.
12553 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
12555         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
12556         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
12558 2007-11-15  Dick Porter  <dick@ximian.com>
12560         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
12561         When joining a thread, it's the thread that's calling Join that
12562         gets WaitSleepJoin state not the target.  Fixes the standalone
12563         test case in bug 334740, and hopefully the whole bug too.
12565 2007-11-15  Dick Porter  <dick@ximian.com>
12567         * process.c: Read file version info from the files pointed at by
12568         process modules, not the current process.  Fixes bug 315969.
12570         Use windows typedef names in some places to fix warnings on the
12571         windows build.
12573 2007-11-15  Mark Probst  <mark.probst@gmail.com>
12575         * image.c, metadata-internals.h: Added a generic_class_cache hash
12576         to MonoImage for looking up generic classes when sharing generics.
12578 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
12580         * sgen-gc.c: warning cleanups.
12582 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
12584         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
12585         inherited properties.
12587 2007-11-14  Mark Probst  <mark.probst@gmail.com>
12589         * object.c, class-internals.h: Added more information to the
12590         runtime generic context.
12592 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
12594         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
12595         instead of just the target method. Generalize the abstract method handling to
12596         handle any non-static method.
12598         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12599         mono_marshal_get_delegate_invoke () signature change.
12601 2007-11-13  Mark Probst  <mark.probst@gmail.com>
12603         * class.c, class-internals.h: Made
12604         mono_type_get_basic_type_from_generic () public.  Fixed member
12605         access check for shared generics.
12607         * loader.c: Don't insert field into field cache if it's part of a
12608         non-inflated generic class.
12610         * domain.c, domain-internals.h: The generic sharing context is now
12611         part of the jit info data structure.  Added two accessor
12612         functions.
12614 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
12616         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
12617         the array Get/Set/Address methods, since the JIT inlines them.
12619         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
12621         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
12622         (mono_image_init): Initialize runtime_invoke_direct_cache.      
12624         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12625         mono_marshal_get_delegate_invoke signature change.
12627         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
12628         an additional argument. Add support for invoking abstract methods.
12630         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
12632         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
12634 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12636         * class.c: Do field layout for open generic classes as well.
12638 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12640         * gc.c, gc-internal.h: Don't finalize threadpool threads with
12641         other objects, because the threadpool is still around.  Put them
12642         in a list instead and after finalizing all other objects in the
12643         root domain shut down the thread pool and then finalize the
12644         threads.  Fixes bug #337383.
12646         * threads.c, thread-types.h: New mono_thread_create_internal()
12647         function for marking a thread with the threadpool flag before it
12648         started.  Set synch_cs to NULL after freeing it.
12650         * threadpool.c: Mark threadpool threads before they start.
12652 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
12654         * reflection.h, reflection.c: don't export random functions
12655         and lazy load dbnull and missing objects.
12657 2007-11-07  Jonathan Chambers <joncham@gmail.com>
12659         * class.c: Initialize COM types if COM interfaces
12660         are present (not just COM classes).
12661         
12662         Code is contributed under MIT/X11 license.
12664 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12665         * reflection.c:
12666         create_dynamic_mono_image: hook module profiler events (dynamic case).
12667         mono_image_basic_init: hook assembly profiler events (dynamic case).
12669 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12670         * profiler.c:
12671         simple_appdomain_unload: completely terminate the profiler
12672         instead of only processing the statistical samples.
12673         simple_shutdown: make sure this is really called exactly once,
12674         even in multithreaded applications, and always listen to
12675         appdomain events.
12676         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
12677         here, the "[un]load" functions will do it.
12678         Fixes bugs #333791 and #325261.
12680 2007-11-07  Geoff Norton  <gnorton@novell.com>
12682         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
12683         rather than depend on __APPLE__.
12685 2007-11-07  Mark Probst  <mark.probst@gmail.com>
12687         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
12689 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
12691         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
12692         UTF16 MonoString. Fix the crash from bug #335488
12694 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
12696         * marshal.c: Correct (for non-Win32 OS) length != size in 
12697         mono_string_from_bstr. Fix #339530.
12699 2007-11-06  Geoff Norton  <gnorton@novell.com>
12701         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
12702         to succeed
12704 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
12706         * process.c: Added run-time GetProcessId API detection for Windows.
12708 2007-11-04  Miguel de Icaza  <miguel@novell.com>
12710         * reflection.c  (mono_param_get_objects): If a parameter has the
12711         attribute [System.Runtime.InteropServices.Optional] we should
12712         set the DefaultValue of the ParameterInfo to be
12713         System.Reflection.Missing instead of DBNull.
12715         See bug #339013.
12717         (mono_get_reflection_missing_object): New method,
12718         returns the System.Reflection.Missing.Value singleton instance.
12720 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12722         * culture-info-table.h : regenerated.
12724 2007-11-02  Jonathan Chambers <joncham@gmail.com>
12726         * icall.c: Use GetEnvironmentStrings on windows
12727         so we are using the same environment block as 
12728         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
12729         #333740.
12730         
12731         Code is contributed under MIT/X11 license.
12733 2007-10-31  Martin Baulig  <martin@ximian.com>
12735         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
12737         * mono-debug-debugger.h
12738         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
12740 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
12742         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
12743         classes.
12745 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
12747         * culture-info-table.h : regenerated.
12749 2007-10-30  Robert Jordan  <robertj@gmx.net>
12751         * icall-def.h, icall.c:
12752         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
12754         Code is contributed under MIT/X11 license.
12756 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12758         * class.c (mono_class_setup_vtable): Find the inflated methods in the
12759         inflated class instead of inflating them again.
12760         
12761         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
12762         dynamic case.
12764         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
12765         Call setup_supertypes () after klass->parent is set.
12766         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
12768         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
12769         for inflated instances of not yet created dynamic generic classes.
12770         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
12771         times from inflated_method.
12772         (methodbuilder_to_mono_method): Ditto.
12774 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
12776         * gc.c: code cleanup and removed old untested option of not creating the
12777         finalizer thread.
12779 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12781         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
12782         creating a jump trampoline for dynamic methods.
12784 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
12786         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
12787         generic TypeBuilders when called from another method of the same type (bug #335131).
12790 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
12792         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
12793         doesn't seem to work perfectly.
12794         
12795         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
12796         called multiple times.
12797         (methodbuilder_to_mono_method): Ditto.
12798         (resolve_object): Inflate FieldBuilder's.
12800 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12802         * string-icalls.c, string-icalls.h, appdomain.c: patch from
12803         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
12804         RemoveEmptyEntries in the string.Split implementation (bug #322375).
12806 2007-10-26  Dick Porter  <dick@ximian.com>
12808         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
12809         Thread initialisation changes
12811 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
12813         * verify.c: fix compatibility check between arrays and System.Array
12815 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
12817         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
12818         too. Fixes #336999.
12820 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12822         * object.c (mono_value_box): Use typed allocation here.
12824 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12826         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
12827         trampoline instead of compiling the method right away.
12829         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
12831 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
12833         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
12834         related fields for dynamic classes. Fixes #334493.
12836 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
12838         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
12839         
12840         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
12842         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
12843         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
12845         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
12847         * reflection.c (create_generic_typespec): Initialize klass->generic_container
12848         if needed.
12849         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
12851 2007-10-18  Jonathan Chambers <joncham@gmail.com>
12853         * marshal.c: Use correct key when removing item
12854         from ccw_hash.
12855         
12856         Code is contributed under MIT/X11 license.
12858 2007-10-17  William Holmes  <billholmes54@gmail.com>
12860         *marshal.c: Adding a case to marshal booleans to U1
12862         Code is contributed under MIT/X11 license.
12864 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
12866         * class.c (mono_class_from_name): Search the modules compromising dynamic
12867         assemblies. Fixes #331601.
12869 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
12871         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12872         exception if the type name contains an assembly component. Fixes #334203.
12874         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12875         modules inside dynamic assemblies. Fixes #334200.
12876         
12877         * reflection.c: Set image->public_key and image->public_key_length;
12879         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12880         fields.
12882         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12883         
12884 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12886         * metadata.c: Implemented correct comparing of generic classes.
12887         An inflated generic class can be equal to a non-inflated one if it
12888         is inflated with generic type variables as type arguments.  Fixes
12889         bug #333798.
12891 2007-10-15  Dick Porter  <dick@ximian.com>
12893         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12894         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12895         81646.
12897         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12898         instead of a monitor lock.  This means that monitor_try_enter and
12899         co can set the thread state safely.
12900         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12901         thread_interrupt_requested, so interrupt actually works.
12903         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12904         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12905         state accessor function
12907 2007-10-15  Martin Baulig  <martin@ximian.com>
12909         * mono-debug.h
12910         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12911         the debugger with the current runtime.
12913 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12915         * object.c, object-internals.h: added the ability to set a single
12916         trampoline for all the slots in a vtable.
12918 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12920         * marshal.c: deal with a possible race condition during multicast
12921         delegate invocation.
12923 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12925         * class.c: ensure value type methods don't have the synchronized
12926         flag set.
12928 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12930         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12931         breaks the build.
12933 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12935         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12936         to take an options parameter so that empty entries can be removed during
12937         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12939 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12941         * marshal.c: make sure we don't store the signature from a dynamic
12942         method into the runtime invoke cache (bug #327189).
12944 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12946         * marshal.c: make sure the wrapper methods are properly initialized.
12948 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12950         * metadata.c, metadata-internals.h: Generalized
12951         mono_type_stack_size() to mono_type_stack_size_internal() which
12952         takes an additional argument specifying whether it allows open
12953         types.
12955 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12957         * verify.c (do_invoke_method): handle typedbyref params
12958         correctly and check for unverifiable return values.
12960         * verify.c (do_newobj): fix a warning.
12962 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12964         * verify.c: don't tread typedbyref as allways unverifable,
12965         so uses, like (ld/st)loc.0 are valid. verify for the cases
12966         that it matters, like boxing related operations.
12968 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12970         * verify.c: add verification of the newobj opcode. verification
12971         of delegate instantation still missing due ldftn and virldftn not
12972         pushing the function type on stack
12974 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12976         * class-internals.h: Runtime generic context data structure
12977         definition.
12979         * object.c: Initialization of runtime generic context at runtime
12980         vtable creation time.
12982 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12983         * class.c (mono_class_create_from_typedef,
12984         mono_class_from_generic_parameter, mono_ptr_class_get,
12985         mono_fnptr_class_get, mono_bounded_array_class_get)
12986         * domain.c (mono_domain_create, mono_domain_free)
12987         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12988         * image.c (do_mono_image_load, mono_image_close):
12989         Hooked up load-unload profiler events.
12991 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12993         * domain.c: track statistics about the actual amount of native code
12994         allocated.
12996 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12998         * class.c: the valuetype enumerators don't have the additional
12999         supertypes interfaces.
13001 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13003         * class.c: need more interfaces setup for the IEnumerator<T>
13004         object created for arrays (tests/ienumerator-interfaces.2.cs).
13006 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
13008         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
13010 2007-10-05  Alp Toker  <alp@atoker.com>
13012         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13013         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13014         #315863.
13016 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13018         * verify.c (verify_type_compatibility_full): verification of
13019         compatibility improved, validates correctly non-strict checks between
13020         native int and I4 types different than (unsigned)int32.
13022         * verify.c (do_store_indirect): added, do all verification of
13023         ldind.X opcodes. 
13025         * verify.c (get_load_indirect_mono_type): renamed to
13026         get_indirect_op_mono_type, as it now returns the MonoType for 
13027         ldind.X and stind.X opcodes.
13029 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13031         * reflection.c: Fix the encoding of generic type definition for
13032         TypeBuilders.
13034         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
13035         mono_image_typedef_or_ref but allows to specify if typespec lookups should
13036         be made. Typespec check is done prior to typeref cache lookup.
13038         * reflection.c (mono_image_typedef_or_ref): now just delegate to
13039         mono_image_typedef_or_ref_full.
13041         * reflection.c (encode_generic_class): encode the generic class
13042         directly instead of calling encode_type.
13044         * reflection.c (encode_type): encode the generic type definition
13045         MonoClass as a generic instantiation.
13047         * reflection.c (create_typespec): cache typespec tokens in
13048         the assembly->typespec cache. Don't create typespec for a generic
13049         instance MonoClass. Create typespec for the generic type defintion.
13051         * reflection.c (create_generic_typespec): encode the generic
13052         class directly instead of calling encode_type.
13054         * reflection.c (mono_image_create_token): encode the generic
13055         type definition not using a typespec for MonoType instances.
13058 2007-10-04  Raja R Harinath  <rharinath@novell.com>
13060         Fix #328812
13061         * class.c (mono_image_init_name_cache): Don't return nested
13062         'protected internal' classes.
13063         (mono_class_from_name_case): Likewise.
13065 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
13067         * icall-def.h, icall.c : get_bundled_machine_config() is now the
13068           common function used by both DefaultConfig in System.dll and
13069           InternalConfigurationHost in System.Configuration.dll.
13071 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13073         * class.c: automatically add to vectors only a few essential explicit
13074         generic interfaces. The rest of the interfaces that arrays should
13075         provide are currently implicitly added (but still not lazily, see the
13076         design in the discussion of bug#325495 for the details of what is
13077         needed for that). Additionally, implicit interfaces are assigned the
13078         same vtable slot as the explicit interfaces (as they are compatible):
13079         this enables huge memory savings since we don't need to instantiate
13080         as many memthods and as large vtables anymore. Also, Since
13081         GetEnumerator<T> returns an instance of a type that is required to
13082         support a similarly large set of interfaces as arrays, we add
13083         implicit interfaces and interface offset sharing support to those
13084         types, too. This change adds all the required interfaces so that
13085         the anonarray.cs test case in the bug report works (we don't add
13086         all the interfaces to arrays of arrays 3-level deep and more because
13087         of the memory requirements explained in the bug and since they are much
13088         less common: the lazy-loading support will enabled them to work, too).
13090 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13092         * verify.c (merge_stacks): major clean up, all type compatibility
13093         checks are done by verify_type_compatibility. This fix my earlier lack
13094         of understanding of the CLR type system and merge_stacks no longer looks
13095         scary.
13097         * verify.c: fixed some bad spelling.
13099 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13101         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
13102         a given stack slock.
13103         
13104         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
13105         verify_type_compatibility_full. This removed a near indentical function and fixed
13106         handling of Int32 and IntPtr across all opcodes.
13108 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13110         * class.c: only vectors have the additional generic interfaces.
13112 2007-10-01  Jonathan Chambers <joncham@gmail.com>
13114         * mono-config.c: Use g_strcasecmp instead of
13115         strcasecmp like everywhere else to fix
13116         compilation with MSVC.
13117         
13118         Code is contributed under MIT/X11 license.
13120 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13122         * object.c, object-internals.h: refactored the IMT code to enable
13123         building a single slot at a time and lazily creating the IMT trampolines
13124         and thunks.
13126 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
13128         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
13130         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
13131         Fixes #328501.
13132         
13133 2007-09-29  Raja R Harinath  <harinath@gmail.com>
13135         * loader.c (method_from_methodspec): Rearrange to avoid
13136         un-necessary exposition.  Don't assert out if the method's
13137         declaring type is a generic type definition.
13139 2007-09-28  Martin Baulig  <martin@ximian.com>
13141         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
13143 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
13145         * class-internals.h: optimize field layout of MonoClass to
13146         requires less cachelines at runtime and save a few bytes on 64 bit
13147         systems.
13149 2007-09-28  Jb Evain  <jbevain@novell.com>
13151         * reflection.c: when encoding type names in custom attributes,
13152         if the type is a closed generic type, its generic arguments
13153         have to be serialized as AssemblyQualifiedName, so that when
13154         they are deserialized, it's possible to re-create them properly.
13155         Fixes #329450.
13158 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13160         * object.c, class-internals.h: added delegate-creation counter.
13162 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
13164         * class.c: cleanup of the code that synthetizes interfaces for
13165         arrays in 2.0: saves quit a bit of corlib mempool memory.
13166         Code to fix bug #325495 ifdeffed out for now until the issues
13167         with memory usage and O(n^2) behaviour are fixed.
13169 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13171         * marshal.c: when possible, do not duplicate the name of the methods
13172         in the method builder and in the generated MonoMethod.
13174 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
13175         * verify.c: added support for type checking ldind_* opcodes.
13177 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
13179         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
13180         which is used to distinguish the fully open instantiation of a TypeBuilder
13181         with the rest. This temporary hack is required to restore the property that
13182         the fully open instantiation is the same type of the generic type definition.
13184         * class-internals.h (mono_generic_class_is_generic_type_definition):
13185         new function as part of the internal API.
13187         * class.c (inflate_generic_type): return NULL when the generic inst is
13188         fully open. The fully open generic type is now the same as the generic type
13189         definition for non TypeBuilder types.
13191         * class.c (mono_generic_class_get_class): removed assert since it is
13192         no longer valid, gklass->cached_class can point to the generic type definition.
13194         * class.c (mono_generic_class_is_generic_type_definition): new.
13196         * metadata.c (mono_generic_class_hash): added is_tb_open field
13197         to the hash calculation.
13199         * metadata.c (free_generic_class): if the generic class is associated
13200         with the generic type definition, its field will come from the mempool and
13201         must not be freed.
13203         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
13204         new, this function identifies the corner case of a TypeBuilder fully open
13205         instantiation.
13207         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
13208         for lookup. Set gclass->cached_class to be the container class in case of
13209         the fully open instantiation of non TypeBuilder types.
13211         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
13212         to compare generic classes.
13214         * reflection.c (method_encode_methodspec): remove assert that
13215         no longer is valid.
13217         * reflection.c (mono_reflection_generic_class_initialize): add
13218         an aditional assert to ensure the proper type is used.
13220 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
13222         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
13223         to enjoy it.
13225 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
13227         * verify.c (push_arg): Fixed support for ldarga
13228         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
13229         MonoType used as first arg in case of instance calls.
13231 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
13233         * verify.c: Support for verifying VAR and MVAR types, 
13235 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
13237         * icall.c (ves_icall_get_property_info): Set the reflected type of the
13238         accessors correctly.
13240 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
13242         * threads.c: support OSX and other systems in
13243         mono_thread_get_stack_bounds (bug #328026).
13245 2007-09-25  Martin Baulig  <martin@ximian.com>
13247         * mono-debug.h
13248         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
13250 2007-09-24  Martin Baulig  <martin@ximian.com>
13252         * mono-debug.h
13253         (MonoDebugClassEntry): Moved the definition of this struct into
13254         mono-debug.c to make it private.
13256         * mono-debug.c
13257         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
13258         type table per symbol file, we don't need to store the symfile id
13259         any longer.
13261 2007-09-24  Martin Baulig  <martin@ximian.com>
13263         Create one type table per symbol file, since a `MonoClass *' gets
13264         invalid when its image is unloaded.
13266         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
13267         (MonoDebugHandle): Added `type_table'.
13269 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13271         * mempool.c, mempool.h: added mono_mempool_new_size () API
13272         to be able to specify a smaller initial size for the pool.
13273         Adjusted the code to slowly increase pool size before using
13274         the previous default size.
13275         * image.c: use a small initial size for image mempools.
13277 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
13279         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
13280         Fixes ##320990.
13282         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
13283         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
13285 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
13287         * metadata.c (mono_type_create_from_typespec): Remove an invalid
13288         free. Fixes #327438.
13290 2007-09-21  Raja R Harinath  <harinath@gmail.com>
13292         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
13293         generic instantiations, etc.
13294         <MONO_TYPE_ARRAY>: Likewise.
13296 2007-09-21  Martin Baulig  <martin@ximian.com>
13298         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
13299         these structs were never defined.
13300         (MonoDebugHandle): Removed the `_priv' field, it was never used.
13302 2007-09-21  Martin Baulig  <martin@ximian.com>
13304         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
13306 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
13308         * image.c: removed the guid hash tables: we can get the same info
13309         without the additional memory usage hit (partially fixes also bug #327052).
13311 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13313         * profiler.h, profiler-private.h, profiler.c: add a new profiler
13314         event to handle unloading methods. After the event is called, the
13315         corresponding MonoMethod* must be considered invalid.
13316         * loader.c (mono_free_method): call the new mono_profiler_method_free
13317         event.
13319 2007-09-20  Mark Probst  <mark.probst@gmail.com>
13321         * domain-internals.h: New flag in MonoJitInfo which marks shared
13322         generic methods.  New hash table (shared_generics_hash) in
13323         MonoDomain to keep track of shared generic methods.  Prototypes
13324         for functions to register and lookup shared generic methods.
13326         * domain.c: Support for registering and looking up shared generic
13327         methods via a hash table (shared_generics_hash) in MonoDomain.
13329         * class-internals.h: New exception to signal failure of shared
13330         compilation of a generic method.  New counters for generics
13331         sharing in MonoStats.
13333 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
13335         * image.c, metadata-internals.h: don't keep a file descriptor open
13336         for loaded assemblies (bug#325988).
13338 2007-09-19  Raja R Harinath  <rharinath@novell.com>
13340         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
13341         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
13342         use the corresponding datatypes.
13343         (type_in_image): Update to changes.
13344         (CleanForImageUserData): Simplify.
13345         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
13346         Avoid quadratic behaviour in handling the "stolen" list by
13347         separating the filter predicate out, and by prepending the stolen
13348         items rather than appending them.
13349         (steal_ginst_in_image): Likewise.
13350         (mono_metadata_clean_for_image): Update to changes.
13352 2007-09-19  Martin Baulig  <martin@ximian.com>
13354         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
13356 2007-09-19  Martin Baulig  <martin@ximian.com>
13358         * mono-debug.c (mono_debug_cleanup): Don't call
13359         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
13361 2007-09-19  Raja R Harinath  <harinath@gmail.com>
13363         Fix crash on 'make run-test' in mcs/errors
13364         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
13365         Avoid more potential allocations in mono_class_from_mono_type.
13366         (ginst_in_image): Update to changes.
13367         (gclass_in_image): Rearrange slightly.
13369 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13371         * class.c (mono_class_init): Move the code that sets up class->methods to 
13372         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
13374         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
13375         canonical instance of an inflated generic signature.
13376         (mono_type_create_from_typespec): Remove an invalid free.
13378         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
13380 2007-09-18  Marek Habersack  <mhabersack@novell.com>
13382         * domain-internals.h: added a declaration of the
13383         mono_assembly_load_full_nosearch internal function.
13385         * assembly.c (mono_assembly_load_with_partial_name): use
13386         mono_try_assembly_resolve return value properly.
13387         (mono_assembly_load_full_nosearch): copied the function body from
13388         mono_assembly_load_full, without the code to invoke assembly
13389         search hooks.
13390         (mono_assembly_load_full): calls the above new function and if the
13391         assembly is not resolved, invokes the search hooks.
13393         * appdomain.c (mono_runtime_init): restore the global postload
13394         assembly search handlers.
13396 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13398         * class.c (mono_class_init): Make sure class->methods and class->properties
13399         are never NULL in the generics case.
13401         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
13403 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
13405         * metadata.c (free_generic_class): Disable some code to fix the build.
13407         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
13409         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
13410         from the image mempool.
13412         * metadata.c (free_generic_class): Free more data from the inflated class.
13414         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
13416         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
13417         mempool.
13418         (mono_type_create_from_typespec): Ditto.
13420         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
13421         MonoImage to the caller.
13422         (mono_init_internal): Save the opened image in a global variable.
13423         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
13425         * reflection.c (resolve_object): Fix a leak.
13427         * metadata.c: Fix the freeing of data in the generics caches.
13428         
13429         * metadata.c (free_generic_inst): Comment this out to fix the build.
13430         (free_generic_class): Ditto.
13432         * metadata.c: Free cached generic methods, instantinations and classes when
13433         they are removed from the caches.
13434         (mono_metadata_free_type): Free the type itself.
13436         * class.c: Free the result of mono_class_inflate_generic_type () in a few
13437         places.
13439 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13441         * boehm-gc.c: restrict managed allocs to __thread supporting
13442         architectures.
13444 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
13446         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
13447         (mono_generic_class_get_class): Fix a leak.
13449         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
13450         mono_metadata_free_type ().
13451         (mono_metadata_inflate_generic_inst): Fix a leak.
13453 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13455         * mono-debug.c (free_header_data): Fix a leak missed earlier.
13457         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
13458         mempool.
13460         * mono-debug.c (mono_debug_close_image): Fix call to 
13461         g_hash_table_remove ().
13463 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13465         * icall-def.h: redirect all the string ctor to the managed
13466         CreateString () methods.
13467         * string-icalls.c, string-icalls.h: removed dead code for string
13468         ctors and icalls.
13470 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13472         * mono-debug.c: Fix memory leaks.
13474 2007-09-14  Jonathan Chambers <joncham@gmail.com>
13476         * threads-types.h: Implement mono_hazard_pointer_set and 
13477         mono_hazard_pointer_clear macros using do/while(0) to fix
13478         compilation with MSVC.
13479         
13480         Code is contributed under MIT/X11 license.
13482 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13484         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
13485         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
13487 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13489         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
13490         icalls.
13492 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13494         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
13495         managed-code allocated as well.
13497 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13499         * class.c (mono_class_is_assignable_from): Add support for generic variance.
13501 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13503         * boehm-gc.c: fixed the build after the AOT changes.
13505 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13507         * wrapper-types.h: Add an ALLOC wrapper type.
13509         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
13510         reference managed allocator methods.
13512 2007-09-12  Marek Safar  <marek.safar@gmail.com>
13514         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
13515         of Type array and not MonoType, a fix suggested by Hari.
13516         
13517 2007-09-12  Jonathan Chambers <joncham@gmail.com>
13519         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
13520         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
13521         
13522         Code is contributed under MIT/X11 license.
13524 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13526         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
13528 2007-09-12  Marek Habersack  <mhabersack@novell.com>
13530         * image.c (do_mono_image_open): if assembly file fails to open and
13531         MONO_IOMAP is in effect, try to find the path in a
13532         case-insensitive way.
13534         * appdomain.c (mono_runtime_init): do not install postload hooks -
13535         tests show that MS.NET doesn't use anything of that sort to
13536         trigger the AppDomain.AssemblyResolve event.
13537         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
13538         made non-static.
13539         (mono_runtime_init): init portability helpers here.
13541         * assembly.c (mono_assembly_load_with_partial_name): if other   
13542         attempts fail, trigger the AppDomain.AssemblyResolve event handler
13543         to resolve the assembly.
13545         * domain-internals.h: added mono_try_assembly_resolve and marked
13546         it as internal.
13548 2007-09-11  Jb Evain  <jbevain@novell.com>
13550         * object-internals.h (MonoReflectionDynamicMethod): add
13551         a `MonoReflectionType *owner` field. The owner is used
13552         * reflection.c:
13553         (mono_reflection_create_dynamic_method): use the owner of the dynamic
13554         method as the class declaring the dynamic method.
13555         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
13556         dynamic method to the declaring type of the methodbuilder.
13558 2007-09-11  Mark Probst  <mark.probst@gmail.com>
13560         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
13561         rules for calling methods via reflection.
13563 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
13565         * reflection.c (resolve_object): Add support for MonoGenericClass. 
13566         Inflate MonoType's.
13568 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
13570         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
13571         provide a managed method that does fast allocations without needing
13572         a managed->unmanaged transition. Boehm GC implementation currently
13573         enabled for ptrfree objects on sane architectures.
13575 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13577         * marshal.c, marshal.h: exported a couple of useful functions and
13578         added mono_mb_get_label () to easily handle backward branches.
13580 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
13582         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
13584 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13586         * loader.c (find_method): Fixed the regression introduced while
13587         fixing bug #81466.
13589 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
13591         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
13592         well.
13593         
13594         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
13595         icall.c reflection.c: Pass a MonoGenericContext argument to 
13596         mono_lookup_dynamic_token ().
13598         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
13599         #82744.
13600         
13601 2007-09-09  Robert Jordan  <robertj@gmx.net>
13603         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
13604         for generic methods.
13606         * object.c (mono_object_get_virtual_method): Handle generic methods.
13607         Fixes bug #78882.
13609         Code is contributed under MIT/X11 license.
13611 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13613         * image.c: fix locking in mono_image_load_file_for_image ().
13615 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
13617         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
13618         used only as a cache: added an icall to fill it.
13620 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
13622         * reflection.h: exposed mono_reflection_free_type_info
13623         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
13624         since mono_reflection_bind_generic_parameters makes a copy of it.
13625         * reflection.c (free_type_info): subinfos should be freed.
13626         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
13627         made non static.
13628         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
13629         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
13630         this fixes #82695 and #81726.
13631    
13633 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
13635         * process.h, process.c:  added support for user profile/info in
13636           ProcessStartInfo. For now only Windows works.
13638 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13640         * metadata.c: consider the generic arguments when comparing
13641         signatures (bug #82614).
13643 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13645         * cil-coff.h, image.c: updated assembly loader to cope with the
13646         PE32+ 64 bit file format.
13648 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13650         * assembly.c, class.c, domain.c, loader.c: remove useless
13651         inclusion of cil-coff.h.
13653 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
13655         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
13656         if interface is marked with CoClassAttribute. 
13657    
13658         Code is contributed under MIT/X11 license.
13660 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13662         * sgen-gc.c: ensure no object from the to space is copied again or finalized
13663         if it's seen twice in major collections.
13665 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13667         * sgen-gc.c: big objects are not copied to the gray area, but they
13668         need to be considered for scanning, too, if they are brought alive
13669         by an object ready for finalizations or a survived one.
13671 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13673         * sgen-gc.c: properly account the number of disappearing links when
13674         they are nullified.
13676 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13678         * sgen-gc.c: share the code to scan the registered roots between the
13679         different types of collections.
13681 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13683         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
13685 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13687         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
13688         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
13690 2007-08-28  Mark Probst  <mark.probst@gmail.com>
13692         * security-manager.c (mono_security_manager_get_methods):
13693         LinkDemandSecurityException now has 2 arguments instead of 3.
13695 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
13697         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
13698         platforms which need it.
13700 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13702         * sgen-gc.c: unregister thread data structures with a pthread_key_t
13703         dtor.
13705 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13707         * threads.c: free the thread static data on thread exit.
13709 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
13711         * class.c: walk the hierarchy to find the generic definition for
13712         a class (fixes runtime part of bug #82498).
13714 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13716         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
13717         ...
13719         * image.c (mono_image_close): Here. Hopefully fixes #82510.
13721 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13723         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
13725 2007-08-24  Robert Jordan  <robertj@gmx.net>
13727         * appdomain.c: don't perform the ':'->';' substitution on Win32.
13729 2007-08-24  Jb Evain  <jbevain@novell.com>
13731         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
13732         for byref types.
13734 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13736         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
13737         #82286.
13739 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13741         * assembly.c: Fix a warning.
13742         
13743 2007-08-23  Marek Habersack  <mhabersack@novell.com>
13745         * appdomain.c: parse the <runtime> section looking for the probing
13746         element with the 'privatePath' attribute, which sets additional
13747         directories in which the runtime should look for assemblies.
13749 2007-08-23  Robert Jordan  <robertj@gmx.net>
13751         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
13752         Fixes #82499.
13754 2007-08-23  Martin Baulig  <martin@ximian.com>
13756         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
13757         _mono_debug_init_corlib() and remove it from the header file.
13759 2007-08-23  Martin Baulig  <martin@ximian.com>
13761         * mono-debug-debugger.c
13762         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
13763         don't notify the debugger about it.
13765         * mono-debug-debugger.h
13766         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
13768 2007-08-23  Robert Jordan  <robertj@gmx.net>
13770         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
13771         Code is contributed under MIT/X11 license.
13773 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13775         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
13777 2007-08-22  Martin Baulig  <martin@ximian.com>
13779         * mono-debug.c: Store debugging info on a per-domain basis and
13780         free it on domain unload.  Add support for unloading symbol files.
13782         * mono-debug.h
13783         (MonoDebugList): New typedef.
13784         (MonoSymbolTable):
13785         - add `data_tables and `type_table'.
13786         - replace 'symbol_files' and `num_symbol_files' with a
13787           `MonoDebugList *'.
13788         (mono_debug_data_table): Removed.
13789         (mono_debug_list_add): New public function.
13790         (mono_debug_list_remove): New public function.
13791         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
13792         (mono_debug_init_2_memory): Renamed into
13793         mono_debug_open_image_from_memory().
13794         (mono_debug_close_image): New public function.
13795         (mono_debug_domain_create): Likewise.
13796         (mono_debug_domain_unload): Likewise.
13797         (MONO_DEBUGGER_VERSION): Bump to 60.
13799         * mono-debug-debugger.h
13800         (MonoDebuggerEvent):
13801         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
13802         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
13803         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
13804         - rename `THREAD_CREATED' and `THREAD_EXITED' into
13805           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
13806         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
13807           meaning.
13808         (mono_debugger_add_symbol_file): Removed.
13809         (mono_debugger_add_type): Removed.
13810         (mono_debugger_lookup_type): Removed.
13811         (mono_debugger_lookup_assembly): Removed.
13813         * domain.c
13814         (mono_domain_create): Call mono_debug_domain_create().
13815         (mono_init_internal): Call mono_debug_init_corlib().
13817         * assembly.c
13818         (mono_assembly_close): Call mono_debug_close_image().
13820 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
13822         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
13823         mmap call.
13825 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13827         * sgen-gc.c: ensure section->pin_queue_end is initialized
13828         correctly when non pinning objects in the section have been found.
13830 2007-08-22  Marek Habersack  <mhabersack@novell.com>
13832         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
13833         containing a list of directories separated by ':'. MSDN docs say
13834         the directories should be separated with ';'. Part of a bugfix for
13835         bug #81446
13837 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
13839         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
13840         it should MonoType and not MonoClass.
13842 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
13844         * culture-info-table.h : regenerated.
13846 2007-08-20  William Holmes  <billholmes54@gmail.com>
13848         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
13849          to call ReplaceFile Kernel32 on windows or in io-layer.
13850         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
13851         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
13852          as an internal call.
13854         Code is contributed under MIT/X11 license.
13856 2007-08-20  Jb Evain  <jbevain@novell.com>
13858         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
13859         and MONO_EXCEPTION_FIELD_ACCESS.
13861         * debug-helpers.[c|h]: new mono_field_full_name function.
13863 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13865         * class.c: Removed class_security_level() and moved it to
13866         security-core-clr.c.
13868         * security-core-clr.c, security-core-clr.h: class_security_level()
13869         is now public and renamed to mono_security_core_clr_class_level().
13870         It also looks for security attributes in the classes a class is
13871         nested in.
13873 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13875         * security-core-clr.c, security-core-clr.h: CoreCLR security
13876         utility functions.
13878         * Makefile.am: Added security-core-clr.[ch].
13880         * security-manager.c, security-manager.h: Functions and enum for
13881         setting and getting the security mode.
13883         * class.c: CoreCLR security checks.
13885 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13887         * icall-def.h, process.c, process.h: implemented icall to get
13888         user/system processor times.
13890 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13892         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13893         reader-lock-free jit_info_table.
13895 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13897         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13899         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13901         * object-internals.h (MonoException): Add missing _data member.
13903 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13905         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13906         checking that only methods with matching qname or fqname are picked
13907         from implemented interfaces.
13909 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13911         * verify.c (do_newarr):added, do type verification of
13912         newarr ops, push the right value on the eval stack.
13913         * verify.c (mono_method_verify): use do_newarr
13916 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13918         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13919         factored the common code into get_boxable_mono_type, which
13920         is now using mono_type_get_full, this fixed byref related tests.
13922 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13924         * class.c: added mono_type_get_full, this function has the same
13925         behavior of mono_class_get_full but the returned MonoType has
13926         all metadata of the associated token in case of a typespec token.
13927         * class.c: added mono_type_retrieve_from_typespec, used by 
13928         mono_type_get_full to retrieve the token type.
13929         * class.c (mono_class_create_from_typespec): changed to use
13930         mono_type_retrieve_from_typespec.
13931         * class.c (mono_ldtoken): changed to use mono_type_get_full
13932         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13933         * class-internals.h: exported mono_type_get_full for internal use.
13935 2007-08-16  Jb Evain  <jbevain@novell.com>
13937         * domain.c (supported_runtimes): add entry for
13938         the 'moonlight' runtime version.
13940 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13942         * verify.c (mono_method_verify): small typo sliped in.  
13944 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13946         * verify.c (do_unbox_value): added, do type verification of
13947         unboxing ops
13948         * verify.c (mono_method_verify): use do_unbox_value
13951 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13953         * verify.c (dump_stack_value): fixed typo, was printing string
13954         instead of object on stack.
13955         * verify.c (do_box_value): moved the byref check up as it leads
13956         to invalid code and should be done earlier.
13957         * verify.c: improved error messages for and ldobj
13959 2007-08-15  William Holmes  <billholmes54@gmail.com>
13961         * marshal.c (emit_marshal_custom): Omit the call to 
13962           marshal_native_to_managed when calling native to managed 
13963           and the argument is specified as an out argument.
13965         Code is contributed under MIT/X11 license.
13967 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13969         * verify.c: fixed the type checks for generics, function pointers and vectors.
13970         Added type verification for ldobj and ldtoken. The verifier
13971         would segfault if header or signature of a method contained references
13972         to non-existant types.
13974 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13976         * marshal.c (cominterop_get_ccw): Patch from
13977         Bill Holmes to no walk up interface hierarchy. 
13978         All parent methods should be present in the interface for COM.
13979    
13980         Code is contributed under MIT/X11 license.
13982 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13984         * marshal.c (emit_marshal_com_interface): Patch from
13985         Bill Holmes to handle COM Interfaces as return values
13986         for native->managed calls.
13987    
13988         Code is contributed under MIT/X11 license.
13990 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13992         * marshal.c (cominterop_get_idispatch_for_object): Implement
13993         for runtime callable wrappers.
13994    
13995         Code is contributed under MIT/X11 license.
13997 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13999         * pedump.c (main): changed from mono_init to mono_init_from_assembly
14000         so 2.0 types are accessible
14003 2007-08-13  Miguel de Icaza  <miguel@novell.com>
14005         * domain.c (mono_init_internal): Call mono_assembly_load_friends
14006         once we load mscorlib.   Due to the order in which we initialize,
14007         the mono_assembly_load_full routine that loads mscorlib did not
14008         load friends.   We now load it once we load the
14009         mono_defaults.internals_visible_class class. 
14011         * assembly.c: Expose the mono_load_friend_assemblies method.
14013 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
14015         * verify.c: improved the handling of boxing, better
14016         type checking for unary ops and conversion. Fix bug
14017         regarding managed pointer compatibility checking
14019 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
14021         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
14023         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
14025 2007-08-09  Raja R Harinath  <rharinath@novell.com>
14027         * reflection.c (dup_type): Remove.
14028         * class.c (dup_type): Remove.
14029         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
14030         instead of the dodgy 'dup_type'.
14031         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
14032         handle the case where 'dup_type' needed the second argument.
14034 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
14036         * domain.c: Fix a warning.
14038 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14040         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
14041         checking that methods with the same fqname are not overridden
14042         with a method from an ancestor.
14044 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
14046         * threads.c (free_thread_static_data_helper): Avoid a crash if
14047         thread->static_data is not yet set.
14049 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
14051         * marshal.c: Use correct image when emitting
14052         native wrapper for COM calls.
14053    
14054         Code is contributed under MIT/X11 license.
14056 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
14058         * icall-def.h, security.c, security.h :
14059           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
14061 2007-08-07  Martin Baulig  <martin@ximian.com>
14063         * mono-debug-debugger.h
14064         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
14066         * domain.c (mono_domain_free): Call
14067         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
14069 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
14071         * verify.c (check_underflow, check_overflow): error message now returns IL offset
14072         * verify.c (in_same_block): code should test if either offset is inside the clauses
14073         * verify.c (mono_method_verify): push the exception into the eval stack of exception
14074         and filter blocks
14076 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14078         * image.c (mono_image_close): Fix a leak.
14080         * object.c (mono_runtime_invoke_array): Avoid using alloca.
14082         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
14084 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14086         * domain.c, threads.c, threads-types.h: fix memory retention issue
14087         with thread static variables not being cleared on domain unload.
14088         Reuse thread static slots after domain unload.
14090 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14092         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
14093         nullable type.
14095         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
14096         now done in mono_runtime_invoke_array.
14098         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
14099         receiver is a nullable type.
14101         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
14102         generic parameter.
14104 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
14106         * marshal.c: Implement COM Objects as return type for 
14107         managed->unmanaged calls. Added Release calls for COM Object
14108         out/return values in managed->unmanaged calls.
14110         Code is contributed under MIT/X11 license.
14112 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
14114         * threads.h, threads-type.h: move the hazard pointer declarations
14115         to the private header.
14117 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14119         * file-io.c, appdomain.c: memory leak fixes.
14121 2007-08-02  Dick Porter  <dick@ximian.com>
14123         * socket-io.c
14124         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
14125         SO_REUSEADDR setting into io-layer/sockets.c.
14127 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
14129         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
14130         from Object when called on a generic parameter. Fixes #82211.
14132 2007-08-01  Dick Porter  <dick@ximian.com>
14134         * file-io.c (convert_share): Test FileShare values bit-by-bit.
14135         Fixes bug 79250 yet again.
14137 2007-07-30  Martin Baulig  <martin@ximian.com>
14139         Merged the `debugger-dublin' branch.
14141         * mono-debug.h
14142         (MonoDebugDataTable): New typedef.
14143         (MonoDebugMethodAddressList): New typedef.
14144         (MonoDebugWrapperData): Removed.
14145         (MonoDebugSymbolTable): Removed `current_data_table',
14146         `current_data_table_size', `current_data_table_offset'.
14147         (MonoDebugDataItemType): Moved into mono-debug.c.
14148         (MonoDebugMethodJitInfo): Remove `address'.
14149         (mono_debug_data_table): New global variable.
14150         (mono_debug_lookup_method_addresses): New public function.
14151         (mono_debug_find_method): Take a `MonoMethod *', not a
14152         `MonoDebugMethodInfo *'.
14154         * mono-debug.c: Drop support for the old symbol tables.
14156 2007-06-28  Martin Baulig  <martin@ximian.com>
14158         * mono-debug.c (mono_debug_debugger_version): New public variable.
14160 2007-07-31  William Holmes  <billholmes54@gmail.com>
14162         * metadata.c Changed mono_type_create_from_typespec to not insert
14163           the type into the hash map until after
14164           do_mono_metadata_parse_type has completed.
14165         Fixes Bug #82194
14166         Code is contributed under MIT/X11 license.
14168 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
14170         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
14171         generic parameter. Fixes #82211.
14173 2007-07-27  Jb Evain  <jbevain@novell.com>
14175         * pedump.c (dump_metadata, dump_metadata_header): dump
14176         versions contained in the metadata header.
14178 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14180         * threads.c: register small_id_table with the GC.
14182 2007-07-27  Mark Probst  <mark.probst@gmail.com>
14184         * threads.c, threads.h, class-internals.h, object-internals.h:
14185         Hazard pointers, to be used by lock-free parallel algorithms.
14187 2007-07-26  Dick Porter  <dick@ximian.com>
14189         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
14190         routine on non-windows platforms, as I've not managed to think of
14191         a non-kludgy way of doing this.  Finishes off bug 78739.
14193 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
14195         * object.c: properly setup interface_bitmap in proxy vtables.
14197 2007-07-25  Marek Habersack  <mhabersack@novell.com>
14199         * appdomain.c (get_shadow_assembly_location): do not use TickCount
14200         to create unique shadow copy target directories, use the domain's
14201         serial number instead. Each domain gets a unique target directory
14202         that way.
14204         * domain.c (mono_domain_create): added code to increment domain
14205         shadow copy serial number and cache the value in the current
14206         domain structure.
14208         * domain-internals.h (struct _MonoDomain): added a new field -
14209         shadow_serial to hold the serial number used in generation of
14210         shadow-copy directories. This is to make sure that the directory
14211         name is unique for each and every domain created. We avoid a race
14212         condition with overriding assemblies already in use by other app
14213         domains.
14215 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
14217         * class.c (mono_bounded_array_class_get): fixed memory leak when 
14218         binding generic parameters.
14220 2007-07-24  Raja R Harinath  <rharinath@novell.com>
14222         * metadata.c (do_mono_metadata_parse_generic_class): Use
14223         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
14224         error.
14226 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14228         * loader.c, class-internals.h, reflection.c: removed the per-method
14229         generics hashtable: we use the global one through the call of
14230         mono_class_inflate_generic_method ().
14232 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14234         * class.c, metadata.c, class-internals.h: introduce yet another
14235         generics global cache for inflated methods (fixes 98% of the perf
14236         issue in bug #81806).
14238 2007-07-23  Raja R Harinath  <rharinath@novell.com>
14240         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
14241         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
14242         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
14243         return a MonoGenericInst containing (a copy) of those types.
14244         (mono_metadata_inflate_generic_inst): Update to changes.
14245         (mono_metadata_parse_generic_inst): Likewise.
14246         (mono_get_shared_generic_inst): Likewise.
14247         * reflection.c (mono_class_bind_generic_parameters): Likewise.
14248         (mono_reflection_bind_generic_method_parameters): Likewise.
14249         * metadata-internals.h: Likewise.
14250         * icall.c (free_generic_context): Kill.
14251         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
14253         * reflection.c (reflection_methodbuilder_to_mono_method): Use
14254         mono_metadata_type_dup.
14255         * marshal.c (mono_mb_create_method): Likewise.
14257         * metadata.c (mono_metadata_type_dup): Rename from
14258         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
14259         MonoImage.  Handle a few more cases, esp. when no mempool is given.
14260         * marshal.c, metadata-internals.h: Update to changes.
14262 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14264         * class.c: fixed a small leak for array classes and removed warning.
14266 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
14268         * loader.c (mono_method_get_param_token): Make this work on generic methods.
14269         Return 0x8000000 for return parameters. Fixes #82161.
14271 2007-07-21  Marek Habersack  <grendello@gmail.com>
14273         * appdomain.c (get_shadow_assembly_location): append the current
14274         ticks value to the path. Avoids overwriting the same assemblies by
14275         several threads at the same time.
14277 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
14278         and Raja R Harinath  <rharinath@novell.com>
14280         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14281         Simplify slightly.
14282         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
14283         property for testing if a method is a generic method definition.
14285 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
14287         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
14289 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14291         * verify.c: used function from private branch, reverted to the one in class.h 
14293 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14295         * verify.c: a typo slipped in and the code wont compile
14297 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14299         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
14300         disabled box instruction as it is doing the wrong thing
14301         improved stack dump messages, now it is easier to debug type related issues
14304 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
14306         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
14308 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14310         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
14311         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
14312         grouped with class and valuetype. This change will simply 
14313         the code as it should be handled just like unmanaged pointers.
14315 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14317         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
14319 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14321         * verify.c: several stack merge issues fixed, reference comparisons now
14322         check the type size. strict type check now works correctly.
14323         added more uses of IS_MANAGED_POINTER macro.
14324         fixed issues pointed by running the test suite against .net.
14325         
14327 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14329         * class.c, loader.c, class-internals.h: Removed the
14330         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
14331         defines.
14333         * icall.c: Better error checking in some internal reflection
14334         methods.
14336 2007-07-18  William Holmes  <billholmes54@gmail.com>
14338         * filewatcher.c : removed unused variable 'filename' in 
14339           ves_icall_System_IO_FSW_SupportsFSW
14341 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
14343         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
14344         obsolete, removed.
14346 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
14348         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
14349         
14350         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
14352 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
14354         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
14355         Implement generics support.
14356         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14358         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
14359         type_args and method_args arguments.
14360         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
14361         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14362         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
14364 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
14366         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
14367           It adds a rootimage parameter to mono_reflection_get_type_internal,
14368           adds new function mono_reflection_get_type_with_rootimage and use
14369           the rootimage to resolve the types instead of the current image
14371 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
14373         * culture-info-table.h: Forgot to update after r78304.
14375 2007-07-13  Raja R Harinath  <rharinath@novell.com>
14377         * class.c (mono_class_is_open_constructed_type)
14378         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
14380 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
14382         * class.c (mono_bounded_array_class_get):  method fails if used with
14383         an incomplete TypeBuilder enum (no basetype field), fixed it by 
14384         avoiding calculating the size for such array as it cannot be instantiated.
14385         Fix bug #82015
14387 2007-07-12  Raja R Harinath  <rharinath@novell.com>
14389         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
14390         field.
14391         * metadata.c, reflection.c: Update to changes.
14393 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
14395         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
14396         mono_class_is_valid_enum, they are used to valide a enum when loading.
14397         * reflection.c: used new functions to throw TypeLoadException when and
14398         invalid enum is build with TypeBuilder. Fixes #82018
14399   
14400 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14402         * object.c: forgot commit of mono_class_setup_methods () to access
14403         iface->methods.
14404         * object-internals.h: added a few more handy fields to
14405         MonoIMTCheckItem.
14407 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14409         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
14410         iface->methods.
14412 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14414         * class-internals.h, object-internals.h, object.c: IMT-based
14415         interface invocation core from Massimiliano Mantione
14416         (massi@ximian.com) with a reworked arch-specific interface,
14417         bsearch implementation and a few bugfixes and memory savings by me.
14419 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
14421         * class.c (mono_class_create_from_typedef): mono would segfault if 
14422         an enum did not have a __value field. It now throws a TypeLoadException
14423         for such cases. Fix bug #82022
14425 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14427         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
14429 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14431         * class.c (mono_class_init): If a class is already inited but has
14432         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
14434 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14436         * class.c: Properly handle the case of an unimplemented interface
14437         method.  Fixes: 81673.
14439 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14441         * class-internals.h, object.c: cleanup patch from massi: use
14442         MonoVTable->interface_bitmap since the vtable interfaces offset array
14443         is going away.
14445 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14447         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
14448         GetMDStreamVersion icall instead.
14450 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14452         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
14453         not use mono_dl_build_path() with a full library name: makes
14454         fallbacks to libgaim and libfam work.
14456 2007-07-06  William Holmes  <billholmes54@gmail.com>
14458         * assembly.c: Added a continue statement in probe_for_partial_name when
14459          parse_assembly_directory_name fails.  Fixes : 82002
14461 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
14463         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
14464         and added a verification  for TYPEDBYREF.
14465         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
14466         make native int interchangeable with int32 and some small cleanup and formating.
14467         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
14468         handle byref of byref.
14469         * verify.c (push_local): handle byref of byref.
14470         * verify.c (do_binop): invalid mix of values is unverifiable
14471         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
14472         added visibility checks
14473         * verify.c (field related method): added visibility checks
14474         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
14476 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
14478         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
14479         string.
14481 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
14483         * profiler.c (mono_profiler_load): Fix an off-by-one error.
14485         * marshal.c (emit_marshal_string): When returning a string from managed code,
14486         allways make a copy even for unicode strings. Fixes #81990.
14488 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
14490         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
14491         of byref generic inst types (bug #81997).
14493 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
14495         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
14496         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
14498 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
14500         * marshal.c (emit_marshal_string): Add support for unicode strings in
14501         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
14503 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
14505         * verify.c: field load/store are now verified, missing only access checks now
14507 2007-06-28  Martin Baulig  <martin@ximian.com>
14509         * mono-debug.c (mono_debug_debugger_version): New public variable.
14511 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
14513         * locales.c: When constructing DateTimeFormat or NumberFormat for
14514         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
14515         MonoCultureInfo contructed from the current locale is always
14516         read-only and has UseUserOverride set to true. All MonoCultureInfo
14517         instances returned for GetCultures have both IsReadOnly and
14518         UseUserOverride set to true. Fixes part of bug #81930.
14520 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
14522        * icall-def.h: Update System.__ComObject icalls
14523        * marshal.c: Avoid managed transition (and object creation)
14524        when looking up COM interface in RCW.
14525        * marshal.h: Ditto.
14526        
14527        Code is contributed under MIT/X11 license.
14529 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
14531         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
14532         to avoid crashes during assembly unloading.
14534 2007-06-22  Raja R Harinath  <rharinath@novell.com>
14536         Fix MethodInfo.IsGenericMethodDefinition
14537         * reflection.c (mono_reflection_bind_generic_method_parameters):
14538         Rearrange code to ensure we always uses a generic method definition.
14539         * class.c (mono_class_inflate_generic_method_full): Set
14540         'generic_container' field only for generic method definitions.
14541         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14542         Use presense of 'generic_container' field as indication of being a
14543         generic method definition.
14545 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
14547         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14549         * object-internals.h: Reflect changes in the layout of the managed Delegate
14550         class.
14551         
14552         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
14553         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
14554         runtime memory used by the dynamic method. Fixes #77146.
14556 2007-06-21  Dick Porter  <dick@ximian.com>
14558         * file-io.h: 
14559         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
14560         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
14561         81767.
14563 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14565         * reflection.c (method_encode_methodspec): Add a tripwire.
14566         * class.c (inflate_generic_type): The fully open generic type is
14567         not the same as the generic type definition.
14569 2007-06-21  Martin Baulig  <martin@ximian.com>
14571         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
14573         * mono-debug-debugger.h
14574         (MonoDebuggerBreakpointInfo): Removed.
14575         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
14576         (mono_debugger_remove_breakpoint): Likewise.
14577         (mono_debugger_breakpoint_callback): Likewise.
14578         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
14580 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14582         * metadata.c (mono_metadata_lookup_generic_class): The fully open
14583         generic type is not the same as the generic type definition.
14584         * class.c (mono_generic_class_get_class): Likewise.
14586 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
14588         * icall.c: The second argument to 
14589         System.Reflection.MethodBase.GetMethodFromHandleInternalType
14590         is a MonoType not a MonoClass.
14592 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14594         * verify.c: support for function pointers in the verifier
14596 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14598         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
14600 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14602         * assembly.c: removed Mono.Data.SqliteClient from the list of
14603         forward-compatible assemblies as it breaks the ABI (bug #81899).
14605 2007-06-19  Raja R Harinath  <rharinath@novell.com>
14607         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
14608         lookup/update with the loader lock.
14609         * reflection.c (mono_class_bind_generic_parameters): No need to
14610         protect mono_metadata_lookup_* with the loader lock.
14611         * class.c (inflate_generic_type): Likewise.
14612         
14613         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
14614         on a generic instantiated type.
14616 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
14618         *verify.c: produce meanfull error messages on verification error
14619         *verify.c: fixed some cases of verification errors reported as validation errors
14620         *pedump.c: fixed the error name array, now it shows validation errors properly
14621         *verify.h: fixed the contant that should be used for verification errors
14623 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14625         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
14626         for bug #77596, 81858 and 80743 (generics data structures on domain
14627         unload).
14629 2007-06-15  Raja R Harinath  <rharinath@novell.com>
14631         Avoid allocating 'MonoGenericContext' on the heap.
14632         * class-internals (_MonoMethodInflated::context): Make field
14633         inline, not a pointer.
14634         * loader.c (method_from_methodspec): Allocate 'new_context' on the
14635         stack.  Use the context embedded within the inflated method as the
14636         hash key, rather than 'new_context'.
14637         * class.c (inflate_generic_context): Simplify.  Return a struct
14638         rather than allocating on the heap.
14639         (mono_class_inflate_generic_method_full): Update to changes.  Now,
14640         doesn't salt away a copy of the context -- simplifying the
14641         lifetime rules of a 'MonoGenericContext *'.
14642         (mono_method_get_context): Return pointer to embedded context.
14643         (setup_generic_array_ifaces): Allocate temporary context on stack.
14644         * reflection.c (inflate_mono_method): Likewise.
14645         (mono_reflection_bind_generic_method_parameters): Likewise.
14646         Use the context embedded within the inflated method as the hash key.
14648         Avoid a source of allocation of 'MonoGenericContext'.
14649         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
14650         and 'cached_context' fields into embedded 'MonoGenericContext' field.
14651         * class.c: Update to changes.
14652         (mono_generic_class_get_context): Simplify drastically.  Now just
14653         returns a pointer to the field.
14654         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
14655         argument as a const pointer.
14656         (mono_metadata_generic_context_equal): Likewise.
14657         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
14658         Update to changes.
14660 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
14662         * verify.c improved the handling of brtrue/brfalse, factored out common code
14664 2007-06-14  Raja R Harinath  <rharinath@novell.com>
14666         Kill MonoGenericMethod.
14667         * class-internals.h (MonoGenericContext::method_inst): Rename from
14668         'gmethod' and convert to a MonoGenericInst.
14669         (MonoGenericMethod): Remove.
14670         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
14671         * loader.c (method_from_methodspec): Update to changes.  Use a
14672         MonoGenericContext as the key to the hashtable.
14673         * metadata.c (mono_metadata_generic_context_equal): Rename from 
14674         'mono_metadata_generic_method_equal' and take MonoGenericContext.
14675         (mono_metadata_generic_context_hash): Likewise from
14676         'mono_metadata_generic_method_hash'.  Change hash function.
14677         (mono_metadata_load_generic_params): Update to changes.
14678         (mono_get_shared_generic_method): Remove.
14679         * metadata-internals.h (mono_get_shared_generic_method): Remove.
14680         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
14681         (inflate_generic_context): Likewise.
14682         (mono_class_inflate_generic_method_full): Likewise.
14683         (setup_generic_array_ifaces): Likewise.
14684         (mono_class_create_from_typespec): Likewise.
14685         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
14686         (method_encode_methodspec): Update callsite.
14687         (reflection_methodbuilder_to_mono_method): Update to changes.
14688         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
14689         MonoGenericContext as the key to the hashtable.
14690         (inflate_mono_method): Update to changes.
14692         * class-internals.h (MonoGenericMethod::container): Remove.
14693         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14695 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14697         * profiler-private.h, profiler.c, profiler.h: added API to profile
14698         exception events.
14700 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14702         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
14704 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14706         * verify.c: method invocation is now validated, now we verify parameter types on stack.
14707         Fixed overflow and underflow not aborting the verification process.
14709 2007-06-13  Mark Probst  <mark.probst@gmail.com>
14711         * class-internals.h (MonoStats): Added stats entries for dynamic
14712         code allocations.
14714 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
14716         * loader.c (mono_free_method): Free header->locals and header->clauses.
14718         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
14719         dynamic case.
14721         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
14723         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
14725 2007-06-12  Raja R Harinath  <rharinath@novell.com>
14727         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
14728         the tables.
14730 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14732         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
14734 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14736         MonoGenericMethod on a diet
14737         * class-internals.h (_MonoMethodInflated::reflection_info): Move
14738         here ...
14739         (_MonoGenericMethod::reflection_info): ... from here.
14740         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
14741         Update to changes.
14742         * reflection.c (inflate_mono_method): Likewise.
14743         (mono_reflection_bind_generic_method_parameters): Likewise.
14745 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14747         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
14748         *verify.c: factored long ldarg forms to share code with short forms
14750 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14752         *verify.c: fixed code formating factored some duplicate code
14753         into a new function
14755         *verify.h: fixed binary incompatibility introduced earlier
14757         *pedump.c: fixed formating
14759 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14761         Fix assertion when disassembling Mono.C5.dll
14762         * loader.c (method_from_methodspec): Avoid inflating a method
14763         twice with the same context.  If the methodref is inflated, use
14764         the declaring method instead.
14766         * class.c (mono_class_from_generic_parameter): Fix case similar to
14767         bug #81830 handled below, but for method containers.
14769 2007-06-10  Raja R Harinath  <harinath@gmail.com>
14771         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
14772         get_shared_generic_class.  Directly inflate the instance.
14773         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
14774         (inflate_generic_class): Delete.
14775         (get_shared_generic_class): Delete.  Move setting of
14776         'cached_class' and 'cached_context' ...
14777         * metadata.c (mono_metadata_lookup_generic_class): ... here.
14779         * metadata.c (mono_metadata_lookup_generic_class): Change
14780         signature to take the components of a MonoGenericClass rather than
14781         an allocated MonoGenericClass.  Change semantics to be intern-like.
14782         * reflection.c (mono_class_bind_generic_parameters): Update to
14783         changes.  Make locking region tighter.
14784         * class.c (inflate_generic_class): Update to changes.
14785         (get_shared_generic_class): Likewise.
14786         * metadata-internals.h: Likewise.
14788         * reflection.c (mono_class_bind_generic_parameters): Take and
14789         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
14790         (mono_reflection_bind_generic_parameters): Use
14791         'mono_class_bind_generic_parameters' rather than duplicate the code.
14792         * class.c (mono_bounded_array_class_get): Update to changes.
14793         * object-internals.h: Likewise.
14795         * reflection.c (mono_class_bind_generic_parameters): Only support
14796         parameterizing generic type definitions.  Remove support for other
14797         open types.
14799 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
14801         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
14803         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
14804         in the dynamic case.
14806 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
14808         * threads.c: When cleaning up thread, reset the Background bit.
14809         Fixes bug #81720.
14811 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
14813        * metadata.c: Move variable declarations to top of scope.
14814        * verify.c: Move variable declarations to top of scope.
14816        Code is contributed under MIT/X11 license.
14818 2007-06-08  Raja R Harinath  <rharinath@novell.com>
14820         * reflection.c (mono_class_bind_generic_parameters): Replace
14821         open-coded loop with mono_metadata_inflate_generic_inst.
14823         * class.c (get_shared_generic_class): Don't call
14824         mono_get_shared_generic_inst.  Use the container's own
14825         'class_inst'.
14827         * metadata.c (mono_metadata_load_generic_params): Move
14828         initialization of 'context' field here from ...
14829         * class.c (mono_class_create_from_typedef): ... here, and ...
14830         * loader.c (mono_get_method_from_token): ... here.
14832         * class.c (get_shared_generic_class): Rename from
14833         mono_get_shared_generic_class and make static.
14834         (mono_get_shared_generic_inst): Move to metadata.c.
14835         * loader.c (mono_get_shared_generic_method): Likewise.
14836         * class-internals.h, metadata-internals.h: Update to changes.
14838         Fix #81830
14839         * class.c (mono_class_from_generic_parameter): Don't assume a
14840         generic container owner exists.  Generic containers from monodis
14841         don't have any.
14843 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
14845         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
14846         * verify.h: new typedefs to returns the non-verifiable status
14847         * verify.c: initial implementation of generics, stack merging and object compatibility check
14849 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14851         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14852         a MonoInternalHashTable again (fixed bug in internal hash table
14853         code).
14855 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14857         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14858         MonoInternalHashTable again (fixed bug in internal hash table
14859         code).
14861 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14863         * class.c, image.c, class-internals.h, domain.c,
14864         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
14865         changes.  Have to figure out what makes them break the SWF
14866         regression.
14868 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14870         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14871         a MonoInternalHashTable now.
14873 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14875         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14876         MonoInternalHashTable now.
14878 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14880         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14881         invoke_impl code.
14883         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14885         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14886         dependent trampoline.
14888         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14890         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14892 2007-05-29  Robert Jordan  <robertj@gmx.net>
14894         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14896 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14898         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14900 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14902        * marshal.c: Fix interface lookup loops for
14903        cominterop_get_com_slot_for_method and 
14904        cominterop_get_method_interface. Only need to lookup
14905        if type is a class, else use interface type method is on.
14907        Code is contributed under MIT/X11 license.
14909 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14911         * reflection.c: HasSecurity can be present even if no specially 
14912         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14913         SecurityAttribute). Fix CAS regression tests on buildbot.
14915 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14917        * appdomain.c: Add configure checks for header files.
14918        * image.c: Add configure checks for header files.
14919        * file-io.c: Add configure checks for header files.
14920        * debug-mono-symfile.c: Add configure checks for header files.
14921        * threadpool.c: Add configure checks for header files.
14922        * console-io.c: Add configure checks for header files.
14923        * profiler.c: Add configure checks for header files.
14924        * rawbuffer.c: Add configure checks for header files.
14925        * icall.c: Add configure checks for header files.
14926        * rand.c: Add configure checks for header files.
14927        * socket-io.c: Add configure checks for header files.
14929        Code is contributed under MIT/X11 license.
14931 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14933         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14934         assertion as it breaks the build.
14935         
14936         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14938         * reflection.c (lookup_custom_attr): Make a copy here too.
14940         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14941         dynamic images.
14943         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14944         images.
14946         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14947         info.
14949 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14951         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14952         (load_cattr_value): Ditto.
14954 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14956         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14958 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14960         * threads.c: In "start_wrapper", set apartment_state to MTA if
14961         apartment_state is Unknown and we're running on 2.0 profile or
14962         higher.
14963         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14964         to main method, then set apartment_state to Unknown on 1.0 profile,
14965         and MTA on 2.0 profile.
14967 2007-05-16  Jb Evain  <jb@nurv.fr>
14969         * class-internals.h (MonoDefaults): Add an attribute_class and
14970           customattribute_data_class.
14971         * domain.c (mono_init_internal): Populate them.
14972         * reflection.c: Use them to remove duplicates. Make a vew
14973         MonoClass variables `static'.
14975 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14977         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14978         step in implementing IMT, so that all isinst checks now can go
14979         through the bitmap.
14980         This was needed because vtables for TransparentProxy need to look
14981         like the vtable of the "target" class, so they need to point to
14982         its interface bitmap directly.
14984         * object.c: inside "mono_class_create_runtime_vtable" and
14985         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14987 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14989         * object-internals.h
14990           culture-info.h : added territory field in MonoCulture and
14991           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14992         * locales.c : fill territory field above too.
14993         * culture-info-table.h : regenerated.
14995 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14997         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14998         Fixes #81599.
15000 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
15002         * object.c: Always initialize apartment, even if 
15003         there is no custom attributes on entry point.
15004         
15005         Code is contributed under MIT/X11 license.
15007 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
15009         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
15010         * metadata.c: If no encoding is set, check for unicode
15011         on class.
15012         
15013         Code is contributed under MIT/X11 license.
15015 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15017         * threads.c: Handle if mono_thread_current returns NULL 
15018         
15019         Code is contributed under MIT/X11 license.
15021 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15023         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
15024         in start_wrapper. Added mono_thread_init_apartment_state and
15025         mono_thread_cleanup_apartment_state.
15026         * object.c: Initialize thread apartment state on main thread
15027         by checking for STAThreadAttribute on entry point.
15028         * object-internals.h: Add apartment_state field to MonoThread.
15029         * threads-types.h: Add unmanaged definition of 
15030         System.Threading.ApartmentState, MonoThreadApartmentState.
15031         
15032         Code is contributed under MIT/X11 license.
15033         
15034 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
15036         * class.c: Fix windows build.
15037         * class-internals.h: Fix windows build.
15038         
15039         Code is contributed under MIT/X11 license.
15041 2007-05-08  Robert Jordan  <robertj@gmx.net>
15043         * process.c (CreateProcess_internal):
15044         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
15045         .CreateNoWindow was specified. Fixes #81496.
15047 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15049         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
15050         step in implementing IMT, replaced it with two compact arrays
15051         (interfaces_packed and interface_offsets_packed) and a bitmap that
15052         is used for isinst checks (interface_bitmap).
15054         * class.c: (compare_interface_ids): compare function to pass to
15055         bsearch when looking for an interface with a given id.
15056         (mono_class_interface_offset): reimplemented using bsearch on
15057         interfaces_packed, getting the offset from interface_offsets_packed.
15058         (print_implemented_interfaces): utility debugging function.
15059         (setup_interface_offsets): reworked to initialize interfaces_packed,
15060         interface_offsets_packed and interface_bitmap.
15062         * object.c: replaced all accesses to "MonoClass.interface_offsets"
15063         with uses of interfaces_packed and interface_offsets_packed.
15065 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15067         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
15068         mono_class_interface_offset prototype to wrap all accesses to
15069         "MonoClass.interface_offsets".
15071         * class.c: Implemented mono_class_interface_offset, and wrapped all
15072         accesses to "MonoClass.interface_offsets".
15074         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
15075         "MonoClass.interface_offsets".
15077 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15079         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
15080         GetMethodFromHandle overloads (bug #78637).
15082 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15084         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
15085         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
15087 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
15089         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
15090         #81498.
15092         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
15093         gracefully.
15094         (mono_custom_attrs_from_index): Ditto.
15096         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
15097         Fixes #81501.
15099 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
15101         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
15102         is now allocated from a mempool.
15104 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
15106         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
15107         caller holds threads_lock, leading to deadlocks. Fixes #81476.
15109 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
15111         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
15112         mono_loader_clear_error () too late. Fixes #81463.
15114 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
15116         * culture-info-table.h : regenerated.
15118 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
15120         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
15121         is missing.
15123 2007-04-25  Dick Porter  <dick@ximian.com>
15125         * Makefile.am: Put the mingw enforced-optimisation back into the
15126         PLATFORM_WIN32 section.
15128 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
15130         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
15131         patch.
15133         * image.c (mono_image_load_module): New API function to load a module reference.
15135         * image.c (load_modules): Load modules lazily. Fixes #80812.
15137         * class.c (mono_class_from_typeref): Use mono_image_load_module.
15138         
15139         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
15141         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
15142         to mono_image_load_module_dynamic.
15144 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
15146         * marshal.c: Fix calling convention for CCW on non-windows
15147         platforms. STDCALL on windows, CDECL everywhere else to work 
15148         with XPCOM and MainWin COM.
15149         
15150         Code is contributed under MIT/X11 license.
15152 2007-04-23  Martin Baulig  <martin@ximian.com>
15154         Fix #80969.
15156         * loader.c
15157         (method_from_memberref): Added `gboolean *used_context' argument.
15158         (mono_get_method_from_token): Likewise.
15159         (mono_get_method_full): Don't insert the method in the cache when
15160         `used_context' is true.
15162 2007-04-23  Raja R Harinath  <rharinath@novell.com>
15164         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
15166         * reflection.c (mono_reflection_bind_generic_parameters): Don't
15167         create new MonoTypes for returned types.
15168         * class.c (mono_generic_class_get_class): Export mono-internal.
15169         * class-internals.h: Update to changes.
15171 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15173         * threadpool.c, threadpool.h, icall-def.h: patch from
15174         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
15176 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
15178         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
15179         
15180         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
15182         * threads.c (mono_thread_get_stack_bounds): New helper function.
15184         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
15185         Correctly compute stack bounds when attaching. Fixes #81394.
15187 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
15189         * reflection.c: fix handling of doubles in custom attributes
15190         for the arm-fpa format (bug #81368).
15192 2007-04-18  Raja R Harinath  <rharinath@novell.com>
15194         * reflection.c (assembly_add_win32_resources): Mildly relax an
15195         bounds check to let the end pointer point just past the end of the
15196         allocated buffer.  (may fix #81384)
15198 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
15200         * culture-info-table.h : regenerated.
15202 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
15204         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
15205         the thread is aborted early.
15207 2007-04-05  Dick Porter  <dick@ximian.com>
15209         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
15210         FindFirstFile()/FindNextFile() to find entries.  This lets the
15211         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
15212         81038.
15214         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
15215         the parameters of
15216         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
15218 2007-04-04  Martin Baulig  <martin@ximian.com>
15220         * debug-helpers.c
15221         (mono_method_desc_full_match): Add support for nested classes.
15223 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
15225         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
15227 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
15229         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
15230         waiting for too many threads.
15232 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
15234         * environment.c: Fix return value check on uname so we can get the 
15235         executing version on Solaris operating systems.
15237 2007-03-28  Jb Evain  <jbevain@gmail.com>
15239         * class.c (mono_type_get_name_recurse): Complete the
15240         fix for the creation of assembly qualified names for
15241         pointer types. Fixes #81208.
15243 2007-03-27  Dick Porter  <dick@ximian.com>
15245         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
15246         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
15247         changed.
15249         * threads.c
15250         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
15251         the value of ReleaseMutex().
15253 2007-03-27  Dick Porter  <dick@ximian.com>
15255         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
15256         in little-endian order, not network endian, so must be converted
15257         to host endian here.  Fixes bug 80593.
15259 2007-03-22  Jb Evain  <jbevain@gmail.com>
15261         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
15262         qualified names for pointer types. Fixes #81208.
15264 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
15266         * marshal.c: Add support for PreserveSigAttribute. 
15267         
15268         Code is contributed under MIT/X11 license.
15270 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
15272         * process.c: Fix endianness issues. Fixes #81126.
15274         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
15275         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
15277         * image.c (mono_image_lookup_resource): Make this work on big-endian
15278         machines.Change API contract so the caller needs to free the return value.
15279         
15280         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
15281         API change.
15282         
15283 2007-03-14  Martin Baulig  <martin@ximian.com>
15285         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
15286         mono_type_get_desc() as well.
15288 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
15290         * icall.c:  Fix environ access in VS.  
15291         
15292 2007-03-13  Alp Toker  <alp@atoker.com>
15294         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
15295         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
15296         #63841.
15298 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
15300         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
15301         circular references among dynamic methods. Fixes #81091.
15303         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
15305 2007-03-09  Martin Baulig  <martin@ximian.com>
15307         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
15309 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
15311         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
15312         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
15313         
15314         Code is contributed under MIT/X11 license.
15315         
15316 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
15318         * loader.c: Reapply patch for bug #79424.
15320 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15322         * metadata.c (mono_type_to_unmanaged): Only convert object to
15323         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
15325 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
15327         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
15328         (and incorrectly set) is_reference field from MonoGenericInst.
15330 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15332         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
15333         a little earlier.
15335         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
15337         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
15339 2007-03-05  Miguel de Icaza  <miguel@novell.com>
15341         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
15342         FileOptions.1 value to mean "temporary", map that to
15343         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
15345         Fixes 80688
15347 2007-03-03  Marek Habersack  <mhabersack@novell.com>
15349         * appdomain.c: implement MS .Net style shadow copying. Copies of
15350         the assemblies are made in a subdirectory of the dynamic base
15351         directory, the assembly names are preserved.
15352         Copy .mdb and .config files along with the assemblies being shadowed.
15354 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15356         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
15357         (emit_marshal_handleref): Ditto.
15359         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
15360         on Visual C++. Fixes #80671.
15362 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15364         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
15365         for clone operations.
15367 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15369         * marshal.c: Fix warnings.
15371 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
15373         * loader.c: allow case-insensitive matching of the dll name
15374         in dllmap handling when prefixed with "i:".
15376 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
15378         * threads.c: Fix #ifdef for dummy_apc function for VS.
15380 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
15382         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
15384 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
15385         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
15386         giving precedence to the methods with a fully qualified name
15387         (InterfaceName.MethodName) when building the interface sections
15388         of the vtable.
15390 2007-02-16  Dick Porter  <dick@ximian.com>
15392         * threadpool.c (append_job): Fix fast-path array handling, so it's
15393         less likely the array will grow exponentially when the load is
15394         heavy.
15396 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15398         * metadata-internals.h, loader.c: fix dllmap lookup order
15399         for non-function maps, too, and prepare for fallback code.
15401 2007-02-12  Robert Jordan  <robertj@gmx.net>
15403         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
15404         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
15405         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
15406         GlobalFree. Fixes a part of bug #77075.
15408 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
15410         * loader.c: implemented typedef parent in field memberref.
15412 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
15414         * marshal.c: Fix warnings and remember to call Release on
15415         IUnknown of RCW.
15416         
15417         Code is contributed under MIT/X11 license.
15419 2007-02-10  Miguel de Icaza  <miguel@novell.com>
15421         * class-internals.h: Add MonoHandleRef definition, and
15422         handleref_class to mono_defaults. 
15424         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
15425         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
15427         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
15428         (do nothing on this stage)
15429         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
15430         (emit_marshal_handleref): New method, used for argument handling
15431         of HandleRefs. 
15433 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
15435         * class.c (mono_class_setup_parent): Lazily init com types.
15436         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
15437         init com types.
15438         * object.c (mono_remote_class_vtable): Lazily init com types.
15439         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
15440         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
15441         * domain-internals.h: Expose mono_init_com_types.
15442         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
15443         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
15444         Add support for COM Callable Wrapper marshalling.
15445         * marshal.h: Add icall definitions.
15446         * gc.c: Handle freeing of CCWs in finalizer code.
15447         
15448         Code is contributed under MIT/X11 license.
15450 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
15452         * reflection.c: changed all the signature encoding code to use
15453         a variable-sized buffer.
15455 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15457         * marshal.c: locking fixes: never take the loader lock
15458         or other runtime locks when holding the marshal lock
15459         (fixes bug#80664).
15461 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
15463         * marshal.c: make the delegate function pointer mapping
15464         work for the moving GC.
15466 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
15468         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
15469         for bug #80618.
15471 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15473         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
15474         gmodule.
15476 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15478         * threadpool.c: made the code moving-GC safe.
15480 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
15482         * assembly.c, boehm-gc.c, class-internals.h, class.c,
15483         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
15484         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
15485         warning cleanup.
15486         * reflection.c: warning cleanup, some threading and moving GC fixes.
15488 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
15490         * class.c, loader.c: create the needed Set/Get/Address array methods
15491         as well as the .ctors in mono_class_init (), fixes bug #80567.
15493 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
15495         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
15496         we doesn't decrease its alignment. Should fix the sparc build.
15498 2007-01-24  Dick Porter  <dick@ximian.com>
15500         * socket-io.c
15501         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
15502         Create the returned object if we need to ignore an unsupported
15503         socket option.  Fixes a segfault reported by Atsushi.
15505 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
15507         * class.c, object.c: restrict GC-tracked fields to
15508         UIntPtr fields used inside corlib, so we provide better
15509         type info to the GC and also allow broken packing as in
15510         bug #80580.
15512 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
15514         * sgen-gc.c: removed duplicated function.
15516 2007-01-19  Miguel de Icaza  <miguel@novell.com>
15518         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
15519         value that means that the value is not supported, but that we
15520         should not return a failure, but instead report this as a
15521         successful operation.
15523 2007-01-19  Raja R Harinath  <rharinath@novell.com>
15525         Fix tests/bug79956.2.il
15526         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
15527         (mono_generic_class_get_class): If the generic definition in an
15528         enum, copy over other fields related to it.
15530 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15532         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
15533         genericinst enums (bug #79215).
15535 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
15536         * class.c: Fix bug 80307.
15538 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
15540         * image.c: if the file table is not present, try to load
15541         all the modules, since we don't have info about them
15542         having or not metadata (bug #80517).
15543         * assembly.c: allow mono_assembly_load_references () to
15544         work for netmodules.
15546 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15548         * image.c, metadata-internals.h, object.c: execute module
15549         cctors when running on the 2 runtime if present (bug #80487).
15551 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
15553         * icall.c: optimized InitializeArray() on bigendian.
15555 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
15557         * icall.c: fix for the broken ARM FPA double format.
15559 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15561         * icall.c: handle endian issues for r4 and r8 types, too, in
15562         the InitializeArray() icall.
15564 2007-01-15  Miguel de Icaza  <miguel@novell.com>
15566         * loader.c (mono_loader_error_prepare_exception): Clear the error
15567         once we have extracted the information from it, do this before we
15568         call into the JIT's class loading mechanisms.
15570         * object.c (mono_class_create_runtime_vtable): Do not clear the
15571         loader error before calling mono_class_get_exception_for_failure
15572         as the loader error is needed inside
15573         mono_class_get_exception_for_failure to throw the error (thinko).
15575         Fixes #80521
15576         
15577 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15579         * reflection.c: align fields rva data so it's faster to load at
15580         runtime.
15582 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15584         Prepare to simplify GenericMethod handling.
15585         * class-internals.h (mono_method_get_context): New accessor function.
15586         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
15587         rather than directly accessing '->context' field.
15589         * class-internals.h (_MonoGenericParam.method): Move ...
15590         (_MonoGenericContainer): ... here.  Add into union with klass field.
15591         * class.c, icall.c, loader.c, metadata.c, reflection.c:
15592         Update to changes.
15594 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
15596         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
15597         the wrapper type enum and reduce relocations.
15599 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15601         * reflection.c (inflate_mono_method): Reuse method instantiation
15602         from the generic method, if available.
15604 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15606         * marshal.c (emit_marshal_variant): Fix conv_arg
15607         type in last commit, based on whether parameter is byref.
15608         
15609 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15611         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
15612         marshalling.
15613         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
15614         MONO_TYPE_OBJECT back for VARIANT support.
15616 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15618         * marshal.c, marshal.h, icall-def.h: Implement 
15619         Marshal.ReAllocCoTaskMem.
15621 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
15623         * marshal.c: memory retention fixes: use the proper
15624         image cache for runtime_invoke method lookups.
15626 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15628         * mempool.c: added code to help debug mempool allocations.
15630 2007-01-11  Dick Porter  <dick@ximian.com>
15632         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
15633         support (experimenting with faking it with IP_MTU_DISCOVER for
15634         systems that don't have IP_DONTFRAGMENT.)
15635         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
15636         icall.
15638         * icall-def.h: new System.Net.Sockets.Disconnect icall.
15640         * socket-io.h: Add new fields to MonoSocketAsyncResult
15641         corresponding to the new ones in Socket.cs.
15643 2007-01-11  Raja R Harinath  <rharinath@novell.com>
15645         Fix IronPython regression mentioned in #80249
15646         * metadata.c (do_mono_metadata_parse_generic_class): Clear
15647         'cached_context' field, since it may have been initialized as a
15648         side-effect of metadata parsing.
15650         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
15651         (_MonoGenericClass.cached_class): Move here and rename from lone
15652         remaining field of ...
15653         (_MonoInflatedGenericClass): ... this.  Remove.
15654         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
15655         to changes.
15657         Fix mcs/tests/test-128.cs regression.
15658         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
15659         2007-01-10 change below.
15660         [MONO_TYPE_OBJECT]: Recurse into array case.
15662 2007-01-11  Raja R Harinath  <harinath@gmail.com>
15664         * class-internals.h (mono_get_inflated_generic_class): Remove.
15665         * class.c (mono_get_inflated_generic_class): Remove.
15666         (mono_generic_class_get_class): Rename from
15667         mono_class_create_generic.
15668         (mono_class_from_mono_type) [GENERICINST]: Use it.
15669         * reflection.c, metadata.c: Update to changes.  Use
15670         'mono_class_from_mono_type'.
15672 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15674         * reflection.c: use passed type when encoding an array element
15675         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
15677 2007-01-09  Robert Jordan  <robertj@gmx.net>
15679         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
15680         result arguments (someDelegate.EndInvoke (unrelatedAres)).
15681         Fixes bug #80392.
15683 2007-01-09  Raja R Harinath  <rharinath@novell.com>
15685         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
15687         * object.c (set_value): Avoid aliasing between type->data.klass
15688         and type->data.generic_class.
15690         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
15692 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15694         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
15695         between type->data.klass and type->data.generic_class.
15697 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
15699         * marshal.c: In MS.NET, StringBuilder objects are not copied by
15700         value in out parameters.
15702 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15704         Simplify invariant for MonoGenericClass::klass field.
15705         * class.c (mono_class_create_generic): Verify 'klass' is null.
15706         * metadata.c (do_mono_metadata_parse_generic_class): Don't
15707         initialize 'klass' field.
15709 2007-01-05  Raja R Harinath  <rharinath@novell.com>
15711         Ongoing work to avoid redundant data and simplify invariants.
15712         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
15713         'generic_class', and change type to a GenericInst.
15714         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
15715         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15717 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
15719         * class.c : skip io-layer under PLATFORM_WIN32.
15721 2007-01-03  Tor Lillqvist  <tml@novell.com>
15723         Fix #80305: In a bundled executable, look in the bundled exe
15724         assembly to determine the runtime version. Add the possibility to
15725         bundle also the machine.config file.
15726         
15727         * assembly.c (mono_assembly_open_from_bundle): Make
15728         non-static. Allow being called even if we have no bundled
15729         assemblies, and return NULL right away in that case.
15731         * domain-internals.h: Declare mono_assembly_open_from_bundle()
15732         here.
15734         * domain.c (app_config_parse): Take an assembly exe file name as
15735         parameter instead of a config file name. Check for a bundled
15736         config file for that assembly by calling
15737         mono_config_string_for_assembly_file() (see below) before looking
15738         for one in the file system.
15739         (get_runtimes_from_exe): Corrsponding change to call of
15740         app_config_parse().
15741         (get_runtimes_from_exe): Check for bundled assembly exe file first
15742         by calling mono_assembly_open_from_bundle(). If no bundled
15743         assembly exe file is found, call mono_image_open() as before to
15744         look it up in the file system.
15746         * mono-config.c: Add variable bundled_machinec_onfig.
15747         (mono_config_string_for_assembly_file): New function.
15748         (mono_config_for_assembly): Move code snippet that looks for a
15749         bundled assembly .config file into the above new function. Call
15750         it.
15751         (mono_register_machine_config, mono_get_machine_config): New
15752         functions to set and retrieve
15754         * assembly.h: Declare mono_register_machine_config().
15756         * mono-config.h: Declare mono_get_machine_config() and
15757         mono_config_string_for_assembly_file().
15759         * icall.c: No declaration of environ necessary on Win32. It is
15760         declared (as a macro expanding to a function call) in stdlib.h.
15761         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
15762         New internal mono function. Returns the value of
15763         mono_get_machine_config() as a Mono string.
15765         * icall-def.h: Add get_bundled_machine_config().
15767 2007-01-04  Raja R Harinath  <rharinath@novell.com>
15769         Remove redundant field
15770         * class-internals.h (_MonoGenericContext.container): Remove field.
15771         * loader.c (mono_method_get_signature_full): Don't parse a
15772         "container" for a signature parse when the signature is inflated
15773         immediately.
15774         (method_from_methodspec): Likewise, for a generic_inst.
15775         * class.c, metadata.c, reflection.c: Update to changes.
15777 2006-01-04  Raja R Harinath  <rharinath@novell.com>
15779         * class-internals.h (_MonoGenericClass): Rename 'context' field to
15780         'cached_context', and change semantics -- it starts off NULL, and
15781         is initialized on demand.
15782         * class.c (mono_generic_class_get_context): New accessor to
15783         replace 'context' field accesses.
15784         (mono_class_get_context): New helper.
15785         (*): Update to changes.
15786         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
15788 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15790         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
15791         before the memcpy.   Fixes Marshal2 regression.
15793 2007-01-02  Jb Evain  <jbevain@gmail.com>
15795         * blob.h: add a MONO_TYPE_ENUM definition
15796         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
15797         fix the encoding of arrays of enums in custom attributes.
15799         Fixes #79666.
15801 2007-01-01  Miguel de Icaza  <miguel@novell.com>
15803         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
15804         string is null terminated, but only cut the string short if it
15805         overflows the buffer.   
15806         
15807         (mono_string_to_byvalstr): Also fix this routine.   The code here
15808         was not properly terminating a string (it was only terminated
15809         because of the previous catch-all memset). 
15811         I left the memset, because I do not know if applications expect
15812         the runtime to clear this region. 
15814         Fixes #79944.
15816         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
15817         Clear the error before returning to unmanaged code to prevent the
15818         runtime from being confused later on (fixes  80420).
15819         (ves_icall_type_from_name): Always call mono_loader_clear_error
15820         after parsing a type that could have failed.
15821         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
15823         * loader.c (mono_loader_clear_error): Fix indentation.
15825 2006-12-28  Martin Baulig  <martin@ximian.com>
15827         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
15829 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15831         * reflection.c: patch from Rolf Bjarne Kvinge to fix
15832         getting a token for an EnumBuilder.
15834 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15836         * reflection.c: be more careful in case resource generation
15837         fails to create the data array.
15839 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15841         * sgen-gc.c: write barrier for clone and fix unregister handles.
15843 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15845         * reflection.c: some fixes needed in the generics code for the moving GC.
15847 2006-12-22  Robert Jordan  <robertj@gmx.net>
15849         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
15850         account. Fixes bug #80299.
15852 2006-12-21  Raja R Harinath  <rharinath@novell.com>
15854         Fix WaitHandle usage in delegates.
15855         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
15856         * object.c (mono_wait_handle_new): Use the property set method to
15857         initialize the handle.
15858         (mono_wait_handle_get_handle): New.
15859         * threadpool.c (mono_async_invoke): Use it.
15860         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
15861         Likewise.
15862         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
15864 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
15866         * marshal.c (emit_marshal): Call emit_marshal_variant and
15867         emit_marshal_com_interface when applicable.
15868         (emit_marshal_variant, emit_marshal_com_interface): Add
15869         methods for this case and remove if's from emit_marshal_object.
15870         
15871 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15873         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15875 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15877         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15878         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15879         and GlobalFree on Windows. Remove FIXME.
15881 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15883         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15884         implementation for managed objects.
15886 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15888         * object.c: implemented code to be used for checking
15889         that no reference field overlaps with non-references.
15891 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15893         * threadpool.c: fix queue code to be compatible with the
15894         moving GC.
15896 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15898         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15899         in structures by throwing ArgumentNullException.
15901         (emit_marshal_safehandle): Also when they are null parameters.
15903         (emit_marshal_safehandle): Add support for ref
15904         SafeHandles parameters
15906 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15908         * profiler.c: updated to use the mono-dl API instead of
15909         gmodule.
15911 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15913         * profiler.c: updated to use the mono-dl dynamic loading
15914         API instead of gmodule.
15916 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15918         * profiler.c: use readlink, older versions of glib don't have
15919         g_file_read_link ().
15921 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15923         * profiler.c: try to detect the path to mono if libc fails to provide
15924         a useful name (bug #80286).
15926 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15928         Fix #80242
15929         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15930         instance, use the generic type definition instead.
15931         (ves_icall_Type_GetNestedTypes): Likewise.
15932         * class.c (mono_class_create_generic): Always set the
15933         nested_classes of a generic instance to NULL, even if the generic
15934         type definition has nested types.
15936 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15938         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15939         and fix on Linux.
15940         
15941 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15943         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15944         my arguments were in the wrong order.   I also fixed the Windows
15945         version which seems to have had the same issue.
15947         (mono_free_bstr): On Unix, this is g_free.
15948         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15949         conversions (for the tests in corlib to pass).
15951 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15953         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15954         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15955         exception if a ref SafeHandle in a struct has changed).
15956         
15957         (emit_struct_conv): Do not perform layout checks for classes
15958         derived from SafeHandle, as those are specially handled. 
15960         (emit_object_to_ptr_conv): Add support for
15961         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15963         (emit_marshal_safehandle): Implement conversion of return values
15964         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15965         
15966         * threads.c: WaitHandle now is compiled with two different handles
15967         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15968         for 2.0.
15969         
15970         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15971         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15972         these routines to cope with both kinds of fields.
15974 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15976         * metadata.c (mono_type_to_unmanaged): Handle the case where
15977         type->data.klass is a SafeHandle, and in that case, return the
15978         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15979         MONO_MARSHAL_CONV_SAFEHANDLE. 
15981 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15983         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15984         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15985         calling emit_marshal_object.
15987         (emit_marshal_safehandle): Implement marshalling of
15988         SafeHandle parameters (no ref support yet).
15990         (MarshalAction): Document the defines as I implement
15991         them for SafeHandle.
15993         (emit_marshal_object): indentation police.
15995         * class-internals.h: Define MonoSafeHandle.
15996         Add safehandle_class to MonoDefaults type.
15998         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15999         list of classes to check for fields. 
16001         * domain.c (mono_init_internal): Add SafeHandle to the list of
16002         mono_defaults loaded.
16004 2006-12-15  Raja R Harinath  <rharinath@novell.com>
16006         Fix #80253
16007         * reflection.c (mono_reflection_bind_generic_parameters): If the
16008         generic type definition is a type builder, ensure that it is fully
16009         initialized before instantiating it.  Kill some dead code.
16011 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
16013         * object.c: clear the loader_error () before loading
16014         more metadata stuff (bug #80258).
16016 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
16018         * icall.c, icall-defs.h: type modifiers icalls for
16019         parameters and properties.
16021 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16023         * object.c, icall.c: fixed warnings.
16025 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16027         * marshal.c: fixed a couple of leaks and coding style in a few places.
16029 2006-12-08  Dick Porter  <dick@ximian.com>
16031         * process.c: Cope with NULL ProcessStartInfo arguments on windows
16032         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
16033         80173.
16035 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16037         * process.c: ProcessStartInfo may have only filename set and
16038         arguments can be NULL.
16040 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16042         * icall.c: fix leak found by Robert Jordan.
16044 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16046         * marshal.c, marshal.h: generate managed method to access an element
16047         of a multi-dimensional array.
16049 2006-11-30  Paolo Molaro (lupus@ximian.com)
16051         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
16053 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16055         * icall.c: back out GetFields () fix until the serialization code is
16056         fixed to not depend on the incorrect behaviour.
16058 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
16060         * profiler.c: provide defaults if none are set.
16062 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16064         * Makefile.am, attrdefs.h: new public header file with
16065         constants for attributes for use by embedders.
16067 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
16069         * icall.c: GetFields () fix for bug #80064.
16071 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
16073         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
16074         removed long unused icalls.
16076 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
16077   
16078         * marshal.c: 
16079                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
16080                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
16081                 can be generated without a delegate class.
16082                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
16083         
16084         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16086 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16088         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
16089         #80069.
16091 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16093         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
16094         icall-def.h: added icalls needed by System.GC.
16096 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
16098         * loader.c: ensure the class in catch clauses is handled
16099         correctly for generics methods (fixes bug#79980).
16101 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
16103         * monitor.h, monitor.c: added mono_locks_dump () function
16104         to help debug deadlocks involving managed locks.
16106 2006-11-13  Dick Porter  <dick@ximian.com>
16108         * file-io.c (get_file_attributes): If the file is a symlink try
16109         and get the stat data for the target, but also add the
16110         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
16111         the specs for the windows symlink support, but will probably have
16112         to be reworked when I have test data from a vista machine.  Fixes
16113         bug 79887.
16115 2006-11-13  Dick Porter  <dick@ximian.com>
16117         * gc.c (mono_domain_finalize): 
16118         * marshal.c (mono_delegate_begin_invoke): 
16119         * threadpool.c (socket_io_init, mono_thread_pool_init)
16120         (mono_thread_pool_finish): 
16121         * monitor.c (mono_monitor_try_enter_internal): 
16122         * threads.c (mono_thread_resume, mono_thread_init)
16123         (mono_thread_suspend_all_other_threads)
16124         (mono_thread_execute_interruption): 
16125         * appdomain.c (mono_domain_unload): Check for NULL error returns
16126         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
16127         75733.
16129 2006-11-11  Miguel de Icaza  <miguel@novell.com>
16131         * process.c
16132         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
16133         Only close the handle if the value of the handle is not
16134         INVALID_HANDLE_VALUE.  This just makes the process a bit more
16135         robust.
16137         Improvement for #75733, so that we do not run into this problem. 
16139         
16140         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
16141         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
16142         internal variables.  Fixes #79462 
16143         
16145 2006-11-09  Dick Porter  <dick@ximian.com>
16147         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
16148         Use poll() not select().  Fixes bug 79397.
16150 2006-11-09  Raja R Harinath  <rharinath@novell.com>
16152         Fix #79872
16153         * assembly.c (mono_assembly_load_from_full): Check that the given
16154         image has an assembly manifest.
16156 2006-11-09  Ankit Jain  <jankit@novell.com>
16158         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
16159         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
16160         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
16162 2006-11-07  Dick Porter  <dick@ximian.com>
16164         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
16165         Put the old resolver behaviour back for pre-2.0 profiles.
16167 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
16169         * threadpool.c: precise GC and locking fixes.
16171 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
16173         * class.c: don't load types that have an explicit unaligned
16174         managed reference. Provide better info in the TypeLoad exception.
16175         Part of the fix for bug #79744.
16176         * object.c: use the correct check for class type load issues.
16178 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
16180         * class.c: enforce alignment of fields with managed references
16181         even when Pack=1 is forced by the user (bug #77788).
16183 2006-11-03  Dick Porter  <dick@ximian.com>
16185         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
16186         If the address reverse lookup fails, return it as the hostname
16187         anyway.  Fixes bug 79721.
16189 2006-11-03  Dick Porter  <dick@ximian.com>
16191         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
16192         Fix build on Windows.
16194 2006-11-02  Dick Porter  <dick@ximian.com>
16196         * icall-def.h: 
16197         * object-internals.h: 
16198         * exception.c (mono_get_exception_thread_interrupted): 
16199         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
16200         Fixes bug 74525.
16202         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
16203         Check for pending Thread.Interrupt.
16205 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
16206         * loader.c: Fixed bug 79684.
16208 2006-10-27  Dick Porter  <dick@ximian.com>
16210         * file-io.c (get_file_attributes): Force symlinks to directories
16211         to be returned as a regular file.  Fixes bug 79733.
16212 2006-10-26  Dick Porter  <dick@ximian.com>
16214         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
16215         CreateFile to open a directory then we need to set the
16216         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
16218 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
16220         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
16221         friends.
16223 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16225         * sgengc.c: small cleanup of timer code.
16227 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16229         * sgen-gc.c: fix some warnings and start adding support for
16230         complete object removal on domain unload.
16232 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
16234         * assembly.c: build_assembly_name should not consider a version
16235         number without build or revision number invalid. Fixes bug #79715.
16237 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
16239         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
16240         call kernel32 function OutputDebugString directly.
16241         
16242         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16243         
16244 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
16246         * reflection.c: small cleanup, using a function to insert a MonoString
16247         in the string heap.
16249 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
16251         * reflection.c: moving GC fixes.
16253 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
16255         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
16256         all the objects with finalizers belonging to an unloading appdomain.
16258 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
16260         * sgen-gc.c: added ability to allocate even when the nursery is fully
16261         pinned and fixed a couple of bugs.
16263 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
16265         * threads.h: Revert the last change for now.
16267         * threads.h (mono_thread_get_pending_exception): Rename this to
16268         mono_thread_get_undeniable_exception ().
16270 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
16272         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
16273         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
16274         when fname does not refer to valid assembly. This result in a more
16275         meaningful error message.
16276         * exception.c: added mono_get_exception_bad_image_format2 which 
16277         constructs a BadImageFormatException using the ctor taking a custom
16278         message and the file name. Passing in a NULL msg results in a default
16279         message.
16280         * exception.h: define mono_get_exception_bad_image_format2 function.
16281         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
16282         when file name pointed to an invalid IL image. Use 
16283         mono_get_exception_file_not_found2 to construct FileNotFoundException,
16284         as this results in a more meaningful error message.
16286 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
16288         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
16289         #79465.
16291 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
16293         * metadata.c (mono_type_size): Change the align parameter to guint32 for
16294         consistency with the other _size functions.
16295         (mono_type_stack_size): Ditto.
16297         * class.c object.c icall.c: Fix warnings caused by the above change.
16299         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
16301         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
16303         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
16305 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
16307         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
16308         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
16309         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
16310         threadpool.h, threads-types.h: mark more internal functions.
16312 2006-10-11  Dick Porter  <dick@ximian.com>
16314         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
16315         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
16316         reproduce the bug even before applying the fix.)
16318 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
16320         * reflection.c: allow retrieving attributes for arguments in generic
16321         methods (bug #79241).
16323 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
16325         * debug-mono-symfile.c: properly check fopen () result (found by
16326         coverity).
16328 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
16330         * reflection.c: make error message clearer and fixed two
16331         issuelets found by Coverity.
16333 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
16335         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
16337 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16339         * object-internals.h, gc-internal.h, profiler-private.h:
16340         mark internal functions.
16342 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16344         * reflection.c: put data in the text section.
16345         * icall.c: recognize more types in type_from_typename ().
16346         * process.c, marshal.c: added some GC FIXMEs.
16348 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16350         * loader.c: check for NULL before initializing.
16352 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
16354         * gc.c (finalizer_thread): Use a non-alertable wait here.
16356         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
16357         until the correct solution is found.
16359 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16361         * reflection.c (mono_module_get_object): Avoid an assert when operating on
16362         modules with no metadata. Fixes #79596.
16364         * image.c (load_metadata_ptrs): Put back the error message when
16365         the #- heap is encountered since the support is not complete yet.
16367 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16369         * gc.c: do not allow the user to SuppressFinalize () a
16370         delegate because it would leak the trampoline if present.
16372 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16374         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
16375         PropertyPtr table.
16377 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
16379         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
16381         * metadata.c (mono_metadata_get_param_attrs): Ditto.
16383         * row-indexes.h: Add definitions for *Ptr tables.
16385         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
16387         * metadata.c (mono_metadata_translate_token_index): New helper function to
16388         translate table indexes used in uncompressed metadata.
16389         (mono_metadata_decode_table_row): Ditto.
16390         (mono_metadata_decode_table_row_col): Ditto.
16392         * metadata.c: Add table schema for *Ptr tables.
16394         * class.c loader.c: Use the new helper function to access the affected metadata
16395         tables.
16396         
16397         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
16398         #38532.
16399         
16400 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
16402         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
16403         sequences which can be unbounded in size. Fixes #79583.
16405 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
16407         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
16408         static initialization.
16410         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
16412         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
16414         * domain.c (mono_domain_free): Free up type_init_exception_hash.
16416         * object.c (mono_runtime_class_init): Implement correct semantics when a static
16417         ctor fails, i.e. throw the same exception on subsequent accesses.
16418         
16419 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
16421         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
16422         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
16423         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
16424         Handle marshalling of interfaces and VARIANTs contained in structs.
16425         
16426         Code is contributed under MIT/X11 license.
16427         
16428 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
16430         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
16431         
16432         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
16433         mempool.
16435 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16437         * console-io.c: ignore previous SIGINT handler.
16439 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
16441         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
16442         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
16443         #79460, #79461, #79485.
16445         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
16447         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
16448         #79217.
16450 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16452         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
16453         could be generated from it.
16455 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
16457         * rand.c: fix read loop to correctly handle EINTR.
16459 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16461         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
16462         internal calls are defined to keep methods closer to the declaring
16463         type and allow a significant reduction in runtime relocations and
16464         memory usage.
16466 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
16468         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
16469         exception message to have FileNotFoundException use the default
16470         assembly load error message. Fixes bug #79426.
16471         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
16473 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16475         * threadpool.c: (start_thread_or_queue) use the root domain when
16476         creating the thread instead of the async object one.
16478 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
16480         * class.c, object.c, class-internals.h, reflection.c:
16481         for arrays, store element_size inside MonoClass (speedup
16482         for array object creation).
16484 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
16486         * icall.c: fixed CodeBase to use the file name and not the module
16487         name (bug #79365).
16489 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16491         * mono-debug.c, mono-debug.h: export find_method as
16492         mono_debug_find_method ().
16494 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16496         * debug-helpers.c, class-internals.h: added a few functions useful
16497         when debugging under gdb.
16499 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16501         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
16502         characters that need special handling.
16504 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16506         * mono-config.c: make the os/cpu specification more flexible,
16507         allowing lists and negation.
16509 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
16511         * marshal.c: COM Interop fixes. Handle case where method->klass.
16512         is interface. Handle BSTR/MonoString when null. Use CDECL as 
16513         calling convention on non-windows platforms. This is for
16514         compatibility with XPCOM and MainWin COM.
16515         
16516         Code is contributed under MIT/X11 license.
16517         
16519 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
16521         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
16522         correctly. Fixes #79217.
16524         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
16526 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
16528         * mono-config.c: allow both an os and cpu attribute for dllmap
16529         and dllentry elemnets to enable a single config file to be used
16530         for multiple architectures.
16532 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
16534         * loader.c: MonoLoaderError was cleared too soon on load failure.
16535         Fixes bug #79424.
16537 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
16539         * icall.c: use the defining class vtable when accessing a
16540         static field, not a pobblibly derived class.
16542 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
16544         * icall.c string-icalls.c: Remove references to unicode.h.
16546         * unicode.h unicode.c Makefile.am: Remove these unused source files.
16548         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
16550         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
16551         indicating the image where custom marshaller types should be looked up.
16552         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
16553         custom marshallers, instead of corlib. Fixes #79425.
16555 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
16557         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
16559 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
16561         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
16562         Implement Environment.ProcessorCount.
16563         
16564         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
16565         Implement Environment.ProcessorCount.
16566         
16567         * icall.c: 
16568         Add Environment.ProcessorCount icall.
16569         
16570         Patch by Jason McFall.
16572 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16574         * assembly.c: don't append .exe/.dll when the filename already contains
16575         one of those extensions.
16577 2006-09-12  Martin Baulig  <martin@ximian.com>
16579         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
16580         to array interfaces.
16582 2006-09-11  Martin Baulig  <martin@ximian.com>
16584         * reflection.c (mono_image_build_metadata): Create the
16585         MethodImpl's after emitting all types and methods, so we don't
16586         need another fixup pass for them.
16588 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
16590         * class.c (mono_class_from_name_case): Fix regression introduced by the last
16591         change.
16593 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
16595         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
16596         unload.
16598 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
16600         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
16601         args is not set. Fixes #78926.
16603 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
16605         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
16607         * image.c (load_class_names): Move this to class.c, and rename it to 
16608         'mono_image_init_name_cache'.
16609         (load_modules): Fix a warning.
16611         * class.c icall.c image.c: Initialize image->name_cache lazily.
16613         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
16614         on its name using information in the AOT file.
16616         * class.c (mono_class_from_name): Use the new hook function.
16618 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
16620         * reflection.c (mono_param_get_objects): Handle enum default parameter values
16621         correctly.
16623         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
16624         Fixes #79289.
16625         
16626 2006-09-06  Martin Baulig  <martin@ximian.com>
16628         * icall.c (mono_lookup_internal_call): Small fix.
16630 2006-09-05  Raja R Harinath  <rharinath@novell.com>
16632         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
16633         double g_free.
16635 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
16637         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
16638         when --debug is specified.
16640 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
16642         * class.c (setup_generic_array_ifaces): Fix a warning.
16644 2006-09-04  Miguel de Icaza  <miguel@novell.com>
16646         * Temporarily remove the patch to assemly.c that checks the
16647         assembly versions as it breaks our gacutil.
16649 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
16651         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
16653         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
16654         a net 1.0 runtime.
16656         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
16657         created using the default ctor. Fixes #79152.
16658         (mono_string_builder_to_utf16): Ditto.
16660 2006-09-01  Martin Baulig  <martin@ximian.com>
16662         Fix handling of the generic array interfaces.
16664         * class-internals.h
16665         (MonoDefaults): Removed `generic_array_class' and added
16666         `generic_ilist' class.
16668         * class.c
16669         (mono_bounded_array_class_get): Add the new generic array interfaces.
16670         (setup_generic_array_ifaces): New static method; create vtable
16671         entries for each method in the generic array interfaces.
16673         * metadata.c
16674         (select_container): Allow "parent-less" generic methods.
16676         * marshal.c
16677         (mono_marshal_get_generic_array_helper): New public method.
16679         * icall.c
16680         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
16681         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
16682         moved the interncall into System.Array.
16684 2006-09-01  Raja R Harinath  <rharinath@novell.com>
16686         A few more cases of avoiding work on types with ->byref set.
16687         Has the real fix for #79238
16688         * icall.c (is_generic_parameter): New helper.
16689         (ves_icall_Type_GetGenericParameterPosition): Use it.
16690         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
16691         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16692         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
16693         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
16694         reference types.
16695         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
16696         reference types.
16697         (ves_icall_Type_get_IsGenericInstance): Likewise.
16698         (ves_icall_Type_get_IsGenericType): Likewise.
16700 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16702         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
16703         class if possible.
16705         * mempool.h (mono_mempool_get_allocated): New helper function.
16707         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
16708         change.
16710         * mempool.c: Fix warnings and the calculation of stats.
16712         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
16714         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
16716         * loader.c (mono_get_method_from_token): Update method_count stat.
16718         * class-internals.h (MonoStats): Add some stats.
16720 2006-08-31 Robert Jordan  <robertj@gmx.net>
16722         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
16723         with managed variants.
16724         All code is contributed under the MIT/X11 license.
16725         
16726 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
16728         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
16729         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
16731         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
16733         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
16734         with cycles in classes.
16736         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
16738         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
16739         missing a [MarshalAs] directive. Fixes #79203.
16741         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
16742         klass->marshal_info. Fixes #79217.
16744 2006-08-30  Martin Baulig  <martin@ximian.com>
16746         Committing a patch from Joachim Ante <joe@otee.dk>:
16747         Add support for binary data symbol stores.
16749         * debug-mono-symfile.c
16750         (mono_debug_open_mono_symbol_file): Renamed into
16751         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
16752         arguments.
16754         * mono-debug.c
16755         (mono_debug_open_image): Added `raw_contents' and `size' args.
16756         (mono_debug_init_2_memory): New public function.
16758 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
16760         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
16762 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16764         * appdomain.c: implement support for ShadowCopyFiles.
16766 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
16768         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
16769         when value is NULL (and should remove CID #51).
16771 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16773         * image.c: moved 2 functions to ../utils.
16775 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
16777         * gc.c: cope with the target object of a GC handle being NULL
16778         (bug #78877).
16780 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16782         * class.c: recursively check parent's explicit implementations
16783         of interface methods (fixes bug #79125).
16785 2006-08-19  Miguel de Icaza  <miguel@novell.com>
16787         * filewatcher.c: Avoid warnings when building, do not redefine
16788         constants that are defined.
16790         Remove warnings.
16792 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16794         * image.c: don't fail when the link points to an absolute path.
16796 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
16798         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
16799         Fix CID #3.
16801 2006-08-17  Miguel de Icaza  <miguel@novell.com>
16803         * image.c (full_path): A new method used to obtain the actual path
16804         of an assembly even in the presence of symbolic links.  
16806         This is necessary for the case where we are running a binary that
16807         has been GACed, but we are using the "published" path name
16808         ($prefix/mono/1.0/blah.exe) which happens to point to the real
16809         file in the GAC.
16811         This was the source of the failure for the `xsp' command with the
16812         recent AppDomain changes, as far as the runtime was concerned,
16813         there were two different assemblies: $prefix/mono/1.0/blah.exe and
16814         $prefix/mono/gac/blah/version/blah.exe.
16816         (do_mono_image_open): use full path
16818 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16820         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
16822 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
16824         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
16825         domain_id is supplied. Fix CID #241 and corlib's unit tests.
16827 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16829         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
16830         small structures. Fixes #78990.
16832 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16834         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
16836         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
16838 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16840         * appdomain.c:
16841         * marshal.c: don't load all the assemblies from a domain into newly
16842         created ones. The new domains might have different rules and load
16843         assemblies from different locations. Fixes bug #76757.
16845         Patch by Lluis. Conflicts resolved by Brian Crowell.
16847 2006-08-16  Alp Toker  <alp@atoker.com>
16849         * socket-io.c: First half of the fix for #79084.
16850         Set sa_size to the length of the content, not that of the struct.
16851         Don't add NULL suffix to the content, this should be done in
16852         managed code if needed.
16854 2006-08-14  Raja R Harinath  <rharinath@novell.com>
16856         Fix part of #79012
16857         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
16858         mono_metadata_parse_type returns NULL.
16860 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
16862         * normalization-tables.h : new file for string normalization data.
16863         * locales.c, locales.h, icall.c :
16864           added load_normalization_resource() for string normalization,
16865           and icall as well.
16866         * Makefile.am : added normalization-tables.h to the sources.
16868 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
16870         * marshal.c: Add more helper functions to reduce code duplication and use them
16871         everywhere.
16873 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16875         * marshal.c: Fix non-x86 stdcall warnings.
16876         
16877         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16878         them everywhere.
16880 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16882         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16883         type check on multi-dimensional arrays. Fixes #79000.
16885 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16887         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16888         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16889         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16890         * class-internals.h: add is_com_object to class structure.
16891         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16892         null checks to COM object marshalling. Fix .ctor call on RCW.
16893         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16894         
16895         All code is contributed under the MIT/X11 license.
16897 2006-08-09  Dick Porter  <dick@ximian.com>
16899         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16900         racing mono_monitor_allocator_lock() somewhere, so don't delete
16901         the critical section for now.  Found by running and exiting
16902         monodevelop.
16904 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16906         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16907         (ves_icall_System_ComObject_FindInterface): Ditto.
16908         (ves_icall_System_ComObject_CacheInterface): Ditto.
16910         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16911         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16913 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16915         * threadpool.c: treat pipes from process asynchronous reads as sockets
16916         when reading from them, so we get select/poll or epoll to wait for
16917         data.
16919 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16921         * loader.c: Fix a typo (CID #233) in the null check.
16923 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16925         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16926         Hopefully fixes #78949.
16927         
16928         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16929         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16930         bytes. Fixes #78972.
16932 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16934         * filewatcher.c: we need to set errno here.
16936 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16938         * filewatcher.c: let Win32Exception get the error value.
16940 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16942         * filewatcher.c: translate errno into win32 errors for Win32Exception
16943         to know what happened.
16945 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16947         * threadpool.c: Fix more warnings.
16949         * assembly.c (search_loaded): Fix warnings.
16951         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16952         (mono_async_invoke): Ditto.
16954 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16956         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16957         entries for __ComObject type in addition to ComImport types.
16958         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16959         about hash table.
16960         
16961         All code is contributed under the MIT/X11 license.
16963 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16965         * image.c: avoid tentative loading of modulerefs that contain
16966         no metadata (P/Invoke library names).
16968 2006-07-28  Dick Porter  <dick@ximian.com>
16970         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16971         mono_loader_lock() somewhere, so don't delete the critical section
16972         for now.  Found by running and exiting monodevelop.
16974 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16976         * filewatcher.c: define the inotify syscalls when we're building on
16977         linux and have sys/syscall.h. The build system might not have support
16978         for inotify but the target system might have it.
16980 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16982         * domain.c: Documentation updates.
16984         * loader.c (mono_free_method): Do not release the method
16985         information if we are being profiled, as profilers will use this
16986         information at shut down to present some data to the user.
16988         This is needed so that the profiler does not crash, as the
16989         profiler tends to keep MonoMethods around, and they might become
16990         invalid if we free these.
16992         (mono_get_method_constrained): Return the original CIL stream
16993         method as well, so verification can be performed against it.
16995 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16997         * filewatcher.[ch]: support for inotify file system watcher.
16998         * icall.c: add new internal calls for the inotify file system watcher.
17000 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17002         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
17003         #78888.
17005 2006-07-20  Dick Porter  <dick@ximian.com>
17007         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
17008         warning.
17010 2006-07-20  Dick Porter  <dick@ximian.com>
17012         * threads.c (start_wrapper): Do the thread cleanup while we still
17013         hold a reference to its object.  Fixes bug 78123.
17015 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
17017         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
17018         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
17019           "managed-to-managed".
17020         * icall.c: Redirect string constructors that take sbyte* to
17021           ves_icall_System_String_ctor_RedirectToCreateString.
17022         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
17023           to CreateString () methods with matching signature.
17024         * reflection.c: Use original security informations for
17025           MONO_WRAPPER_MANAGED_TO_MANAGED.
17026         * security-manager.c: Use original security informations for
17027           MONO_WRAPPER_MANAGED_TO_MANAGED.
17028         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
17029           that is a placeholder and only its address should be used.
17030         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
17031           that is a placeholder and only its address should be used.
17033 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
17035         Begin implementing COM Interop.
17036         * appdomain.c: Increment corlib version.
17037         * class.c: Set ComImport classes' parent to __ComObject.
17038         * loader.c: Mark cominterop methods as such.
17039         * domain.c: Add __ComObject class to MonoDefaults structure.
17040         * image.c: Add 2 hashtables to the image for COM Interop related methods
17041         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
17042         using the mempool allocator
17043         
17044         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
17045         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
17046         declaration for mono_metadata_type_dup_mp.
17047         
17048         * debug-helpers.c: Added strings for two additional wrapper types
17049         * object.c: Create proxy objects for ComImport classes
17050         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
17051         and added __ComObject class to MonoDefaults structure.
17052         
17053         * object-internals.h: Finish MonoRealProxy definition, and add definition of
17054         MonoComInteropProxy and MonoComObject.
17055         
17056         * marshal.c: Added support for COM Interop
17057         (signature_cominterop): Converts managed signature to corresponding
17058         unmanaged COM signature.
17059         (cominterop_get_function_pointer): gets unmanaged function pointer via
17060         COM object vtable
17061         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
17062         (cominterop_get_method_interface): returns interface type that method is defined on
17063         (mono_mb_emit_cominterop_call): emits native call to function pointer
17064         gotten from vtable
17065         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
17066         that matches signature of unmanaged function.
17067         (cominterop_get_native_wrapper): wrapper around adjusted method call.
17068         (cominterop_get_invoke): forwards call from proxy to __ComObject
17069         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
17070         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
17071         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
17072         
17073         * marshal.h: Added Marshal icall declarations.
17074         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
17075         so we can access them in finalizer
17076         
17077 2006-07-14  Dick Porter  <dick@ximian.com>
17079         * object.c (mono_type_initialization_cleanup): Fix a race
17080         condition by temporarily commenting out the critical section
17081         deletion.
17083 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
17085         * reflection.c (create_custom_attr): Fix some warnings.
17086         (create_custom_attr_data): Ditto.
17087         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
17088         types. Fixes #78855.
17090 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
17092         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
17094         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
17096 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
17098         * reflection.c (resolve_object): Add support for DynamicMethod.
17100         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
17101         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
17103 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
17105         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
17106         don't leak GPtrArray's pdata has we have no use (nor free) for it.
17108 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
17110         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
17111         Fixes #77888.
17113 2006-06-30  Raja R Harinath  <rharinath@novell.com>
17115         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
17116         slightly: remove a shadow local variable.
17118 2006-06-29  Raja R Harinath  <rharinath@novell.com>
17120         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
17121         definition that introduces the virtual function slot.
17122         Also fix Coverity #105.
17124 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
17126         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
17127         for dynamic assemblies. Fixes #78724.
17129 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
17131         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
17132         Fixes #78722.
17134 2006-06-21  Martin Baulig  <martin@ximian.com>
17136         * reflection.c
17137         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
17138         fixes #76484.
17140 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
17142         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
17144 2006-06-20  Raja R Harinath  <rharinath@novell.com>
17146         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
17147         nor TYPEREFs.
17148         * class.c (mono_class_create_from_typespec): Add 'context' argument.
17149         Inflate result if necessary.
17150         (mono_class_get_full): Remove old version.  Rename from
17151         'mono_class_get' and add 'context' argument.  Pass it to
17152         ..._create_from_typespec.
17153         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
17154         (mono_ldtoken): Revert change below.
17156 2006-06-20  Martin Baulig  <martin@ximian.com>
17158         * class.c (mono_ldtoken): Don't pass the generic context to
17159         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
17161 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
17163         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
17164         and later freeing it. Fixes #78638.
17166 2006-06-15  Miguel de Icaza  <miguel@novell.com>
17168         * icall.c (mono_class_get_throw): Revert over-zealous error
17169         throwing, the caller for mono_class_get_throw will cope with
17170         errors when classes are not properly initialized already.
17172         The code still copes with loader exceptions though.
17174         Fixes the regression in reftype1 and reftype3 from the CAS tests.
17175         
17176 2006-06-14  Miguel de Icaza  <miguel@novell.com>
17178         Fixes the `make run1' version of RuntimeAbort (to be commited,
17179         source is in Bugzilla).
17180         
17181         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
17182         FALSE on class loading failure instead of returning true.
17184         * class.c (mono_class_create_from_typedef): It is possible for
17185         mono_metadata_interfaces_from_typedef_full to fail if a class is
17186         not found, cope with this.
17187         
17189 2006-06-14  Dick Porter  <dick@ximian.com>
17191         * socket-io.c: 
17192         * process.c: Fix a bunch of signed/unsigned warnings from gcc
17193         4.1.1
17195 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
17197         * culture-info-table.h : oops, forgot to make it nsync with r61548.
17199 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17201         * icall.c: Another fix for building mono in Visual Studio.
17203 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17205         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
17206         
17207 2006-06-09  Martin Baulig  <martin@ximian.com>
17209         * debug-mono-symfile.c: Put this back and really fix it this
17210         time. Sorry for all the trouble.
17212 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
17214         * icall.c (mono_class_get_throw): Fix a warning.
17215         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
17216         ReflectionTypeLoadException if needed. Fixes #78606.
17218         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
17219         (mono_class_init): Ditto.
17221         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
17222         ref_only exceptions.
17223         (mono_loader_clear_error): Make this work even if there is no error.
17225 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
17227         * object-internals.h marshal.c marshal.h icall.c: Implement method 
17228         Marshal.GetComSlotForMethodInfo using internal call.
17230 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
17232         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
17233         a function for signalling it.
17235         * class.c (mono_class_from_typeref): Use the new kind of loader error when
17236         a referenced assembly is not found.
17238         * loader.c (mono_loader_error_prepare_exception): Add support for 
17239         LOADER_ERROR_ASSEMBLY. Fix formatting.
17241 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17243         * domain.c appdomain.c class-internals.h marshal.c: Add support 
17244         for VARIANT marshalling on windows and increment corlib version
17245         since Variant struct was added.
17247 2006-06-03  Miguel de Icaza  <miguel@novell.com>
17249         * debug-mono-symfile.c: Revert Martin's previous patch which broke
17250         stack trace line information:
17252         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
17253         (Martin) when looking up B which is between A and C, return A not C.
17255         Bug is #78573.
17257         Thanks to Alexander Olk for tracking this down.
17259 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
17261         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
17262         
17263         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
17264         avoid clobbering its value.
17265         (mono_string_to_lpstr): Fix a warning on windows.
17267 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
17269         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
17271         * reflection.c loader.c: Removed references to 'dummy' flag.
17273         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
17275         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
17276         it gets GC tracking.
17278         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
17279         GC tracking.
17280         
17281         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
17283         * marshal.c threadpool.c: Update callers of mono_async_result_new.
17285         * appdomain.c: Bump corlib version.
17287 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
17289         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
17290         CEE_STIND_REF when working with object references.
17292 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
17294         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
17295         Fixes #78539.
17297 2006-05-30  Miguel de Icaza  <miguel@novell.com>
17299         * loader.c (method_from_memberref): Fix argument value for
17300         mono_loader_set_error_method_load (I was passing the MonoClass
17301         instead of the class name char *).
17303 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
17305         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
17306         CEE_STIND_REF when working with object references.
17308 2006-05-30  Martin Baulig  <martin@ximian.com>
17310         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
17311         mono_method_full_name() change and replace the ':' with a '.'
17312         here.
17314 2006-05-30  Martin Baulig  <martin@ximian.com>
17316         * debug-mono-symfile.c
17317         (mono_debug_symfile_lookup_location): Fix the algorithm:
17318         when looking up B which is between A and C, return A not C.
17320 2006-05-29  Martin Baulig  <martin@ximian.com>
17322         * mono-debug.h
17323         (MonoDebugMethodInfo): Make the typedef public.
17324         (MonoDebugSourceLocation): New public struct.
17326         * mono-debug.c
17327         (mono_debug_source_location_from_address): Removed.
17328         (mono_debug_source_location_from_il_offset): Removed.
17329         (mono_debug_il_offset_from_address): Removed.
17330         (mono_debug_address_from_il_offset): Removed.
17331         (mono_debug_lookup_method): New public function.
17332         (mono_debug_lookup_source_location): New public function; replaces
17333         the old mono_debug_source_location_from_*() functions; see the
17334         inline documentation.
17335         (mono_debug_free_source_location): New public function.
17336         (mono_debug_print_stack_frame): New public function; see the
17337         inline documentation.
17339         * debug-mono-symfile.c
17340         (mono_debug_find_source_location): Renamed into
17341         mono_debug_symfile_lookup_location(); only take a
17342         `MonoDebugMethodInfo *' and an `offset' argument; added inline
17343         documentation.
17344         (mono_debug_find_method): Renamed into
17345         mono_debug_symfile_lookup_method().
17347 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
17349         * assembly.c (mono_assembly_open_full): Dont overwrite the status
17350         returned by mono_image_open_full ().
17352         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
17353         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
17354         #78517.
17356         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
17357         #78518.
17359 2006-05-27  Miguel de Icaza  <miguel@novell.com>
17361         * class.c (mono_class_from_typeref): handle missing images
17362         earlier, deals with bug #78418.   Refactor code; 
17364         Fix a warning introduced in my previous commit (some stale code
17365         from before I revisited my patch).
17367         * class.c (mono_class_create_from_typedef): On failure, remove the
17368         class from the MonoImage->class_cache as the class is not
17369         initialized;   Fixes the leak pointed out by Paolo.
17371 2006-05-25  Dick Porter  <dick@ximian.com>
17373         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
17374         DeleteCriticalSections until I figure out which one may still be
17375         sometimes locked when mono_thread_cleanup is called.
17377 2006-05-24  Dick Porter  <dick@ximian.com>
17379         * threads.c (mono_thread_cleanup): Move the threading cleanup out
17380         of mono_thread_manage and back into its own function, so it can be
17381         called after the finalizer thread has finished.
17383         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
17385 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
17387         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
17388         Fixes #78495.
17390         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
17391         with non-blittable elements.
17392         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
17394 2006-05-24  Martin Baulig  <martin@ximian.com>
17396         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17397         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
17399         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
17400         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
17401         `mono_debugger_event_handler' to NULL.
17403 2006-05-24  Martin Baulig  <martin@ximian.com>
17405         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
17407 2006-05-24  Martin Baulig  <martin@ximian.com>
17409         * mono-debug-debugger.h
17410         (mono_debugger_create_notification_function): Added
17411         `MonoCodeManager *' argument.
17413 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
17415         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
17417 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
17419         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
17420         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
17421         implementation.
17423 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
17425         * icall.c: precise GC support: objects can't be stored in unmanaged
17426         memory anymore, even if they are kept alive by other references: since
17427         they can move the GC needs to be able to always find them.
17429 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17431         * object.c: precise GC support for static fields. Support
17432         for moving GCs: write barriers and pinned allocation for interned
17433         strings.
17435 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17437         * domain.c, domain-internals.h: precise GC support for the MonoDomain
17438         structure.
17440 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17442         * class.c, gc.c: sgen and precise GC updates.
17444 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
17446         * marshal.h, marshal.c: added write barrier wrapper and precise type
17447         fixes.
17449 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
17451         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
17452         support.
17454 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17456         * reflection.c: precise and sgen GC updates.
17458 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
17460         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
17462 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
17464         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
17466 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
17468         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
17469         MONO_TYPE_OBJECT. Fixes #78462.
17471 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
17473         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
17474         and blittable types.
17476 2006-05-17  Miguel de Icaza  <miguel@novell.com>
17478         * class.c (mono_class_get_exception_for_failure): Implement parts
17479         of a TODO: if the loader error is set (instead of the class
17480         error), we return a Loader exception that can be properly thrown
17481         elsewhere.
17483         This was exposed by some Winforms 2.0 code that I tried to run
17484         (Atsushi pointed me to it).
17486 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
17488         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
17489         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
17490         
17491         * marshal.c (emit_marshal_vtype): Add limited support for 
17492         UnmanagedType.LPStruct. Fixes #78427.
17494         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
17495         Applied a patch from kangaroo to fix #77523.
17497 2006-05-17  Martin Baulig  <martin@ximian.com>
17499         * threads.c
17500         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
17501         (debugger_thread_created): Removed.
17502         (debugger_thread_exited): Removed.
17504 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
17506         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17508         * object-internals.h (MonoReflectionResource): Sync with managed version.
17510 2006-05-12  Wade Berrier <wberrier@novell.com>
17512         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
17514 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
17516         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
17517         functions try to allocate from the image mempool.
17519 2006-05-12  Dick Porter  <dick@ximian.com>
17521         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
17523 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
17525         * object.c: The FieldGetter and FieldSetter methods require the full
17526         name of the class, not only the name. Fixes bug #78277.
17528 2006-05-11  Miguel de Icaza  <miguel@novell.com>
17530         * loader.c (method_from_memberref): Do not pass the NULL klass to
17531         mono_loader_set_error_() methods.  Pass the non-NULL value
17532         (class). 
17534 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
17536         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
17537         (mono_assembly_close): Null out assembly->image->references after freeing it.
17539         * image.c (mono_image_close): Free image->references.
17540         
17541         * reflection.c (mono_image_basic_init): Fix a small memory leak.
17543 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17545         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
17546         before checking if it's NULL (g_assert).
17548 2006-05-10  Martin Baulig  <martin@ximian.com>
17550         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
17551         I thought I already killed that two months ago, but now it somehow reappeared.
17553 2006-05-10  Martin Baulig  <martin@ximian.com>
17555         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
17557 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
17559         * reflection.c: Allocate memory for dynamically created methods in the image
17560         mempools.
17562 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17564         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
17565         don't use the ad pointer before checking if it's NULL (g_assert).
17567 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
17569         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
17570         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
17572         * marshal.c: Allocate all signatures from mempools.
17574         * marshal.c: Allocate some more signatures from mempools.
17576 2006-05-09  Miguel de Icaza  <miguel@novell.com>
17578         * object.c (mono_load_remote_field): The code used to provide a
17579         temporary variable for returning results if the user did not
17580         provide a result pointer.  But our temporary variable was allocted
17581         on the satck.
17583         Fix calling code to always pass a result area.   Coverity ID 103.
17585 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
17587         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
17588         value, not the old. Fixes #78312.
17589         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
17591         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
17592         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
17593         per-image cache.
17595         * assembly.c (mono_assembly_close): Free image->references.
17597         * assembly.c (mono_assembly_names_equal): Fix a warning.
17598         (mono_assemblies_cleanup): Cleanup more global data.
17600         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
17602         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
17603         ptr_cache and image->modules.
17605         * image.c (mono_image_init): Allocate array_cache lazily.
17606         
17607 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17609         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
17610         behavior was changed recently and has bad side effects.
17612 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
17614         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
17615         
17616         * assembly.c (mono_assembly_close): Remove a debug printf.
17618         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
17620         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
17621         to also allow for temporary references between mono_image_open ()/close ().
17623         * domain.c (get_runtimes_from_exe): Add a FIXME.        
17625 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
17627         * marshal.c: Fix support for dynamic methods.
17629         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
17631         * marshal.c (mono_marshal_cleanup): New cleanup function.
17633         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
17634         image mempools.
17636         * class.c (mono_class_init): Fix leaking class->nested_classes.
17638         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
17640         * image.c (mono_image_init): Initialize the new cashes.
17642         * image.c (mono_image_close): Destroy the new cashes.
17644         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
17646         * mempool.c (mono_mempool_strdup): New helper function.
17648         * class-internals.h: Add prototype for mono_loader_unlock ().
17650         * domain.c (mono_jit_info_table_find): Fix a warning.
17651         (mono_debugger_check_runtime_version): Ditto.
17653         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
17654         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
17655         functions to these modules.
17657         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
17658         metadata modules.
17659         
17660         * marshal.c (mono_free_bstr): Fix a warning.
17662         * assembly.c (mono_assembly_open_full): Fix another small leak.
17664         * object.c: Fix some unload leaks in the remoting code.
17666         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
17667         function.
17669         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
17671         * reflection.c: Fix some unload leaks in dynamic assemblies.
17673 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
17675         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
17676         * marshal.h: Add BSTR support on Win32
17677         * icall.c: Add BSTR icalls
17678         * metadata.h: Add BSTR enums
17680 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17682         Work to catch the crash from #76795 and turn it into an
17683         exception.   As I stubbed out pieces of the VisualBasic support,
17684         I found a number of places where the code was failing and I added
17685         checks to those places. 
17686         
17687         * metadata.c (do_mono_metadata_parse_generic_class): Make this
17688         function return a status code.  If we fail to parse the signature
17689         from mono_metadata_parse_generic_inst, return FALSE.
17691         * loader.c (mono_get_method_from_token): If we fail to load the
17692         method (mono_class_get) return NULL.   
17694         * (method_from_memberref): Return NULL if we are unable to parse
17695         the method signature
17697         (mono_loader_error_prepare_exception): Since we now use the
17698         loader_error flag internally to stop processing, and obtaining
17699         exceptions that might be thrown will walk this code path the
17700         proper way of going from a MonoLoaderError into a
17701         MonoException was convoluted.   This new routine encapsulates the
17702         process of turning the error into an exception and *clearing* the
17703         error afterwards.
17704         
17705 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17707         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
17708         with missing assemblies), and to cope with:
17710                 * Missing fieldref from a non-existing assembly.
17711                 * Missing methodref from a non-existing assembly.
17713         The first batch of work to address *some* of the issues from 76661.
17714         
17715         * object.c (mono_class_create_runtime_vtable): If we fail to
17716         initialize the class raise the exception here. 
17718         * metadata.c (mono_class_get_overrides_full): If any methods fail
17719         to load return the failure to the caller.
17721         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
17722         flagging assemblies that failed to load.   
17724         Do not crash if we are unable to load the assembly.
17726         (mono_assembly_close): Do nothing with REFERENCE_MISSING
17727         assemblies. 
17729         * loader.c (mono_loader_set_error_type_load): Change the
17730         convention to always pass unallocated strings, so we make our own
17731         copies (I know our own code had duplicated strings before, but
17732         this keeps the normal conventions).
17733         (method_from_memberref): Call mono_loader_set_error_method_load
17734         for all possible failures of loading the class. 
17735         Remove assert, turn into a loader error.
17737         (mono_loader_error_to_exception): Move this routine from mini
17738         (mini_loader_error_to_exception) there was no need to have that in
17739         mini. 
17741         * class.c (mono_class_from_typeref): If we were not able to load
17742         the assembly with mono_assembly_load_reference, call the
17743         mono_loader_set_error_type_load to register the problem.
17745         (mono_class_setup_fields): If we fail to load the type from
17746         mono_metadata_parse_type_full, call mono_class_set_failure and
17747         break from the loop.
17749         If class->exception_type is set, we do not layout the fields as
17750         that might crash the runtime, and instead return (from breaking
17751         from the previous loop).
17753         (mono_class_setup_vtable): This now returns a boolean indicating
17754         whether the table was properly setup.   The decision is driven by
17755         mono_class_get_overrides_full which might run into non-existing
17756         methods. 
17757         
17758         (mono_class_init): Returns TRUE on success or FALSE if there was a
17759         problem in loading the type (incorrect assemblies, missing
17760         assemblies, methods, etc).
17762         When we call mono_class_setup_fields we also check for a potential
17763         error inside this call (either a class exception or a general
17764         loader exception).
17766         (mono_class_create_from_typedef): If the parent fails to load
17767         (calling mono_class_get_full) return NULL.
17768         
17769         ** Important **
17771         calls to mono_metadata_parse_type_full should be checked
17772         everywhere and set the mono_class_set_failure
17773         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
17775         The current patch checks the places where my manually constructed
17776         tests show the errors are showing up, but we should do it
17777         everywhere. 
17779         ** Important2 **
17781         mono_class_init return values should be tested everywhere, like
17782         the previous case this is something that we should audit
17783         everywhere and not only on the cases exposed by the tests I
17784         created. 
17786 2006-04-26  Miguel de Icaza  <miguel@novell.com>
17788         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
17789         boolean parameter and instead pass the information on `options'
17790         parameter (FileOptions).
17792         * icall.c: Register the new signature for MonoIO.Open.
17794         * debug-helpers.c (dis_one): Trying to understand how coverity
17795         works.  Fix Run 5, item 78.
17797 2006-04-26  Dick Porter  <dick@ximian.com>
17799         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
17800         dereference.
17802 2006-04-25  Martin Baulig  <martin@ximian.com>
17804         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
17806         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
17807         debugger_thread_created().
17808         (debugger_gc_push_all_stacks): Don't handle the main thread in any
17809         special way.
17810         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
17811         (mono_debugger_finalize_threads): New function; undo the effects
17812         of mono_debugger_init_threads().
17813         (mono_debugger_create_all_threads): Removed.
17815 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17817         * image.c (mono_image_close): Tidy up trace messages.
17819         * assembly.c (mono_assembly_close): Ditto.
17821         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
17822         no longer references an already freed assembly. Fixes #78168.
17824 2006-04-21  Dick Porter  <dick@ximian.com>
17826         * threads.c (mono_thread_detach): Fix reference counting when
17827         detaching threads.
17829 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
17831         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
17832         #78155.
17834 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17836         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
17837         (mono_type_to_stind): Ditto.
17839         * marshal.c: Use the new helper functions to simplify code.
17841         * image.c (mono_image_close): Add some code for help debug assembly unloading
17842         problems.
17844         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
17845         image mempool.
17847         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
17848         assembly was already loaded in another appdomain. Fixes #78083.
17850 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
17852         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
17853         referenced assemblies.
17854         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
17856         * domain.c (mono_domain_free): Add a trace message.
17858         * appdomain.c (add_assemblies_to_domain): Ditto.        
17860         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
17861         field.  
17863 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17865         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
17867 2006-04-12  Martin Baulig  <martin@ximian.com>
17869         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
17870         `USE_INCLUDED_LIBGC'.   
17872 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17874         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17875         the patch contains ../ and a small directory name later. Hopefully fixes
17876         #78035.
17878 2006-04-10  Martin Baulig  <martin@ximian.com>
17880         Clean up the debugger's thread-handling code.
17882         The debugger's thread-handling code has been moved from
17883         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17884         over the `threads' hash, keep track of exiting threads and also
17885         use proper locking.
17887         We can now debug XSP and XSP based applications with the debugger.
17889         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17891         * threads.h
17892         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17893         (mono_install_thread_callbacks): Likewise.      
17895         * threads.c (mono_thread_callbacks): Removed.
17896         (debugger_thread_created, debugger_thread_exited): New static functions.
17897         (start_wrapper): Call debugger_thread_created().
17898         (thread_cleanup): Call debugger_thread_exited().
17899         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17900         (mono_debugger_init_threads): New public function.
17901         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17902         iterate directly over the `threads' hash and also use proper locking.
17904         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17906         * mono-debug-debugger.h
17907         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17909 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17911         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17912         argument type=array. Fixes #78057.
17914 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17916         * culture-info-table.h : regenerated. Fixed bug #69652.
17918 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17920         * loader.c metadata.c: Reapply a variant r59116.
17921         
17922         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17924         * class.c (mono_class_setup_interface_offsets): New internal function.
17926         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17927         interfaces too. Fixes #77398.
17929         * reflection.c (encode_cattr_value): Add support for 
17930         parameter type=object, argument type=array.
17931         (load_cattr_value): Ditto. Fixes #77916.
17933         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17934         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17936         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17937         a byval char array and CharSet is Ansi.
17939         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17941 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17943         * metadata.c: Add some locking comments.
17944         
17945         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17946         mempool.
17947         (mono_metadata_free_method_signature): Don't free the signature itself.
17949         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17951         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17952         reference the same MonoImage.
17953         (mono_assembly_load_from_full): Add an assert.
17955 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17957         * image.c (mono_image_close): Don't put the image we are about to free into the
17958         loaded_images_guid_hash.
17960         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17961         to reduce code duplication.
17963         * marshal.c: Register the native functions called by this module as icalls, to
17964         somewhat centralize the creation of MonoMethodSignature's.
17966         * loader.c (mono_method_signature): Add a cache for method signatures.
17968         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17969         the parameter attributes of a method.
17970         (mono_metadata_parse_method_signature_full): Refactored the computation of
17971         parameter attributes into a separate function. Also avoid one allocation in
17972         most cases.
17974         * assembly.c (mono_assembly_close): Ditto.
17976         * image.c (mono_image_close): Log trace messages with INFO level.
17978         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17980         * image.c reflection.c: Correct reference counting of image modules.
17981         
17982         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17983         of this function from the image mempool.
17984         
17985         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17986         to allow more cached types to be used.
17988         * mono-debug.c (mono_debug_add_method): Appled patch from
17989         David S. Miller  <davem@sunset.davemloft.net>: Access 
17990         minfo->lexical_blocks[] entry elements using read32().
17992 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17994         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17995         methods as it is allocated from the mempool.
17997         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17998         image mempool.
18000         * metadata-internals.h: Add comments describing the reference counting scheme
18001         used for MonoImage and MonoAssembly.
18003         * image.c assembly.c reflection.c: Rework reference counting of images and 
18004         assemblies so they are freed when the runtime is shut down. Free some 
18005         additional memory structures when an image is unloaded.
18006         
18007 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
18009         * class.c loader.c reflection.c: Allocate more data structures in
18010         the image mempool.
18012 2006-03-31  Miguel de Icaza  <miguel@novell.com>
18014         * icall.c
18015         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
18016         build on pre glib 2.4 systems.
18018 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
18020         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
18022         * icall.c: Fix some warnings.
18024 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
18026         * culture-info-table.h : regenerated.
18028 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
18030         * threads.c, object-internals.h, verify.c: changed the culture caching
18031         code to use a normal MonoArray for storage so the GC can keep track of
18032         them easily. Fixed bits of the cache logic, too and simplified the
18033         code.
18035 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
18037         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
18038         thread for non-Boehm GCs.
18040 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18042         * domain.c, object.c, domain-internals.h: reduce the amount of memory
18043         needed to keep track of the data for static fields.
18045 2006-03-29  Raja R Harinath  <rharinath@novell.com>
18047         Fix #75172
18048         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
18049         for interface classes.  Use 'num_methods' instead.
18050         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
18051         before using '->vtable_size' field.
18053 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
18055         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
18056         doesn't contain managed pointers, so use a normal hashtable.
18058 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
18060         * reflection.c, class-internals.h, domain.c: fixed handling of types
18061         used as values for objects in custom attributes (bug #77915):
18063 2006-03-24  Martin Baulig  <martin@ximian.com>
18065         * class.c (mono_class_setup_fields): Added support for generic
18066         instances; fixes #77580.
18068 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18070         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
18072 2006-03-24  Dick Porter  <dick@ximian.com>
18074         * file-io.c (get_file_attributes): More stat macro breakage.
18075         Fixes bug 77759.
18077 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
18079         * profiler.c: added the file=filename option in the default profiler
18080         to output the profile data to filename.
18082 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18084         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
18085         bug #77877.
18087 2006-03-22  Martin Baulig  <martin@ximian.com>
18089         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
18090         allocated `MonoClassField *' in `fb->handle'.
18092 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18094         * class.c, image.c, metadata-internals.h: implemented new mechanism to
18095         allocate interface ID to save memory and allow better ID reuse on
18096         appdomain unload. setup_generic_vtable () removal from Martin.
18098 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18100         * object.h, appdomain.c, domain.c, exception.c, icall.c,
18101         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
18102         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
18103         write barriers for reference stores with managed objects accessed with
18104         C structures in the runtime and in embedding programs.
18106 2006-03-20  Raja R Harinath  <rharinath@novell.com>
18108         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
18109         'interface_id' and 'max_interface_id' fields of MonoClasses
18110         representing open generic types.
18112 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
18114         * object.h, object.c, icall.c: added functions to deal with
18115         storing valuetypes that contain references in managed objects.
18116         * reflection.c, string-icalls.c, threads.c, marshal.c: small
18117         fixes and comments around uses of mono_array_addr ().
18119 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
18121         * object.h, icall.c, monitor.c: object.GetHashCode ()
18122         implementation that supports the moving garbage collector.
18124 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
18126         * icall.c, threads-types.h, threads.c: implemented finalizer for
18127         LocalDataStoreSlot.
18129 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
18131         * metadata.c (mono_type_size): Add a fixme.
18132         (mono_type_stack_size): Ditto.
18134         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
18135         'type_forwarders' field.
18137         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
18138         attribute from net 2.0.
18140         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
18141         from class.c.
18143         * class.c (mono_class_setup_fields): Fix a warning.
18144         
18145         * class.c (mono_class_from_name): Add support for assemblyref entries
18146         in the EXPORTEDTYPE table.
18148         * reflection.c: Add support for handling type forwarders under net 2.0.
18150         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
18151         
18152 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
18154         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
18155         overwriting entries in ModuleBuild->types, also clean up the code
18156         a little. Fixes #77774.
18158 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
18160         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
18161         load friend assembly info when present.
18163 2006-03-14  Raja R Harinath  <rharinath@novell.com>
18165         Fix crasher on gtest-158.cs.
18166         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
18167         the return value if the MonoClass we want is yet in an
18168         inconsistent state.
18169         * class.c (mono_class_create_from_typedef): Add an comment
18170         explaining an order dependency between mono_class_setup_parent and
18171         mono_class_setup_mono_type.
18173 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
18175         * class.c: documentation updates and events bug fix.
18177 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
18179         * class.c: some cleanup, locking fixes.
18181 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
18183         * class.c: fix the generics code to setup nested
18184         type info to the instantiated type (bug #77770).
18186 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18188         * marshal.c: fixed a few type correctness issues.
18190 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18192         * loader.c: the Set/Get/Addrtess array methods should be public.
18194 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
18196         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
18197         
18198         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
18199         info->wrapper.
18201 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
18203         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
18205         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
18207         * mempool.c (mono_mempool_alloc): Speed this up a bit.
18208         (mono_mempool_alloc0): Ditto.
18210 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18212         * socket-io.c:
18213         (create_object_from_sockaddr): it was allocating 4 extra bytes
18214         for the AF_UNIX data. Fixes bug #77747.
18216 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
18218         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
18220 2006-03-09  Dick Porter  <dick@ximian.com>
18222         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
18223         Fixes bug 76966 again.
18225 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
18227         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
18228         names from r57532
18229         * appdomain.c: Bumped corlib version to 48 (due to r57532)
18231 2006-03-07  Martin Baulig  <martin@ximian.com>
18233         * object.c
18234         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
18236 2006-03-07  Martin Baulig  <martin@ximian.com>
18238         * class.c
18239         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
18240         regression introduced in r56970; see gtest-252.cs.
18242         * loader.c (mono_get_method_constrained): Correctly handle generic
18243         methods; see gtest-253.cs.
18245 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
18247         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
18249 2006-03-04  Martin Baulig  <martin@ximian.com>
18251         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
18252         compute the parent type at runtime, just like we're already doing
18253         it for interfaces.
18255         * reflection.c
18256         (mono_reflection_bind_generic_parameters): Don't compute the
18257         parent type anymore.
18259         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
18261 2006-03-04  Martin Baulig  <martin@ximian.com>
18263         * mono-debug-debugger.h
18264         (mono_debugger_create_notification_function): Allocate memory at
18265         runtime and return a pointer to it.
18267 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
18269         * assembly.c: Fix windows build.
18270         
18271         * assembly.c: Fix build.
18273         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
18275         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
18276         
18277 2006-03-03  Dick Porter  <dick@ximian.com>
18279         * process.c
18280         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18281         Check parameters before dereferencing them.  Fixes Aaron's part of
18282         bug 77393.
18284 2006-03-03  Raja R Harinath  <rharinath@novell.com>
18286         Fix performance regression.
18287         * loader.c (find_method_in_class): Add 'from_class' argument.
18288         Rename 'klass' argument to 'in_class'.  The signature is compared
18289         against the method in 'in_class', and the corresponding method is
18290         returned from 'from_class'.
18291         (find_method): Walk both 'in_class' and 'from_class' in parallel.
18292         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
18293         type definition and generic instantiation in parallel.
18294         (mono_get_method_constrained): Update to changes.
18296 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
18298         * threads.c: make sure the domain is correct, too when doing
18299         mono_thread_attach ().
18301 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
18303         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
18304         windows. Fixes #77683.
18306 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
18308         * object.h, *: introduced specific way to set elements of an array
18309         of references to be used as write barrier. Still need to audit the
18310         uses of mono_array_addr.
18312 2006-03-01  Miguel de Icaza  <miguel@novell.com>
18314         * object-internals.h: New field to cache the assmebly name, patch
18315         from Tambet Ingo (tambet@ximian.com)
18317 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18319         * decimal.h, class-internals.h, metadata-internals.h,
18320         file-io.h: mark a few function declarations as internal, to
18321         reduce the number of PLT entries.
18323 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18325         * file-io.c: fix typo in warning message.
18327 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
18329         * loader.c: on unix, lookup the "*A" version of a function
18330         if charset is auto as a second option before failing.
18332 2006-02-28  Raja R Harinath  <rharinath@novell.com>
18334         * class.h (mono_class_inflate_generic_method): Revert to two
18335         argument version.
18336         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
18337         (mono_class_inflate_generic_method_full): Add.
18338         * class.c (mono_class_inflate_generic_method_full): Rename from
18339         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
18340         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
18341         * loader.c, reflection.c: Update to changes.
18343 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
18345         * icall.c: const fixes and small improvements.
18347 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18349         * threadpool.c: for asynchronous connect(), enable the same workaround
18350         for BSD 6 as for the Mac. Fixes bug #77637.
18352 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
18354         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
18355         formatted classes. Fixes #77524.
18357 2006-02-24  Raja R Harinath  <rharinath@novell.com>
18359         * class.c (inflate_generic_type): Add a couple more
18360         micro-optimizations.
18361         (inflate_generic_context): Don't use the 'gmethod' from
18362         'inflate_with'.
18363         (mono_class_inflate_generic_method): If the method has generic
18364         parameters, but the passed-in context doesn't have a 'gmethod',
18365         create one.  Use the possibly simplified generic instantiation
18366         from the declaring class instead of the one passed in.
18368 2006-02-24  Raja R Harinath  <harinath@gmail.com>
18370         Make generic method signature and method header handling lazy.
18371         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
18372         (inflate_generic_header): Likewise.
18373         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
18374         parameter to avoid inflating types.
18375         (mono_get_inflated_method): Empty out.
18376         * class.h (mono_class_inflate_generic_method): Update to changes.
18377         * loader.c (mono_get_method_from_token): Don't parse signature for
18378         generic methods, nor methods of generic classes.
18379         (mono_method_signature): Rename from 'mono_method_signature'.
18380         Inflate signature on demand.
18381         (mono_method_get_header): Inflate method header on demand.
18382         * reflection.c: Update to changes.
18384 2006-02-23  Raja R Harinath  <rharinath@novell.com>
18386         * metadata.c (mono_metadata_inflate_generic_inst): If the
18387         instantiation is closed, don't bother expanding it in the new
18388         context.
18389         * class.c (inflate_generic_class): If the generic instantiation
18390         doesn't change after inflation, return the argument itself.
18391         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
18392         Add bounds checks.
18393         (inflate_generic_context): If neither the generic class nor the
18394         generic method instantiations change, return the original context.
18395         * reflection.c (mono_method_get_object): Do
18396         'mono_get_inflated_method' before accessing the ->klass field.
18397         (inflate_mono_method): Don't create a MonoGenericMethod unless
18398         necessary.
18399         (inflate_method): Don't pass a constructed type as the declaring
18400         type of a methodbuilder.
18402 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
18404         * object.c: fix memory overwrite.
18406 2006-02-22  Dick Porter  <dick@ximian.com>
18408         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
18409         it doesn't work any more.
18410         (mono_threads_request_thread_dump): Fix unused variable warnings.
18412 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18414         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
18415         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
18416         the public header file.
18418 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
18420         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
18422 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
18424         * class-internals.h, object.c: reduce the size of MonoVTable
18425         and store the interface_offsets array at negative offsets.
18427 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
18429         * metadata.c: tweak table descriptors data structures to reduce
18430         size and runtime relocations.
18432 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18434         * marshal.c: fix some types and opcodes to be type-safe
18435         in marshaling wrappers.
18437 2006-02-21  Ankit Jain  <jankit@novell.com>
18439         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
18441 2006-02-21  Raja R Harinath  <rharinath@novell.com>
18443         * metadata.c (get_constraints): Relax debugging checks for monodis.
18445 2006-02-21  Ankit Jain  <jankit@novell.com>
18447         * metadata.c (mono_metadata_load_generic_params): Move the code
18448         checking for ambiguous generic params from here to mono/dis/get.c
18449         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
18451 2006-02-21  Raja R Harinath  <harinath@gmail.com>
18453         Fix assertion triggered when compiling nemerle.
18454         * class.c (mono_get_shared_generic_inst): Rename from
18455         get_shared_inst and make non-static.
18456         * loader.c (mono_get_shared_generic_method): New.  Used to create
18457         the MonoGenericContext-equivalent of a MonoGenericContainer.
18458         (mono_get_method_from_token): Initialize the 'context' field of
18459         the created MonoGenericContainer.
18460         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
18461         * metadata.c (get_constraints): Add sanity check.
18462         * class-internals.h: Add new internal methods.
18464         * reflection.c (verify_safe_for_managed_space): New sanity check.
18465         Currently checks that owner-less generic parameters aren't allowed
18466         in managed space.
18467         (mono_type_get_object): Use it.
18468         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
18469         that are now in mono_type_get_object.
18470         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
18472 2006-02-19  Raja R Harinath  <harinath@gmail.com>
18474         * metadata.c (mono_type_create_from_typespec): Rename from
18475         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
18476         argument and caching of types in the generic container.
18477         (unwrap_arrays, find_generic_param): Remove.
18478         * metadata-internals.h: Update.
18479         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
18481 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
18483         * class.c (mono_class_get_exception_for_failure): Fix a warning.
18485         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
18486         return values. Fixes #77581.
18488         * class.c (mono_fnptr_class_get): Switch name and name_space.
18490         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
18491         classes and add support for [In, Out] attributes.
18492         (mono_marshal_free_asany): Ditto. Fixes #77524.
18494 2006-02-18  Raja R Harinath  <harinath@gmail.com>
18496         * class.c (mono_class_from_generic_parameter): Make more robust to
18497         incomplete MonoGenericContainers from monodis.
18499 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18501         * class-internals.h: added some more exception types.
18502         * class.c, metadata.c: added a few checks to handle missing
18503         types.
18505 2006-02-17  Raja R Harinath  <rharinath@novell.com>
18507         Use owner-less generic-params some more.
18508         * class.c (my_mono_class_from_generic_parameter): Remove.
18509         (mono_class_from_generic_parameter): Handle null image,
18510         param->name and param->owner.
18511         (mono_class_from_mono_type): Update.
18512         (mono_class_create_from_typespec): Remove 'container' parameter.
18513         If that parameter is non-null, the result is always inflated by
18514         'mono_class_get_full' anyway.
18515         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
18516         parameter.
18517         (mono_class_get_full): Update.
18519         * class.c (inflate_generic_type) [GENERICINST]: If the generic
18520         instance is not open, don't bother inflating.
18521         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
18522         parse metadata for inflated classes.
18523         (_mono_class_get): Change GenericContext* parameter to
18524         GenericContainer*.
18525         (mono_class_create_from_typespec): Likewise.  Simplify, and
18526         implement trivially.  All the cases are handled in
18527         mono_class_from_mono_type.  Don't inflate returned class.
18528         (mono_class_get_full): Delegate GENERICINST optimization to
18529         inflate_generic_type.
18530         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
18532 2006-02-16  Dick Porter  <dick@ximian.com>
18534         * socket-io.c (create_object_from_sockaddr): Fix typo.
18535         (create_sockaddr_from_object): Check array lengths before
18536         potentially accessing items off the end.
18537         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
18538         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
18539         (ves_icall_System_Net_Sockets_Socket_Send_internal)
18540         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
18541         length checks to avoid wraparound overflows.
18542         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
18543         contents of the array of sockets
18544         (hostent_to_IPHostEntry2)
18545         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
18546         Check return value of inet_ntop ().
18547         (addrinfo_to_IPHostEntry): Fix typo
18549 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18551         Type metadata parsing doesn't use generic-instantiation information.
18552         * metadata.c (mono_metadata_parse_array_full): Change
18553         MonoGenericContext* parameter to MonoGenericContainer*.
18554         (mono_metadata_parse_type_full): Likewise.
18555         (mono_type_create_from_typespec_full): Likewise.
18556         (mono_metadata_parse_mh_full): Likewise.
18557         (mono_metadata_parse_generic_inst): Likewise.
18558         (do_mono_metadata_parse_generic_class): Likewise.
18559         (do_mono_metadata_parse_type): Likewise.
18560         * metadata-internals.h: Update to changes.
18561         * class.c (mono_class_find_enum_basetype): Likewise.
18562         (mono_class_setup_fields): Likewise.
18563         (mono_class_create_from_typespec): Likewise.
18564         * loader.c (method_from_methodspec): Likewise.
18565         (mono_get_method_from_token): Likewise.
18566         (mono_method_get_header): Likewise.
18568 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18570         * marshal.c: handle additional GENERICINST case (patch from
18571         Thong Nguyen <tum@veridicus.com>).
18572         Fix a few cases where LDIND_I/STIND_I was used for references.
18574 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18576         * reflection.c (mono_reflection_get_token): Remove unused variable.
18578 2006-02-16  Martin Baulig  <martin@ximian.com>
18580         * reflection.c (mono_reflection_get_token): Add support for fields
18581         in instantiated generic types.
18583         * icall.c
18584         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
18586 2006-02-15  Martin Baulig  <martin@ximian.com>
18588         * icall.c
18589         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
18590         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
18591         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
18592         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
18594 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18596         * class.c, metadata.c, metadata.h, object.c, icall.c,
18597         marshal.c: changed mono_type_get_underlying_type () to do
18598         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
18599         Fixed handling of instantiated generic valuetypes (bug #75479).
18601 2006-02-15  Raja R Harinath  <rharinath@novell.com>
18603         * metadata.c (mono_metadata_decode_signed_value): Simplify.
18604         Delegate to mono_metadata_decode_value, and work on the returned value.
18606         * icall.c (ves_icall_MonoType_GetGenericArguments):
18607         Add consistency check here too.
18608         
18609 2006-02-15  Ankit Jain  <jankit@novell.com>
18611         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
18612         char/short etc.
18614 2006-02-15  Ankit Jain  <jankit@novell.com>
18616         * metadata.c (mono_metadata_decode_signed_value): New function to decode
18617         signed values, used only for representing lower bounds of arrays.
18618         (mono_metadata_parse_array_full): Use new
18619         mono_metadata_decode_signed_value to decode lower bounds.
18621 2006-02-14  Martin Baulig  <martin@ximian.com>
18623         * reflection.c
18624         (mono_reflection_get_token): Support "MonoGenericMethod" and
18625         "MonoGenericCMethod" and allow generic instances / methods.
18627 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
18629         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
18630         to obtain the terminal size using an ioctl.
18632         * object.c (mono_nullable_init): Revert this as nullable reference
18633         types are not valid.
18634         (mono_nullable_box): Ditto.
18636 2006-02-09  Dick Porter  <dick@ximian.com>
18638         * threads.c (mono_thread_detach): Drop a reference to the thread
18639         we're detaching.
18641 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
18643         * object.c (mono_nullable_init): Handle nullable reference types.
18644         (mono_nullable_box): Ditto. Fixes #77446.
18646 2006-02-07  Martin Baulig  <martin@ximian.com>
18648         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
18650 2006-02-07  Ankit Jain  <jankit@novell.com>
18652         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
18653         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
18654         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
18655         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
18656         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
18657         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
18659 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
18661         * class.c (mono_class_create_generic): Set type_token as well.
18663         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
18664         compatible with MS.
18666 2006-02-02  Martin Baulig  <martin@ximian.com>
18668         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
18669         has never been used so far.
18671 2006-02-02  Martin Baulig  <martin@ximian.com>
18673         * mono-debug-debugger.h: Changed comment at the top of this file;
18674         the header is not installed, but it's safe to #include it from
18675         within the JIT.
18677         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
18678         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
18680 2006-02-02  Martin Baulig  <martin@ximian.com>
18682         * mono-debug.h
18683         (MonoSymbolTable): Removed the `metadata_info' field.
18685         * mono-debug.c
18686         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
18688         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18689         (mono_debugger_add_builtin_types): Removed.
18690         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
18691         (mono_debugger_create_notification_function): We now operate on a
18692         pre-allocated area; take a `gpointer' and return `void'.
18694         * mono-debug-debugger.c
18695         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
18696         (mono_debugger_add_builtin_types): Removed.
18698 2006-02-02  Martin Baulig  <martin@ximian.com>
18700         * threads.c (mono_debugger_create_all_threads): New public method.
18702 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18704         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
18705         breaks on several platforms.
18707 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
18709         * assembly.c: the VS.NET build doesn't supply default values for
18710         MONO_ASSEMBLIES and MONO_CFG_DIR.
18712 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
18714         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
18715         helper function.
18717         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
18719         * loader.c (method_from_memberref): Fix a warning.
18721         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
18723         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
18724         with explicit layout. Fixes #77433.
18726 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
18728         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
18729         max_interface_id is initialized before using it. Fixes #77398.
18730         (ves_icall_Type_GetInterfaces): Ditto.
18732 2006-01-30  Raja R Harinath  <rharinath@novell.com>
18734         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18735         allocate memory for parameter attributes when parsing memberref
18736         signatures.
18737         * loader.c (mono_loader_set_error_method_load): Don't warn.
18738         (method_from_memberref): Ensure MissingMethodException gets thrown
18739         if method is not found.  Make warning more informative.
18741 2006-01-29  Raja R Harinath  <harinath@gmail.com>
18743         Fix #77397
18744         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
18745         return true if is byref.
18746         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18747         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
18748         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
18750 2006-01-27  Raja R Harinath  <rharinath@novell.com>
18752         Fix tests/find-method.2.il
18753         * loader.c (find_method, find_method_in_class): Remove is_inflated
18754         argument.  Revert 2006-01-18 change.
18755         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
18756         is generic, search for method in its generic definition.
18757         * class.c (mono_class_setup_vtable_general): Print generic
18758         arguments of generic types in debugging printf.
18760 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
18762         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
18764         * threads.c (mono_threads_request_thread_dump): New helper function.
18766 2006-01-25  Raja R Harinath  <rharinath@novell.com>
18768         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
18770 2006-01-25  Ankit Jain  <jankit@novell.com>
18772         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
18773         move definition to ..
18774         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
18775         
18776 2006-01-25  Ankit Jain  <jankit@novell.com>
18777             Raja R Harinath  <rharinath@novell.com>
18779         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
18780         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
18781         as necessary.
18783 2006-01-25  Martin Baulig  <martin@ximian.com>
18785         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
18786         `MonoDebuggerThread' into debug-debugger.c.
18788 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
18790         * profiler.c: fix printing of data.
18792 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
18794         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
18795           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
18797 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18799         * object.c: fix deadlock related to string interning.
18801 2006-01-23  Martin Baulig  <martin@ximian.com>
18803         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18805         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
18807 2006-01-23  Martin Baulig  <martin@ximian.com>
18809         * mono-debug.h: Moved the prototypes of some functions which are
18810         used by the JIT here from mono-debug-debugger.h.
18812 2006-01-21  Martin Baulig  <martin@ximian.com>
18814         * Makefile.am: Don't install mono-debug-debugger.h.
18816 2006-01-21  Martin Baulig  <martin@ximian.com>
18818         * mono-debug-debugger.h: Enforce the private status of this header
18819         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
18820         Moved some stuff from mono-debugger-jit-wrapper.h here.
18822 2006-01-20  Raja R Harinath  <rharinath@novell.com>
18824         * class.c (mono_class_from_typeref): Add a sanity test to help
18825         catch lack of assembly load/search hooks.
18827 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
18829         * marshal.c (emit_struct_conv): Relax the fields with same offset
18830         check even more. Fixes #77230.
18832 2006-01-18  Martin Baulig  <martin@ximian.com>
18834         * loader.c (find_method_in_class): Added `gboolean is_inflated'
18835         argument; if false, we compare the uninstantiated signatures.
18836         (method_from_memberref): Compare the uninstantiated signatures;
18837         fixes #76417.
18839 2006-01-18  Robert Jordan  <robertj@gmx.net>
18841         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
18842         Clear the weak link. Fixes bug #77170.
18844         * gc.c (mono_gchandle_free):
18845         Reflect *-gc.c changes (tiny optimization).
18847 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
18849         * metadata.c (mono_metadata_signature_dup): Applied patch from
18850         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
18851         Fixes #77288.
18853 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18855         * marshal.c (emit_struct_conv): Allow fields with the same offset when
18856         marshalling from native to managed code. Fixes #77230.
18858 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18860         * threadpool.c: fix problem (Mac only) when more than one asynchronous
18861         connect. Fixes bug #77020.
18863 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18865         * class.c: fixed id assignement for nested interfaces (bug #77275).
18866         Added also better info for --print-vtable debugging.
18868 2006-01-12  Martin Baulig  <martin@ximian.com>
18870         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
18871         interfaces on-the-fly; fixes #76625.
18873         * class-internals.h
18874         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18875         don't need that anymore.
18877 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18879         * socket-io.c
18880         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18881         To avoid initing the nested_classes when not needed I turned the
18882         PeerCredData as a toplevel internal class, as it has to be shared
18883         anyways. 
18885         Fixes the CASA issue.
18887 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18889         * domain.c: Accessors for MonoJitInfo
18891         * profiler-private.h: Add jitinfo to the end jit hook
18893         * profiler.[ch]: Define new hooks, called after jitting which give
18894         the MonoJitInfo that was compiled
18896 2006-01-10  Martin Baulig  <martin@ximian.com>
18898         * class.c (mono_class_setup_events): Add support for generic
18899         classes; fixes #76440.
18901 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18903         Fix #77160.
18904         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18905         on passed-in method.
18907 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18909         * object.c (mono_runtime_invoke_array): Add Nullable support.
18911         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18913 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18915         * file-io.c: Don't consider sockets as directory and avoid an endless
18916         loop. Fix bug #76966.
18918 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18920         * object.c (mono_nullable_init): New helper function.
18921         (mono_nullable_box): Ditto.
18923         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18925         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18927         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18928         
18929 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18931         * class.c (mono_class_is_assignable_from): Make T assignable to 
18932         Nullable<T>.
18934 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18936         * appdomain.c: Bump corlib version to 46.
18937         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18938         serialization purpose) and changed ves_icall_System_Reflection_
18939         Assembly_get_code_base signature to accept a boolean (to escape, or 
18940         not, the assembly code base).
18942 2005-12-23  Dick Porter  <dick@ximian.com>
18944         * icall.c: 
18945         * threads-types.h: 
18946         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18947         CreateEvent icall now returns "created" boolean parameter.
18949 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18951         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18952         #76967.
18954         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18955         when attr_klass is an interface. Fixes #77045.
18957 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18959         * marshal.c (emit_struct_conv): Fix previous patch.
18960         
18961         * marshal.c (emit_struct_conv): Add a check for fields with the same
18962         offset.
18964 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18966         Fix regression in Mono.C5.
18967         * class.c (mono_class_create_generic): If 'klass' is an interface
18968         set up the interface offsets.
18969         (mono_class_is_assignable_from): Don't throw away generic arguments.
18971 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18973         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18974         type parameters.
18976 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18978         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18979         dead store.
18980         (do_mono_metadata_parse_generic_class): Don't pass the current
18981         generic context when parsing the type being instantiated: it
18982         cannot use it, anyway.
18984         * loader.c (method_from_memberref): Don't inflate a signature if
18985         it doesn't contain any type parameters.
18987 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18989         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18991 2005-12-14  Martin Baulig  <martin@ximian.com>
18993         * class.c
18994         (mono_type_get_name_recurse): Don't return null for type
18995         parameters and open generic classes.
18996         (mono_class_setup_methods): Don't exclude generic instances.
18997         (mono_get_unique_iid): Use different IDs for different
18998         instantiations of the same generic type.
18999         (mono_class_setup_vtable): Only use setup_generic_vtable() for
19000         open generic instances; create a normal vtable for closed generic
19001         instances.
19002         (mono_class_setup_vtable_general): We're now also called for
19003         closed generic instances.
19005         * reflection.c
19006         (mono_reflection_bind_generic_parameters): Correctly use
19007         mono_metadata_lookup_generic_inst() everywhere.
19009 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
19011         * object.c (mono_class_create_runtime_vtable): Call 
19012         mono_class_setup_vtable ().
19014         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
19015         function.
19016         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
19017         #76959.
19019         * loader.c (mono_loader_set_error_type_load): Print the type load
19020         warnings to the console so they are more visible to the user.
19021         (mono_loader_set_error_method_load): Ditto.
19023         * reflection.c (ensure_runtime_vtable): Revert the last change as it
19024         is still broken.
19025         
19026         * reflection.c (ensure_runtime_vtable): Fix build.
19028         * reflection.c (ensure_runtime_vtable): Disable an optimization which
19029         doesn't work in all cases.
19031 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
19033         * object.c (mono_array_new_full): Treat a single dimensional array
19034         with 0 lower bounds as an szarray. Fixes #76973.
19036         * reflection.c (custom_attr_visible): Really fix this.
19038 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
19040         * reflection.c (custom_attr_visible): Allow nested public attributes
19041         as well.
19043         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
19044         interface check.
19046 2005-12-12  Raja R Harinath  <harinath@gmail.com>
19048         * class.c (set_generic_param_owner): Delete.
19049         (mono_class_create_from_typedef): Don't set ->owner field of
19050         generic parameters to "param containers" of enclosing classes.
19051         * reflection.c (mono_reflection_initialize_generic_parameter):
19052         Likewise.
19054 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
19056         * reflection.c (custom_attr_visible): Fix build.
19058 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
19060         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
19061         private attributes.
19062         
19063         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
19064         handling of null parameter defaults.
19066 2005-12-09  Raja R Harinath  <rharinath@novell.com>
19068         * class.c (mono_class_from_generic_parameter): Don't set
19069         klass->generic_container.
19070         (my_mono_class_from_generic_parameter): Likewise.
19072 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
19074         * reflection.c (load_public_key): Fix a warning.
19075         (method_encode_code): Fix unaligned accesses.
19077 2005-12-07  Martin Baulig  <martin@ximian.com>
19079         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
19081         * reflection.c
19082         (write_generic_param_entry): Encode our custom attrs.
19084         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
19086 2005-12-07  Martin Baulig  <martin@ximian.com>
19088         * reflection.c (encode_new_constraint): Removed; we don't use the
19089         `NewConstraintAttribute' anymore.
19091 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
19093         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
19094         not fire a TypeResolve event when Assembly.GetType () is called.
19096 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
19098         Beginning of support for nullable types in the runtime. Parts of
19099         this patch are from Martin.
19101         * appdomain.c (MONO_CORLIB_VERSION): Bump
19103         * domain.c (mono_init_internal): get the nullable type
19105         * class.c (mono_class_is_nullable): New method
19106         (mono_class_get_nullable_param): New mehod
19107         (mono_class_create_generic): In types T? set cast_class to T
19109         * class-internals.h (MonoDefaults): new nullable default class
19110         (mono_class_get_nullable_param, mono_class_get_nullable_param):
19111         new methods.
19113 2005-12-05  Raja R Harinath  <rharinath@novell.com>
19115         * metadata.c (select_container): New.  Refactor code to select the
19116         appropriate GenericContainer given the type of generic parameter
19117         we are looking for.
19118         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
19119         not a MonoGenericContext.  Use select_container.  Update parameters.
19120         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
19121         and MONO_TYPE_MVAR.
19122         (unwrap_arrays): Remove duplicate tests.
19123         (find_generic_param): Rename from 'has_same_context'.  Now walks a
19124         generic instantiated class to find any arguments that are generic
19125         parameters.
19126         (mono_type_create_from_typespec_full): Use find_generic_param to
19127         avoid evicting some generic instantiations from the typespec
19128         cache.
19130 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
19132         * reflection.c: fixed writing of doubles on ARM FPA.
19134 2005-12-02  Robert Jordan  <robertj@gmx.net>
19136         * icall.c: Fixed EventInfo.ReflectedType (#76829).
19138 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19140         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
19141         least on SUSE 10 they are not the same (on debian, they are just the
19142         same thing).
19144 2005-12-01  Raja R Harinath  <rharinath@novell.com>
19146         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
19147         DeclaringType for VARs and MVARs.
19148         * class.c (set_generic_param_owner): Fix initialization of owner
19149         fields.
19151 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
19153         * icall.c: fixed Enum.ToObject() to correctly convert the values.
19155 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19157         * threadpool.c: workaround for a bug that shows up on the Mac:
19158         select()+connect() on a blocking socket is not like it should
19159         be, so we proceed to connect() in that case, wasting the I/O
19160         threadpool thread until connect succeedes. Fixes bug #75436.
19162 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19164         * threadpool.c: fix typo when setting file descriptor states.
19166 2005-11-28  Raja R Harinath  <rharinath@novell.com>
19168         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
19169         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19170         create a temporary signature container.
19171         (mono_metadata_parse_generic_param): Update to changes.
19172         (mono_type_create_from_typespec_full): Update to changes.
19173         * loader.c (method_from_memberref): Don't use a
19174         MonoGenericContainer while parsing a memberref signature.
19175         (method_from_methodspec): Remove dead-store of the 'container'
19176         variable.  It's overwritten before use.
19178         * metadata.c (mono_type_create_from_typespec_full): Make debugging
19179         checks tighter.
19180         (mono_metadata_parse_generic_param): Likewise.
19181         * loader.c (find_method_in_class): Does not need a
19182         MonoGenericContainer.  Use 'mono_method_signature' rather than
19183         'mono_method_signature_full'.
19184         (find_method, mono_get_method_constrained, method_from_memberref):
19185         Update to changes.
19187         * metadata.c (mono_type_create_from_typespec_full): Ensure that
19188         owner-less generic-parameters are never evicted from the typespec
19189         cache.
19191         * loader.c (method_from_memberref): Don't use the current context
19192         when parsing signatures.
19193         (method_from_methodspec, mono_get_method_from_token): Update to changes.
19195         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
19196         side-effects in g_assert.
19197         * loader.c (mono_get_method_from_token): Resolve klass earlier so
19198         that we don't potentially lose information.
19200 2005-11-26  Dick Porter  <dick@ximian.com>
19202         * icall.c:
19203         * threads.c: icalls to implement basic (ie, not named)
19204         System.Threading.Semaphore.
19206 2005-11-24  Dick Porter  <dick@ximian.com>
19208         * process.c
19209         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19210         Use GetProcessId() if it's available.
19212 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
19214         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
19216 2005-11-23  Raja R Harinath  <rharinath@novell.com>
19217             Ankit Jain  <jankit@novell.com>
19219         * loader.c (mono_get_method_from_token): Initialize 'method' field
19220         of all generic parameters before parsing the signature.  Remove
19221         code that "fixed"-up MVAR references.
19223 2005-11-23  Ankit Jain  <jankit@novell.com>
19225         * metadata.c (mono_metadata_has_generic_params):
19226         (mono_metadata_load_generic_param_constraints):
19227         (mono_metadata_load_generic_params): Move duplicate code ...
19228         (mono_metadata_get_generic_param_row): ... here. Returns the
19229         first row-id in GenericParam table for a given owner (token).
19230         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
19231         prototype.
19233 2005-11-23  Raja R Harinath  <rharinath@novell.com>
19234             Ankit Jain  <jankit@novell.com>
19236         * metadata.c (mono_metadata_class_equal): Pass signature_only when
19237         comparing VARs too.
19238         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
19239         type->data.generic_param only if the type is an MVAR.
19240         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
19241         leak owner-less VARs and MVARs into managed space.
19243 2005-11-21  Martin Baulig  <martin@ximian.com>
19245         * class-internals.h
19246         (MonoMethod): Moved the `generic_container' here from
19247         `MonoMethodNormal' since we now also need it for
19248         `MonoMethodPInvoke';
19249         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
19250         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
19251         an union containing both `MonoMethodNormal' and
19252         `MonoMethodPInvoke'.
19254         * loader.c
19255         (mono_get_method_from_token): Allow implementing generic methods
19256         as interncalls.
19258         * threads.c
19259         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
19260         icall.
19262 2005-11-17  Dick Porter  <dick@ximian.com>
19264         * icall.c: 
19265         * process.h: 
19266         * process.c: Split the Process Start_internal icall into
19267         ShellExecuteEx_internal and CreateProcess_internal, which are
19268         called depending on whether UseShellExecute is true.  Fixes bug
19269         76670.
19271         * appdomain.c (MONO_CORLIB_VERSION): Incremented
19273 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
19275         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
19276         'msize' parameters, use the information in 'mspec' instead.
19277         (emit_object_to_ptr_conv): Ditto.
19279         * marshal.c (emit_struct_conv): Handle explicit layout structs with
19280         fields out of order. Fixes #76733.
19282 2005-11-17  Ankit Jain  <jankit@novell.com>
19284         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
19286 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
19288         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
19289           bug #76575.
19291 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
19293         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
19294         for types with non-auto layout. Fixes #76717.
19296 2005-11-16  Ankit Jain  <jankit@novell.com>
19298         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
19299         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
19300         if generic_context is null.
19301           (mono_metadata_generic_param_equal): param->owner can be null.
19302           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
19303         null.
19305 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
19307         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
19308         the correct value.
19310 2005-11-15  Martin Baulig  <martin@ximian.com>
19312         * object.c (set_value): Use mono_class_from_mono_type() instead of
19313         the hack for generic instances; fixes #76136.
19315 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
19317         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
19318         fields.
19320         * image.c (load_metadata_ptrs): Initialize the new fields.
19322         * reflection.c (create_dynamic_mono_image): Ditto.
19324         * reflection.c (build_compressed_metadata): Use the new fields.
19326         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
19327         icall.
19329         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
19330         icall.
19331         
19332 2005-11-15  Ankit Jain  <jankit@novell.com>
19333             Raja R Harinath  <harinath@gmail.com>
19335         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
19336         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
19337         new per-generic_container cache if the cached MonoType's context matches
19338         the current context.
19339           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
19340         to the expected context.
19341           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
19343 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19345         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
19346         we changed the signature of an icall.
19347         * icall.c: Modify to mono_double_ParseImpl return true/false 
19348         depending on the success, instead of throwing the exception. This will
19349         help us in Double.TryParse methods.
19350         
19351 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
19353         * marshal.c (emit_marshal_object): Throw an exception when
19354         marshalling 'object' instead of crashing. Fixes #76696.
19356 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19358         * class-internals.h: Add prototype for mono_type_get_full_name ().
19360 2005-11-11  Dick Porter  <dick@ximian.com>
19362         * threads.c (mono_thread_manage): Make sure the main thread has
19363         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
19365 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19367         * loader.c (mono_loader_set_error_type_load): Log a warning to the
19368         console about the missing type.
19369         (mono_loader_set_error_method_load): Ditto.
19371 2005-11-09  Miguel de Icaza  <miguel@novell.com>
19373         * mono-config.c (mono_get_config_dir): Set the system defaults if
19374         none is specified.
19376         * assembly.c (mono_set_dirs): New API entry point to set the
19377         assembly and the config directory in one call
19379 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
19381         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
19382         the ftnptr was created from a delegate in a domain other than the
19383         current domain. Fixes #75377.
19385         * exception.h exception.c: Add mono_get_exception_not_supported ().
19387 2005-11-08  Martin Baulig  <martin@ximian.com>
19389         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
19391 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
19393         * security-manager.h: Added definitions to deal with strongname key 
19394         pairs bigger (and smaller) than 1024 bits.
19395         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
19396         adjust wrt the public key length being used.
19398 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
19400         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
19401           Windows build (r51396-51397).
19403 2005-11-03  Martin Baulig  <martin@ximian.com>
19405         * class.c (mono_class_setup_vtable_general): Also add generic
19406         methods to the vtable; fixes #76581.
19408 2005-11-01  Miguel de Icaza  <miguel@novell.com>
19410         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
19411         sure that we lookup GetString method from the System.Text.Encoding
19412         class, not the derived class or we get an empty method.
19414         Fixed class #76612.
19416 2005-10-25  Miguel de Icaza  <miguel@novell.com>
19418         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
19419         if it has been previously set (embedders). 
19421         Make mono_set_rootdir available also on Unix.
19423 005-10-24  Robert Jordan  <robertj@gmx.net>
19425         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
19427 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
19429         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
19430         only calls which are made to native code use this flag.
19432         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
19434 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
19436         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
19437         Add support for FieldBuilders.
19439 2005-10-29  Martin Baulig  <martin@ximian.com>
19441         * mono-debug.c
19442         (mono_debug_using_mono_debugger): New public method; returns
19443         whether we're running inside the debugger.
19445 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
19447         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
19448         for Method/Constructor/FieldBuilders.
19450 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
19452         * reflection.c (module_add_cattrs): Save custom attributes for global methods
19453         and fields as well.
19455 2005-10-26  Martin Baulig  <martin@ximian.com>
19457         * mono-debug-debugger.c
19458         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
19460 2005-10-24  Raja R Harinath  <harinath@gmail.com>
19462         * icall.c (base64_to_byte_array): Don't pass an out-of-range
19463         integer to isspace.
19465 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
19467         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
19468         when passing valuetypes byref. Fixes #76502.
19470 2005-10-19  Jackson Harper  <jackson@ximian.com>
19472         * profiler.c: Don't put a . in front of types that are not in a
19473         namespace.
19475 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
19477         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
19479 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
19481         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
19482         #76436.
19483         (mono_marshal_get_ldflda_wrapper): Fix a warning.
19485 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19487         * assembly.c metadata-internals.h icall.c: Define an additional
19488         parameter for mono_assembly_name_parse_full, so we can avoid creating
19489         S.R.AssemblyName.Version when no version info wasn't passed.
19490         
19491 2005-10-09  Miguel de Icaza  <miguel@novell.com>
19493         * class.c (mono_type_get_full_name): Reimplement method that was
19494         removed. 
19496         * image.c: Some docs
19498 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
19500         * profiler.c (output_newobj_profile): Fix printing of Total memory
19501         on x86.
19503 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19505         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
19507 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
19509         * threads.c: remove debug output.
19511 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19513         * threads.c (mono_thread_manage): Fix crashes if more than 64
19514         threads need to be aborted. Hopefully fixes #75899.
19516         * assembly.c (mono_stringify_assembly_name): New helper function.
19518         * class.c: Use mono_stringify_assembly_name instead of the similar
19519         static function.
19521         * assembly.h assembly.c: Add support for calling a postload search 
19522         hook if an assembly cannot be loaded.
19524         * appdomain.c: Register new search hooks which call the AssemblyResolve
19525         events in AppDomain. Fixes #75231
19527 2005-10-07  Martin Baulig  <martin@ximian.com>
19529         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
19530         methods without debug info.
19532 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
19534         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
19535         wrappers.
19537 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19539         * file-io.c: now that we return symlinks, use lstat and, when the file
19540         is a symbolic link, stat, to get the file attributes. Also avoid the
19541         conversion to/from utf16/external.
19543 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
19545         * class.c (mono_class_layout_fields): Compute klass->has_references
19546         correctly if an embedded valuetype is not yet initialized. Fixes
19547         #76331.
19549 2005-10-04  Martin Baulig  <martin@ximian.com>
19551         * metadata.c
19552         (mono_metadata_load_generic_param_constraints): New public
19553         function; splitted the constraints loading out from
19554         mono_metadata_load_generic_params().
19556         * class.c (mono_class_create_from_typedef): Call
19557         mono_metadata_load_generic_param_constraints() after setting up
19558         the type and creating our parent; fixes #75329.
19560 2005-10-04  Martin Baulig  <martin@ximian.com>
19562         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
19563         non-dynamic parent classes.
19565 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
19567         * file-io.c : win32 build fix (ETXTBSY seems not found).
19569 2005-10-04  Martin Baulig  <martin@ximian.com>
19571         * reflection.c
19572         (mono_image_get_methodspec_token): Make the cache actually work;
19573         fixes #75974.
19575 2005-10-04  Martin Baulig  <martin@ximian.com>
19577         * class.c (mono_class_name_from_token): Removed the unneccessary
19578         `MonoGenericContext *' argument.
19580 2005-10-04  Martin Baulig  <martin@ximian.com>
19582         * loader.c
19583         (method_from_methodspec): Make the caching work again; fixes the
19584         performance regression from #76262.
19586 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19588         * file-io.c:
19589         * file-io.h:
19590         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
19591         GetFileSystemEntries that performs the same work but without going
19592         into io-layer, locking, etc.
19594 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
19596         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
19597         ThreadState_Stopped as well. Fixes #76047.
19599 2005-09-29  Martin Baulig  <martin@ximian.com>
19601         * class.c
19602         (inflate_generic_context): If the new context has a `gmethod', set
19603         its `container' that that gmethod's `container'.
19605         * metadata.c
19606         (mono_metadata_parse_generic_param): Simplify things;
19607         `generic_container = generic_context->container;' is just fine.
19609         * loader.c (method_from_methodspec): Code cleanups.
19611 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19613         * decimal.c: fix warning (and let gcc generate correct
19614         code on ARM with optimizations).
19616 2005-09-28  Martin Baulig  <martin@ximian.com>
19618         * loader.c
19619         (method_from_memberref): Added `MonoGenericContext *class_context'
19620         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
19621         (method_from_methodspec): If we're a memberref, use the enclosing
19622         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
19624 2005-09-28  Martin Baulig  <martin@ximian.com>
19626         * object.c (mono_runtime_invoke_array): Added support for
19627         MONO_TYPE_GENERICINST; fixes #75917.
19629 2005-09-27  Martin Baulig  <martin@ximian.com>
19631         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
19632         `k->byval_arg.type' to determine the actual type.
19634         * loader.c (method_from_methodspec): Removed some hacks.
19636 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
19638         * class-internals.h (mono_field_is_deleted): Do the test for
19639         rtspecialname before we check the actual name of the field. This
19640         prevents us from dereferencing a pointer into the string table,
19641         saving us from accessing a few pages
19643         * *.c: Replace the use of {Enter,Leave}CriticalSection with
19644         macros. This will allow a deadlock debugger to easily be plugged
19645         in.
19647 2005-09-27  Martin Baulig  <martin@ximian.com>
19649         * loader.c (method_from_methodspec): Create a "signature"
19650         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
19652 2005-09-27  Martin Baulig  <martin@ximian.com>
19654         * class.c
19655         (inflate_generic_class): Correctly set the new context's
19656         container.
19658         * loader.c
19659         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
19660         instead of a `MonoGenericContext *'.
19661         (mono_method_signature_full): Take a `MonoGenericContainer *'
19662         instead of a `MonoGenericContext *'.
19664         * metadata.c
19665         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
19666         instead of a `MonoGenericContext *'.
19667         (mono_metadata_parse_method_signature_full): Likewise.
19669 2005-09-26  Martin Baulig  <martin@ximian.com>
19671         * class.c
19672         (mono_class_from_generic_parameter): Set `klass->generic_container'
19673         (mono_class_from_generic_parameter): Likewise.
19674         (mono_bounded_array_class_get): We inherit the generic container
19675         from the element class.
19677         * loader.c
19678         (find_method, find_method_in_class): Take a `MonoGenericContext *'
19679         argument rather than computing it here.
19680         (method_from_memberref): Correctly set the generic context before
19681         parsing the signature.  Fixes #75681.
19683 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
19685         * object.c (mono_class_has_special_static_fields): Fix warnings.
19687 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19689         * assembly.c: Add parse_public_key function, to
19690         par the public keys. Also added mono_assembly_name_parse_full,
19691         to define it the parsed key should be freed or not.
19692         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
19693         to parse a long format assembly name.
19694         * metadata-internals.h: Keep mono_assembly_name_parse_full as
19695         private, since calling it to preserve the key requires
19696         freeing it manually.
19697         
19698 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
19700         * locales.c : removed HAVE_ICU part.
19702 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
19704         * object.c (mono_class_create_runtime_vtable): Avoid calling 
19705         field_is_special_static if the klass has no special static fields.
19707         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
19708         (MonoCachedClassInfo): Likewise.
19710         * object.c (mono_class_has_special_static_fields): New helper function.
19712 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19714         * class.c (mono_class_create_from_typedef): Don't call 
19715         interfaces_from_typedef_full for enums.
19716         (mono_class_create_from_typedef): Compute the base types of enums directly
19717         without calling mono_class_setup_fields ().
19718         (mono_class_find_enum_basetype): New helper function.
19720         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
19721         one place inside the string heap.
19722         
19723 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
19725         * class.c: locking fixes, code cleanups, some docs added.
19726         Allocate some data structures in the image mempool.
19728 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19730         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19731         the example code.
19732         
19733 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
19735         * class-internals.h, class.c, reflection.c: reduce memory taken by
19736         MonoClass.
19738 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
19740         * metadata.c, metadata.h, loader.h: documentation updates, code and
19741         API cleanups.
19743 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19745         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19746         the example code.
19748         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
19749         page faults caused by the runtime while reading metadata.
19751 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19753         * socket-io.c: the field names were changed 3 months ago and no one
19754         realized until bug #76077 got filed!
19756 2005-09-20  Martin Baulig  <martin@ximian.com>
19758         * icall.c (assembly_icalls): Removed some unused debugger icalls.
19760 2005-09-20  Martin Baulig  <martin@ximian.com>
19762         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
19763         write the rank into the class entry.
19765 2005-09-20  Martin Baulig  <martin@ximian.com>
19767         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
19769 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
19771         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19773         * icall.c (custom_attrs_defined_internal): New icall.
19775         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
19776         function.
19777         (mono_custom_attrs_construct_by_type): New helper function.
19779 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
19781         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
19782         terminate the resulting string. Fixes #76123.
19784 2005-09-16  Martin Baulig  <martin@ximian.com>
19786         * mono-debug.c
19787         (mono_debug_add_method): Ignore inflated methods for the moment.
19789 2005-09-14  Martin Baulig  <martin@ximian.com>
19791         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
19793 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
19795         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
19796         return a success/failure indication.
19797         (mono_metadata_interfaces_from_typedef_full): Ditto.
19798         (get_constraints): Ditto.
19800 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
19802         * marshal.c (emit_marshal_array): Fix handling of null arrays.
19803         
19804         * marshal.c (emit_marshal_array): Add support for returning string
19805         arrays from delegates. Fixes #76063.
19807         * marshal.c: Use the emit_ldloc/stloc macros where possible.
19809 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19811         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
19812         icall.
19814 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
19816         * reflection.c icall.c: Fix after mono_get_exception_type_load
19817         signature change.
19819         * assembly.c (mono_assembly_get_assemblyref): New helper function.
19820         (mono_assembly_load_reference): Use the new helper.
19822         * class-internals.h (MonoLoaderError): New structure containing 
19823         information about type loading errors.
19825         * class-internals.h loader.c: Add APIs to store per-thread loader
19826         error information.
19828         * loader.c class.c: Set the loader error if needed.
19830         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
19832 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
19834         * decimal.c: fixed to handle the broken ARM fp format.
19836 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
19838         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
19839         broken.
19841 2005-09-06  Martin Baulig  <martin@ximian.com>
19843         * domain.c (supported_runtimes): Added v2.0.50727.
19845 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
19847         * culture-info.h: reduce the size of some structures.
19849 2005-09-05  Martin Baulig  <martin@ximian.com>
19851         Reflect latest API changes in the August CTP.
19853         * icall.c
19854         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
19855         ("MonoType.HasGenericArguments"): Removed.
19856         ("MonoMethod.BindGenericParameters"): Renamed to
19857         "MakeGenericMethod".
19858         ("MethodBuilder.BindGenericParameters"): Renamed to
19859         "MakeGenericMethod".    
19861 2005-09-05  Martin Baulig  <martin@ximian.com>
19863         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
19865 2005-09-05  Martin Baulig  <martin@ximian.com>
19867         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19869         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
19870         generic_container is non-NULL.
19872 2005-09-05  Martin Baulig  <martin@ximian.com>
19874         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19876         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19878 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19880         * reflection.c (encode_locals,
19881         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19882         for large generic types.
19884 2005-09-05  Martin Baulig  <martin@ximian.com>
19886         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19888         * class.c (mono_dup_array_type): New public method.
19889         (mono_metadata_signature_deep_dup): New public method.
19890         (dup_type): Correctly duplicate array and function types.
19892 2005-09-05  Martin Baulig  <martin@ximian.com>
19894         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19896         * reflection.c (get_default_param_value_blobs): Handle generic types
19897         and generic methods.
19899 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19901         * class.c: Fixed error reporting (method/class were inversed) for 
19902         inheritance demands.
19903         * security-manager.c|h: Added the AppDomain when calling the managed
19904         System.Security.SecurityManager.InheritanceDemand method.
19906 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19908         * reflection.c (encode_marshal_blob): 'marshaltype' and
19909         'marshaltyperef' are alternate sources for the custom marshaler
19910         name.
19912 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19914         * class.c: fix creation of array classes with rank == 1
19915         (patch by Ankit Jain <jankit@novell.com>).
19917 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19919         * object.c: fix check for creating the bound data for arrays vs
19920         szarrays.
19922 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19924         * object.c: configuration file name is now based on the executable name,
19925         not the image name. Fixes bug #75931.
19927 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19929         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19930         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19932 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19934         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19936 2005-08-24  Ankit Jain  <jankit@novell.com>
19937             Raja R Harinath  <rharinath@novell.com>
19939         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19940           called by it recursively.
19941           (mono_class_init): Remove special case in pending_init handling, since it's
19942           superseded by the fix to mono_class_from_typeref.
19944 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19946         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19947         BROKEN_THREAD_START stuff.
19949 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19951         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19952         trampoline.
19954         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19955         
19956         * object.c (mono_delegate_ctor): Replace the original function address with
19957         a delegate trampoline.
19959 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19961         * icall.c: add boolean argument to base64_to_byte_array and 
19962         InternalFromBase64String to control whether a whitespace-only string
19963         is allowed (or should casue a FormatException to be thrown). We need
19964         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19965         to match the MS behaviour in both profiles.
19966         * appdomain.c: Bump corlib version.
19968 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19970         This patch implements a big portion of publisher policy
19971         support, used to bind assembly versions and redirect
19972         one assembly from version A to version B.
19974         * assembly.c:
19975         New GSList loaded_assembly_bindings, for storing the cached
19976         assembly bindings.
19977         (assembly_binding_maps_name): New static function for checking if a 
19978         assembly binding information maps an assembly name.
19979         (mono_assembly_binding_info_free): New function for freeing
19980         assembly binding information resources.
19981         (get_publisher_policy_info): New static function for retrieving 
19982         assembly binding information from a MonoImage.
19983         (compare_versions): New static function for comparing an assembly
19984         binding information data and the version of an assembly name.
19985         (check_policy_versions): New static function for checking if an
19986         assembly binding info mapping an assembly name is valid for it.
19987         (mono_assembly_load_publisher_policy): New static function for
19988         loading the 'policy.major.minor.MyAssembly' image for an assembly
19989         with an assembly name 'aname'.
19990         (mono_assembly_bind_version): New static function for updating
19991         assembly redirection.
19992         (mono_assembly_apply_binding): New static function for applying
19993         assembly binding.
19994         (search_binding_loaded): New static function for searching 
19995         loaded assembly binding infos in the cache domain.
19996         (mono_assembly_load_full): Don't apply assembly binding for
19997         reflection only assemblies.
19999         * metadata-internals.h: Add MonoAssemblyBindingInfo,
20000         which contains information about assembly binding. Also
20001         declare signature for mono_config_parse_publisher_policy ()
20002         function, used to retrieve pub policy info.
20003         
20004         * mono-config.c:
20005         (publisher_policy_start): New static function used to parse publisher 
20006         policy config files.
20007         (publisher_policy_parser): New static MonoParseHandler containing 
20008         the functions used when parsing config files.
20009         (mono_config_parse_publisher_policy): New function for parsing
20010         publisher policy files.
20011         
20012 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
20014         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
20016         * marshal.c (mono_delegate_free_ftnptr): Ditto.
20018         * object.c (mono_get_addr_from_ftnptr): New helper function.
20020         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
20022         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20024 2005-08-19  Dick Porter  <dick@ximian.com>
20026         * threads.c, threads.h, appdomain.c, appdomain.h,
20027         profiler-private.h, monitor.c, object.c, object-internals.h,
20028         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
20029         store the thread ID, so it can hold a 64 bit value if needed.
20031 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
20033         * reflection.c (mono_reflection_create_dynamic_method): Store the
20034         handle class into the method references as well so ldtoken works in
20035         dynamic methods.
20037         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
20038         types.
20040 2005-08-19  Ankit Jain <jankit@novell.com>
20042         Fix #75847.
20043         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
20044           here rather than using the method signature of a arbitrary function
20045           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
20046           two arguments.
20047           Hack done with Harinath.
20049 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20051         * threadpool.c: disable printing stack traces when we get a exception
20052         in a threadpool thread. I need to do more testing to figure out which
20053         cases actually print this. Fixes bug #75828.
20055 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20057         * icall.c: there might be ignored whitespace after the last '='. This
20058         fixes length computation and bug #75840.
20060 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
20062         * assembly.c (mono_assembly_load_full): Consider .exe extension as
20063         well. Fixes #75809.
20065         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
20066         #75784.
20067         
20068         * reflection.c (create_custom_attr_data): Ditto.
20070 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
20072         * locales.c, culture-info.h : removed RegionLCIDMap.
20073         * culture-info-tables.h : regenerated.
20075 2005-08-16  Martin Baulig  <martin@ximian.com>
20077         * class.c (mono_type_get_name_recurse): Small fix.
20079 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
20081         * locales.c : indentation fixie.
20083 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
20085         * object-internals.h,
20086           locales.h,
20087           locales.c,
20088           culture-info.h,
20089           icall.c : added RegionInfo table support.
20090         * culture-info-table.h : regenerated for region support.
20092 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
20094         * reflection.c (resolve_object): handle all kinds of MonoMethod
20095         including generic ones
20097 2005-08-12  Ankit Jain <jankit@novell.com>
20099         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
20100           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
20102 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
20104         * process.c: Don't close a thread handle when it's NULL. This is a
20105         workaround for bug #75733.
20107 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
20109         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
20111 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
20113         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
20115 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20117         * threadpool.c: if a work item in the thread pool has a callback that
20118         catches a exception, don't propagate it after invoking the callback.
20119         Fixes bug #75336.
20121 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
20123         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
20125         * class-internals.h (MonoCachedClassInfo): Add some new fields.
20127         * class.c (mono_class_init): Load field info lazily in the AOT case.    
20129         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
20131 2005-08-03  Ankit Jain  <jankit@novell.com>
20133         Fix #75683.
20134         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
20135           PInvoke calling convention is 0.
20137 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
20139         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
20140         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
20142 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
20144         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
20145         to handle threads not started by the GC (patch by Michael Meeks
20146         <michael.meeks@novell.com>).
20148 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
20150         * reflection.c: Make buffer used in emitting types larger for some
20151         big generic types (patch by Michal Moskal).
20153 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
20155         * mono-debug.c: Fix some (not all) alignment problems.
20157 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20159         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
20160         Invoke mono_image_load_from_data_full passing the refonly
20161         parameter.
20163         * assembly.c
20164         (mono_assembly_open_from_bundle): Add the refonly argument, 
20165         in order to pass it to other methods it calls to.
20166         (do_mono_assembly_open): Add the refonly argument, in order 
20167         to pass it to other methods it calls to.
20168         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
20169         the refonly parameter to it.
20171         * image.c: Add loaded_images_refonly_hash and
20172         loaded_images_refonly_guid_hash to cache the reflection
20173         only loaded images.
20174         (mono_images_init): Initialize the hash tables used for
20175         caching the reflection only images.
20176         (load_modules): Invoke mono_image_open_full passing the refonly
20177         parameter to load the modules the correct way.
20178         (build_guid_table): Add the refonly argument, to re-build the 
20179         correct hash table.
20180         (do_mono_image_open): Added the refonly argument, in order to
20181         define it for the loaded image.
20182         (mono_image_loaded_full): New function, which receives an
20183         additional parameter to look for the image in the refonly or
20184         non-refonly section.
20185         (mono_image_loaded): Updated, using mono_image_loaded_full.
20186         (mono_image_loaded_by_guid_full): The same case that happens
20187         with mono_image_loaded_full.
20188         (mono_image_loaded_by_guid): Likewise.
20189         (register_image): Use the ref_only variable inside MonoImage
20190         to decide in which hash table store the current image.
20191         (mono_image_open_from_data_full): Rename
20192         mono_image_open_from_data to mono_image_open_from_data_full,
20193         adding the refonly argument, to define the ref_only variable 
20194         inside MonoImage.
20195         (mono_image_open_from_data): Return 
20196         mono_image_open_from_data_full.
20197         (mono_image_open_full): Rename mono_image_open to
20198         mono_image_open_full, receiving the new refonly argument,
20199         to pass it to inner methods.
20200         (mono_pe_file_open): Update this function, to open
20201         a MonoImage as a non-refonly image.
20202         (mono_image_close): Use the refonly variable inside
20203         MonoImage to remove the image from the correct caches.
20205         * image.h: Add the signatures of mono_image_open_full,
20206         mono_image_open_from_data_full, mono_image_loaded_full,
20207         mono_image_loaded_by_guid_full.
20209         * metadata-internals.h: Add the ref_only field to 
20210         MonoImage.
20211         
20212 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20214         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
20215         Fix the last behavior, which used to load the assemblies and
20216         extract MonoReflectionAssemblyName information, instead of
20217         extract it from the metadata tables. Needed for Reflection
20218         Only assemblies.
20219         
20220 2005-07-29  Martin Baulig  <martin@ximian.com>
20222         * mono-debug-debugger.c
20223         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
20224         not initialized.
20226         * mono-debug.c
20227         (mono_debug_address_from_il_offset): Check whether we have
20228         debugging support before attempting to take the lock.
20229         (mono_debug_source_location_from_address): Likewise.
20230         (mono_debug_source_location_from_il_offset): Likewise.
20231         (mono_debug_il_offset_from_address): Likewise.
20232         (mono_debug_address_from_il_offset): Likewise.
20234 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
20236         * class.c (mono_class_from_name_case): Add support for dynamic images.
20237         Fixes #75650.
20239         * object.c (mono_class_compute_gc_descriptor): Add a workaround
20240         for #75479.
20242 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
20243         
20244         * reflection.c (mono_method_get_object): Fix warning.
20246 2005-07-28  Martin Baulig  <martin@ximian.com>
20248         * mono-debug.c
20249         (mono_debug_add_wrapper): Also write the wrapper type.
20251 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
20253         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
20254         
20255         * class.c (mono_class_init): Avoid reading nested classes if the AOT
20256         data indicates the class has none.
20258 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
20260         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
20261         loader lock with the debugger lock. Prevents deadlocks for beagle.
20263         Beagle can now run on an smp box for a weekend without any
20264         issues. Woohoo!
20266 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
20268         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
20269         in a module. Fixes #75629.
20271 2005-07-26  Martin Baulig  <martin@ximian.com>
20273         * mono-debug.c (mono_debug_add_wrapper): New static method.
20274         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
20275         interncall or a wrapper.
20277         * mono-debug.h (MonoDebugWrapperData): New public typedef.
20278         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
20279         (MONO_DEBUGGER_VERSION): Bump to 51.
20281         * mono-debug-debugger.c
20282         (mono_debugger_add_type): Removed this empty function.
20283         (mono_debugger_add_method): Likewise.
20285 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
20287         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
20288         before accessing method->slot.
20290 2005-07-21  Jb Evain  <jbevain@gmail.com>
20292         * reflection.c (method_encode_clauses/class): Handle filters clauses.
20293         Fixes #75010.
20295 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
20297         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
20298         #75587.
20300 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
20302         * image.h image.c: Add mono_image_get_guid () API function.
20304 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
20306         There were issues when multiple threads tried to load
20307         assemblies. A deadlock was created between assemblies_mutex and
20308         mono_domain_assemblies_lock. This fixes the issue by making the
20309         assembly ref counting be lock free. See bug 75586.
20310         
20311         * image.c (mono_image_close): The add ref function here was using
20312         Interlocked operations while the unref was using a mutex and a
20313         --. I don't think this was ever a bug that would be exposed in a
20314         non-pendantic way (ie, by an embedder doing a ref on one thread
20315         and an unref on another), but for the sake of correctness, this is
20316         now Interlocked.
20318         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
20319         (mono_assembly_load_reference): Call mono_assembly_addref rather
20320         than touching the refcount ourselves.
20321         (mono_assembly_close): Use InterlockedDecrement to unref the
20322         assembly. Don't acquire the lock unless it is actually needed.
20324 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20326         * class.c (mono_class_layout_fields): Fix calculation of has_references
20327         for generic types.
20329 2005-07-12  Martin Baulig  <martin@ximian.com>
20331         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20333         * metadata.c
20334         (mono_type_hash): Provide better hashing for generic instances.
20335         (mono_generic_inst_hash): Improve hashing.
20336         (mono_generic_class_hash): Likewise.
20338         * reflection.c (mymono_metadata_type_hash): Improve hashing for
20339         generic instances.
20341 2005-07-12  Martin Baulig  <martin@ximian.com>
20343         * reflection.c (mono_reflection_create_runtime_class): Remove the
20344         hack for generic type definitions and non-`Run' assemblies.
20345         (mono_reflection_bind_generic_parameters): Also use
20346         `klass->wastypebuilder' to check for TypeBuilders.
20348 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20350         * class.c (mono_class_layout_fields): Fix calculation of has_references
20351         for generic types.
20353         * class.c (inflate_generic_class): Fix a leak.
20354         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
20355         for generic types.
20357 2005-07-11  Martin Baulig  <martin@ximian.com>
20359         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
20360         on error.
20362 2005-07-11  Martin Baulig  <martin@ximian.com>
20364         * loader.c (find_method): Also lookup in
20365         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
20367 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20369         * appdomain.c (mono_domain_unload): Don't free the error message
20370         before passing it to mono_get_exception_...
20372         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
20373         
20374 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
20376         * threads.c: try to better guess an available RT signal (bug #75387).
20378 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20380         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
20381         and CACHE_OBJECT.
20383 2005-07-07  Martin Baulig  <martin@ximian.com>
20385         * class.c (mono_type_get_name_full): Return NULL for
20386         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
20387         fixes #75408.
20389 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20391         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
20392         exit the appdomain as well being aborted.
20394         * threadpool.c: Create all threadpool threads inside the root appdomain, and
20395         change back to the root domain after calling managed code. This enables
20396         appdomains using threadpools to be unloaded.
20398 2005-07-07  Martin Baulig  <martin@ximian.com>
20400         * class-internals.h
20401         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
20402         into `MonoDynamicGenericClass' since we only need it for dynamic
20403         types.
20405         * reflection.c (mono_class_bind_generic_parameters): We don't need
20406         to compute the `parent' here.
20408 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
20410         * culture-info-table.h : regenerated.
20412 2005-07-06  Martin Baulig  <martin@ximian.com>
20414         * icall.c
20415         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
20417         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
20419 2005-07-06  Martin Baulig  <martin@ximian.com>
20421         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
20422         we're doing a signature-only comparision; fixes #74945.
20424 2005-07-06  Martin Baulig  <martin@ximian.com>
20426         * class-internals.h (MonoGenericClass): Moved some things out into
20427         a new `MonoInflatedGenericClass' type.  
20428         (MonoInflatedGenericClass): New type; the `klass' of a
20429         `MonoGenericClass' is now computed lazyly in
20430         mono_get_inflated_generic_class().      
20432         * class.c (mono_get_inflated_generic_class): New public function.
20433         (mono_class_inflate_generic_method): Removed the unused
20434         `MonoClass *' argument.
20435         (setup_generic_vtable): Don't call mono_get_inflated_method() on
20436         all the methods.
20437         (mono_class_create_generic): Make this static and merge it with
20438         mono_class_create_generic_2(); we're now called automatically from
20439         mono_get_inflated_generic_class().
20441         * loader.c (mono_method_signature): Call
20442         mono_get_inflated_method() here.
20444 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
20446         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
20447         type of fields with RVA.
20449         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
20450         for this pseudo class.
20451         (my_mono_class_from_generic_parameter): Likewise.
20452         (mono_class_init): Allow interfaces to have cctors.
20454 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20456         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
20457         lazily for AOT methods.
20459 2005-07-05  Martin Baulig  <martin@ximian.com>
20461         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
20462         returns FALSE for a successful match, not TRUE.
20464 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20466         * loader.c (mono_method_get_index): Optimize this a bit.
20468 2005-07-04  Martin Baulig  <martin@ximian.com>
20470         * class.c
20471         (class_compute_field_layout): Move the check for generic type
20472         definitions into mono_class_layout_fields().  Fixes #74684.
20473         (mono_class_from_generic_parameter): Correctly compute
20474         `klass->parent'; fixes #75457.
20476         * reflection.c (register_assembly, register_module): Make sure
20477         `domain->rejobject_hash' is already created.
20479 2005-07-02  Martin Baulig  <martin@ximian.com>
20481         * class-internals.h
20482         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
20483         `MonoDynamicGenericClass'.      
20485 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
20487         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
20488         returned by a field getter is null, since null is a valid value.
20490 2005-07-01  Martin Baulig  <martin@ximian.com>
20492         * reflection.c (mono_reflection_generic_class_initialize): Update
20493         the `dgclass->fields [i].parent' to the correct class.
20494         (mono_image_get_fieldref_token): Use the declaring type, not the
20495         reflected type.
20497 2005-07-01  Martin Baulig  <martin@ximian.com>
20499         * loader.c (find_method): Also look in the interfaces; fixes #75429.
20501 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
20503         * threads.c (thread_cleanup): assert that thread != NULL
20504         (wait_for_tids_or_state_change): We were using the wrong variable
20505         when accessing wait->threads. `i' was always out of the bounds of
20506         the array.
20508 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20510         * loader.c: map user32 and kernel32 to libMonoSupportW
20512 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
20514         * appdomain.c (unload_thread_main): Mark this as WINAPI.
20516 2005-06-28  Martin Baulig  <martin@ximian.com>
20518         * loader.c (method_from_methodspec): Fix #75334.
20520 2005-06-28  Martin Baulig  <martin@ximian.com>
20522         Fix #74953 - Arrays now implement the generic IList<T> interface
20523         on the 2.0 platform.
20525         * class-internals.h (MonoDefaults): Added `generic_array_class'.
20527         * reflection.c (mono_class_bind_generic_parameters): New public
20528         function; similar to mono_reflection_bind_generic_parameters(),
20529         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
20531         * domain.c (mono_init_internal): Try to initialize.
20532         `mono_defaults.generic_array_class' here; this'll only succeed if
20533         we're using the 2.0 corlib.
20535         * icall.c
20536         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
20537         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
20538         (mono_lookup_internal_call): Added support for nested classes.
20540         * loader.c
20541         (mono_get_method_from_token): Set `result->signature->pinvoke' if
20542         we're an interncall and have generic arguments.
20544         * class.c
20545         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
20546         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
20547         instance of System.Array.InternalArray<T> for arrays, so they
20548         implement the generic IList<T> interface.
20550 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
20552         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
20553         (chastamar@yahoo.com). Fixes #75374.    
20555 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
20557         * culture-info-table.h: regenerated.
20559 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20561         * icall.c: handle spaces correctly for base64 strings.
20563 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
20565         * *.c: Kill some warnings.
20567 2005-06-23  Duncan Mak  <duncan@novell.com>
20569         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
20570         that this builds on Solaris 10 (x86).
20572 2005-06-23  Martin Baulig  <martin@ximian.com>
20574         * class.c
20575         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
20576         generic type definitions.
20578 2005-06-23  Martin Baulig  <martin@ximian.com>
20580         Fix #75331.
20582         * metadata.c (mono_class_get_overrides): Renamed to
20583         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
20584         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
20585         pass it to mono_get_method_full().
20587 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
20589         * reflection.c (mono_reflection_create_runtime_class): take the
20590         mono_domain_lock in this method. Prevents deadlocks
20592 2005-06-22  Martin Baulig  <martin@ximian.com>
20594         * loader.c (method_from_methodspec): Fix #75330.
20596 2005-06-22  Martin Baulig  <martin@ximian.com>
20598         * reflection.c (type_get_qualified_name): Use
20599         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
20600         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
20601         argument; use it if we don't have an assembly name.
20603 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
20605         * object.c: In mono_message_init, set "copy out" flag for in
20606         parameters with the [Out] flag.
20608 2005-06-21  Martin Baulig  <martin@ximian.com>
20610         * class.c
20611         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
20612         and MONO_TYPE_PTR.
20614 2005-06-21  Martin Baulig  <martin@ximian.com>
20616         * class.c (mono_class_init): Don't initialize `class->fields' for
20617         generic instances since they're initialized again in
20618         compute_field_layout(). 
20619         (compute_field_layout): Set the field's `generic_info' here; fix
20620         #75320. 
20622 2005-06-21  Martin Baulig  <martin@ximian.com>
20624         * class-internals.h
20625         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
20627         * metadata.c (mono_metadata_generic_method_equal): Also
20628         distinguish the `generic_class'; fixes #75334.
20630 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20632         * domain.c:
20633         * appdomain.c:
20634         * domain-internals.h:
20635         * reflection.c: 'domain_assemblies' field is now protected by its own
20636         lock. Don't call into managed code to run the AssemblyLoad event if we
20637         now there are no registered delegates for it.
20639 2005-06-20  Martin Baulig  <martin@ximian.com>
20641         * class.c (mono_class_is_assignable_from): Use a custom version of
20642         mono_class_has_parent() to make things work for generic instances;
20643         fix #75300.
20645 2005-06-20  Martin Baulig  <martin@ximian.com>
20647         * loader.c (method_from_methodspec): Apply a patch from
20648         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
20650 2005-06-20  Martin Baulig  <martin@ximian.com>
20652         * class.c (mono_class_init): Reverted Zoltan's last change; it
20653         breaks generics.
20655 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
20657         * threads.c (wait_for_tids_or_state_change): Add missing locking.
20659 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20661         * socket-io.c: fix the index in the socket array for writable/error
20662         sockets. Fixes bug #75306.
20664 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
20666         * class.c (mono_class_init): Allow interfaces to have static ctors.
20668 2005-06-17  Martin Baulig  <martin@ximian.com>
20670         * loader.c (method_from_methodspec): Use `context->container' when
20671         parsing the `gmethod->inst'.
20673 2005-06-17  Martin Baulig  <martin@ximian.com>
20675         * class.c (mono_type_get_name_recurse): Don't add the assembly
20676         name for type arguments.
20678 2005-06-15  Martin Baulig  <martin@ximian.com>
20680         * reflection.c (mono_image_get_inflated_method_token): Encode
20681         correct klass; fixes #75260.
20683 2005-06-13 Michal Moskal <malekith@nemerle.org>
20685         * icall.c: Make GetCorrespondingMethod/Constructor take
20686         MonoReflectionMethod method not MonoMethod. Removed
20687         MonoType.GetCorrespondingField, and make
20688         MonoGenericType.GetCorrespondingField take name not
20689         MonoClassField.
20691 2005-06-13  Michal Moskal <malekith@nemerle.org>
20693         * reflection.c (field_encode_signature, encode_locals):
20694          Make sizes of buffers for types larger (for big generic types).
20695          (create_generic_typespec,
20696          mono_reflection_sighelper_get_signature_local,
20697          mono_reflection_sighelper_get_signature_field):
20698          Add asserts for too small buffers.
20700 2005-06-15  Martin Baulig  <martin@ximian.com>
20702         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
20703         if our parent is not a dynamic type.
20705 2005-06-15  Martin Baulig  <martin@ximian.com>
20707         * class-internals.h (MonoTypeNameFormat): New enum.
20709         * class.c
20710         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
20711         (mono_type_get_full_name): Removed.
20712         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
20713         argument instead of the boolean's.
20715         * icall.c (ves_icall_System_MonoType_getFullName):
20716         Added `gboolean assembly_qualified'.    
20718         * reflection.h
20719         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
20721         * reflection.c (mono_reflection_parse_type): Parse the new type
20722         name format.
20724 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20726         * icall.c: no need to convert from utf16 to utf8 and then back again
20727         after the call to GetLogicalDrives.
20729 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20731         * icall.c: frombase64. Fix problems exposed by new tests.
20733 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20735         * icall.c: added internal calls for converting char [] and strings in
20736         base64 into byte [].
20738 2005-06-10  Martin Baulig  <martin@ximian.com>
20740         * class.c (mono_class_create_generic_2): Read the nested classes
20741         from the metadata rather than from `gklass->nested_classes' since
20742         `gklass' might not be initialized yet.
20744 2005-06-09  Duncan Mak  <duncan@novell.com>
20746         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
20747         all public headers. Fixes #74919.
20749 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
20751         * domain.c: The key for proxy_vtable_hash is now a pointer
20752         array. Added new GHashFunc and GCompareFunc functions for this.
20754         * class.h: The list of interfaces in MonoRemoteClass is known in
20755         advance and can't grow (we create a new MonoRemoteClass if needed),
20756         so now the interface array can be allocated together with
20757         MonoRemoteClass.
20758         
20759         * object.c: Added a new method create_remote_class_key.
20760         Fixed mono_remote_class so it does not depend on
20761         mono_upgrade_remote_class.
20762         Removed extend_interface_array.
20763         Added new method clone_remote_class(), which makes a copy of a remote
20764         class and adds a new interface or class to it.
20765         mono_upgrade_remote_class() now creates a new remote class (or gets
20766         it from the cache) if an vtable upgrade is needed. In this way
20767         we make sure that other objects sharing the same remote class
20768         don't get the new vtable with unwanted interfaces.
20769         
20770         * object-internals.h:
20771         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
20772         
20773         * marshal.c: Track changes in mono_upgrade_remote_class().
20775 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
20776         * icall.c: Add runtime methods for obtaining members of inflated
20777         class, which were created from supplied non-inflated members. It
20778         is used in internal Get{Method,Constructor,Field} methods in
20779         System.Type
20781 2005-06-09  Martin Baulig  <martin@ximian.com>
20783         * reflection.c
20784         (mono_reflection_bind_generic_method_parameters): Fix #75169.
20786 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20787         * reflection.c (mono_image_basic_init): Define
20788         Version in MonoDynamicAssembly. 
20789         
20790 2005-06-08  Martin Baulig  <martin@ximian.com>
20792         Fix #75136.
20794         * loader.c
20795         (mono_method_signature_full): New public method; takes a
20796         `MonoGenericContext *'.
20797         (find_method): Use mono_method_signature_full() and pass the
20798         klass'es context to it.
20800         * class.c (mono_class_is_inflated_method): Use
20801         mono_method_signature_full() and pass the context to it.
20803 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
20805         * object.c: add proper locking in mono_remote_class_vtable(),
20806         fixes possible memory corruption.
20808 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
20810         * marshal.c (mono_remoting_marshal_init): set
20811         initialized after initialization.
20813 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
20815         * locales.c : hush.
20817 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
20819         * object.c (extend_interface_array): fix really silly
20820         memory corrupting / comparison bug.
20822 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20824         * reflection.c: Functions added to support the creation
20825         of CustomAttributeData, which includes Attribute data
20826         used by ReflectionOnly methods.
20828         * reflection.h:  mono_reflection_get_custom_attrs_data and
20829          mono_custom_attrs_data_construct added (functions exposed).
20831          * icall.c: Added mono_reflection_get_custom_attrs_data
20832          as icall.
20833         
20834 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
20836         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
20837         lupus's request.
20839 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
20841         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
20843         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
20844         dynamic DllImportAttribute.
20846         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
20847         dynamic DllImportAttribute.
20849         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
20850         Fixes #75162.
20852 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20854         * threads.c: avoid segfault when an unstarted thread is aborted.
20856 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
20858         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
20859         Returns the name and version of the runtime for reporting.
20861 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20863         * appdomain.c: bump corlib version.
20864         * object-internals.h: new field in MonoReflectionAssembly.
20866 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20868         * object-internals.h: Carlos forgot to add this field.
20870 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20872         * icall.c: Added create_version to create instances
20873         of Version of MonoReflectionAssemblyName. This change helps
20874         the AssemblyName tests to keep running fine.
20875         
20876 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20877   
20878         * object.c (mono_method_return_message_restore): A somehow less
20879         intrusive fix for #75138.
20881 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20883         * object.c (mono_method_return_message_restore): Fix computation
20884         of expected number of out args.
20886 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20888         * reflection.c (mono_image_get_method_info): Fix the case when the
20889         charset is empty.
20891 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20893         * object.c: Added missing null check in
20894           mono_method_return_message_restore.
20896 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20898         * reflection.c (mono_image_get_method_info): Handle the case when
20899         dllentry is empty.
20901 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20903         * object.c: When creating the vtable for a proxy, take into account
20904         all inherited interfaces, not only the ones registered in
20905         iclass->interfaces. This fixs bug #74996.
20906         Also, in mono_method_return_message_restore, verify that the array
20907         of out args has the expected lengh.
20909 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20911         * socket-io.c: update the timeout in Poll when the call is interrupte.
20913 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20915         * socket-io.c: support abort/suspend in Select_internal after last
20916         change.
20918 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20920         * threadpool.c: remove warning.
20922 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20924         * icall.c:
20925         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20926         removing the 1024 limit from select(). Runtime part of the fix for
20927         bug #71203.
20929 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20931         * socket-io.c: when resolving the addresses for the same
20932         host returned by gethostname(), get the local IPs from the interface
20933         list. Loopback addresses are discarded if the are interfaces up with
20934         non-loopback ones. Fixes bug #63265.
20936 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20938         * appdomain.c, verify.c, object-internals.h, reflection.c:
20939         bumped corlib number to 36, and added new extra_flags field
20940         to ReflectionMethodBuilder and friends.  Fixes #75060.
20942 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20944         * gc.c: register a new weak link only if the object is non-null
20945         (fixes bug#75047).
20947 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20949         * culture-info.h : short time pattern too.
20951 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20953         * culture-info.h : expand long time pattern string length.
20955 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20957         * culture-info-table.h : update (more French date format; #72788).
20959 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20961         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20962         the method is static. Fixes #75029.
20964 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20966         * reflection.c: Update the table_idx field of method builders after
20967         saving the module, since it can change. This is a workaround for
20968         bug #74914. 
20970 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20972         * culture-info-table.h : update (additional French date format).
20974 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20976         * icall.c (ves_icall_type_Equals): Revert last change.
20977         
20978         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20980         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20982 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20984         * class-internals.h: Added executioncontext_class field to 
20985         MonoDefaults structure.
20986         * domain.c: Cache System.Threading.ExecutionContext class in 
20987         mono_defaults.
20988         * object.c: Capture the ExecutionContext for asynchroneous calls in
20989          mono_async_result_new.
20990         * object-internals.h: Added execution_context and original_context 
20991         fields to MonoAsyncResult. Added execution_context to MonoThread.
20992         * security-manager.c|.h: Added mono_get_context_capture_method to 
20993         return the capture method (if required by the security manager or by
20994         the framework version used).
20995         * threadpool.c: Apply capture (if present) ExecutionContext in 
20996         mono_async_invoke and revert to original context after it completes.
20998 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
21000         * culture-info-table.h : updated (real hacky solution for zh-CHT).
21002 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
21004         * culture-info-table.h : zh-CHT related workaround.
21006 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21008         * marshal.c (emit_marshal_custom): Add some error checking and call the
21009         methods in the ICustomMarshaler interface. Fixes #74875.
21010         
21011         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
21012         native->managed wrappers.
21014 2005-05-12  Martin Baulig  <martin@ximian.com>
21016         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
21017         here and use the loader lock.
21019         * mono-debug.c: Properly lock when the debugger is not attached.
21020         (mono_debug_init): Release the initial lock if we're not running
21021         in the debugger.
21023 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21025         * marshal.c (emit_marshal_custom): Pass through NULL values without
21026         calling the custom marshalling routines.
21028         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
21029         conversion in structures. Fixes #74882.
21031 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
21033         * culture-info-table.h : zh-* cultures were missing.
21035 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
21037         * threads.c: Added a new event background_change_event which is signaled
21038         when a thread changes its background mode.
21039         Moved here several checks previously done in managed code. The checks
21040         require the thread lock, and using the thread lock in managed code
21041         can result in deadlocks.
21042         Merged Start_internal and Thread_internal into a single method. Now 
21043         Thread_internal does all work of creating and starting a thread.
21044         Added icalls for setting and getting the state of the object. Moved from
21045         managed code to avoid locking there.
21046         Added wait_for_tids_or_state_change() which is called instad of
21047         wait_for_tids when waiting for non-backround threads to end. This method
21048         will return if one of the threads ends or the background_change_event
21049         is signaled.
21050         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
21051         the background mode. This method signals the background_change_event
21052         event.
21053         * icall.c:
21054         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
21055         removed Start_internal.
21056         
21057 2005-05-11  Martin Baulig  <martin@ximian.com>
21059         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
21060         to order of some fields to get proper alignment on 64-bit machines.
21062 2005-05-11  Martin Baulig  <martin@ximian.com>
21064         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
21065         changes as they're broken and completely fuck up the debugger.
21067         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
21069 2005-05-10  Martin Baulig  <martin@ximian.com>
21071         * reflection.c (mono_reflection_generic_class_initialize): Don't
21072         call mono_class_setup_parent() here.
21074 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21076         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
21077         send/receive timeout use an integer in milliseconds. We were using a
21078         struct timeval.
21080 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21082         * locales.c:
21083         (internal_get_cultures): reserve the first slot of the array for the
21084         InvariantCulture, which will be filled in managed code.
21086 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
21088         * reflection.c (mono_image_fill_module_table): Initialize the
21089         GENERATION field as well.
21091 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21093         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
21094         Monitor.Enter on the object.
21096 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
21098         * threads.c: Enable the wait for running threads when exiting.
21099         * icall.c: Suspend all threads before exiting.
21101 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
21103         * assembly.c (mono_assembly_load_reference): Fix warning.
21105 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21107         * threadpool.c: changed the default number of threads per cpu. From now
21108         on, the default will be 20 + (5 * number of cpus) instead of 50.
21110 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
21112         * loader.c (mono_method_get_signature_full): Add locking here.
21114 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
21116         * appdomain.c: Moved methods for parsing and freeing assembly
21117         names to assembly.c.
21118         * assembly.c, domain-internals.h: Created public methods for parsing
21119         assembly names. Fixed mono_assembly_load_with_partial_name:
21120         it now finds the best match, taking into account the version,
21121         token and culture specified in the partial name. Also return
21122         the latest version if no version information is specified.
21124 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
21126         * threadpool.c: replace check for SocketAsyncCall class.
21128 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21130         * threadpool-internals.h:
21131         * Makefile.am: added threadpool-internals.h
21133         * threadpool.c: call mono_unhandled_exception on exceptions not handled
21134         that happen in threadpool threads (tested on MS).
21135         (mono_thread_pool_remove_socket): new function that dispatch any pending
21136         AIO call on a socket that is closing. By now only epoll really needs it,
21137         as select/poll wake up when the socket closes.
21140         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
21142 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
21144         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
21146 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
21148         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
21150 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
21152         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
21153         has an abort request, convert it into a suspend request.
21155 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
21157         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
21158         warning for the usage of `UnmanagedFunctionPointerAttribute' which
21159         is not supported yet.
21161 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21163         * image.c: register assemblies loaded from data (bundles) in the loaded
21164         assemblies hash. Fixes bug #74772.
21166 2005-04-29  Martin Baulig  <martin@ximian.com>
21168         * class.c (mono_type_get_name_recurse): Update to the new naming
21169         schema from the latest .NET 2.x beta2.
21170         (mono_class_setup_vtable_general): If we're a generic instance,
21171         copy the vtable from our generic type definition and inflate all
21172         the methods in it.
21174         * loader.c (find_method): Update to the new naming schema from the
21175         latest .NET 2.x beta2.
21177 2005-04-29  Raja R Harinath  <harinath@gmail.com>
21179         * class.c (mono_class_init): Add a mono_loader_unlock to the
21180         #74734 fix.
21182 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
21184         * icall.c (ves_icall_System_Environment_Exit): Remove the 
21185         suspend_all_other_threads () call for the time being, since it can hang.
21187         * threads.c (mono_thread_manage): Similarly, disable the waiting for
21188         the background threads to exit, since it can also hang.
21190         * class.c (mono_class_init): Applied patch from Ankit Jain 
21191         (radical@gmail.com). Avoid pending init errors when a field refers
21192         to a nested class using a typeref. Fixes #74734.
21194         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
21195         this for dynamic modules.
21197 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21199         * threads.c: don't wait for threads that are in the process of aborting
21200         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
21201         and waiting for background threads to finish. This makes xsp and
21202         mod-mono-server exit without random length delays and/or hangs.
21204 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21206         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
21208 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
21210         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
21211         dynamic types to prevent infinite loops. Fixes #74727.
21213         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
21214         ..._is_assignable_to.
21216 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
21218         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
21220 2005-04-25  Martin Baulig  <martin@ximian.com>
21222         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
21224         * domain.c
21225         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
21227         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
21229         * reflection.c (build_compressed_metadata): Set metadata header
21230         version to 2.0.
21232 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
21234         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
21235         number into an integral and a decimal part. Fixes #70473.
21237         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
21239 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
21241         * culture-info-table.h : reflected the latest locale-builder output.
21243 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21245         * threadpool.c: check for SuspendRequested too when deciding if
21246         mono_thread_interruption_checkpoint should be called.
21248 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21250         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
21251         * threads.c: remove interruption_mutex and use Interlocked instead. When
21252         suspending all the threads, wait for all the suspended events at once.
21253         If we're shutting down and get an APC that is going to be queued,
21254         call mono_thread_execute_interruption immediately, as the thread might
21255         be sleeping on a pthread condition or mutex.
21257         * icall.c: call mono_runtime_set_shutting_down before suspending the
21258         threads.
21260         Fixes bug #74693. And now xsp is happier when exiting.
21262 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
21264         * loader.c (mono_stack_walk): Fix #74690.
21266 2005-04-22  Martin Baulig  <martin@ximian.com>
21268         * mono-debug.h (MonoDebugMethodJitInfo): Added
21269         `MonoDebugMethodJitInfo *jit'.
21271         * mono-debug.c (mono_debug_read_method): Cache the
21272         MonoDebugMethodJitInfo in `address->jit'.
21273         (mono_debug_free_method_jit_info): New public method.
21275 2005-04-22  Martin Baulig  <martin@ximian.com>
21277         * class.c (mono_class_is_assignable_from): Disallow
21278         type parameter -> interface.
21280 2005-04-21  Dick Porter  <dick@ximian.com>
21282         * threads.c (mono_thread_create): Turn an assertion into an error.
21284 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
21286         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
21287         
21288         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
21289         Fix some gcc 4.0 warnings.
21291 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
21293         * file-io.c: fix alt dir separator char on unix systems
21294         and cleanup (fixes bug #71214).
21296 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
21298         * marshal.c: Use CALLVIRT instead of CALL when dispatching
21299         a call to a remote domain, since the method may be an
21300         interface method in the client domain. This fixes bug #74192.
21302 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21304         * threadpool.c: recv/send are now performed before going back to managed
21305         code to save one transition.
21307 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21309         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
21311         * metadata/threadpool.c: removed hack to workaround the bug above.
21313         Fixes bug #74618.
21315 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
21317         * reflection.c reflection.h: Fix handling of parameter defaults in
21318         dynamic methods. Also fixes handling of parameter attributes.
21319         Fixes #74609.
21321         * mono-debug.c (mono_debug_close_image): Fix warning.
21323 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21325         * socket-io.h: replaced old unused field with new 'blocking'.
21326         * threadpool.c: restore socket blocking state on windows(tm).
21328 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
21330         * icall.c: don't return the codebase in the AssemblyName[] returned by
21331         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
21332         * object-internals.h: Removed FIXME (fields were presents) and fixed
21333         versioncompat declaration.
21335 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21337         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
21338         not closed, so don't cleanup when it happens.
21340 2005-04-13  Chris Toshok  <toshok@ximian.com>
21342         * mono-debug-debugger.h: change prototype for
21343         mono_debugger_lookup_type.
21345         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
21346         this function, although it should probably be named
21347         mono_debugger_init_type.
21349 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21351         * threadpool.c: fix non-AIO case.
21353 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
21355         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
21356         the built-in profiler to measure just JIT compilation times.
21358 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21360         * threadpool.c: the epollfd might be closed by another thread at
21361         any time, so ignore EBADF at treat it as a "we're closing" sign.
21363 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21365         * threadpool.c: release the semaphores with a count equals to the number
21366         of working threads in both IO and regular pools. Fixed typo that messed
21367         up the count of IO pool threads. Don't initialize the pipe handles if
21368         we're using epoll.
21370 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21372         * threadpool.c: some systems don't like a NULL when deleting the socket
21373         from epoll.
21375 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21377         * threadpool.c: fix semaphore allocation.
21379 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21381         * threadpool.c: added epoll() based implementation for asynchronous IO
21382         that is used instead of the default poll() when available.
21383         It can be disabled by setting MONO_DISABLE_AIO.
21385 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21387         * threadpool.c: windows needs 'closesocket' and instead of returning
21388         0 when the stream is closed while in select, it returns -1. Fixes bug
21389         #74573.
21391 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
21393         * class.c (class_compute_field_layout): Fix the regression caused by
21394         the previous try.
21396 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21398         * threadpool.c: separate pool for socket async. IO.
21399         * threadpool.h: mono_max_worker_threads is not a global any more.
21401 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
21403         * class.c (class_compute_field_layout): Fix #74549.
21405 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21407         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
21408         use 2 connected sockets instead.
21410 2005-04-08  Miguel de Icaza  <miguel@novell.com>
21412         * mono-config.c: Add new entry point for mkbundle
21413         mono_config_parse_memory. 
21415 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21417         * threadpool.c: removed another unused function.
21419 2005-04-08  Ankit Jain  <radical@corewars.org>
21421         * reflection.c (get_default_param_value_blobs): Add 'types'
21422         parameter to get the types encoded in the constant table.
21423         (mono_param_get_objects): Use the type from the constant table,
21424         not the type of the parameter, when creating default values.
21425         Handle null default values correctly.
21427 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21429         * file-io.c:
21430         * file-io.h:
21431         * threadpool.c:
21432         * threadpool.h:
21433         * icall.c:
21434         * socket-io.c: removed dead code for async IO.
21436 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21438         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
21440         * threadpool.c: intercept socket async. calls and pass them to a thread
21441         that is polling and dispatching the job items to the threadpool as
21442         socket become ready. Fixes bugs #71217, #71933.
21444         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
21445         between char and short/ushort arrays.
21447         * socket-io.c: remove dead code.
21449 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21451         * locales.c,
21452           icall.c : removed InternalToUpper_Comp() and
21453           InternalToLower_Comp().
21455 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21457         * char-conversions.h : The tables were incorrectly generated. Should
21458           be generated against invariant culture.
21460 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
21462         * object.c (mono_runtime_invoke_array): Fix return value when 
21463         passing pre-created valuetype objects to ctors.
21465         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
21466         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
21467         Fixes #74338.
21469 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
21471         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
21472         only used with --security and hides the wrong corlib version error.
21474 2005-03-30  Joshua Tauberer  <tauberer@for.net>
21476         * class.c: Changed mono_class_name_from_token so that types
21477         outside of a namespace don't have an initial period.  Improved
21478         the g_warning message used in _mono_class_get when loading
21479         fails.
21480         * assembly.c: In mono_assembly_load_reference, when an assembly
21481         can't be found, "No such file or directory" is misleading and
21482         unhelpful because a few paths were checked for the presence of
21483         the assembly.  When that happens (ENOENT), display a nicer
21484         message indicating the directories that were searched.  In all
21485         cases, the warning is made easier to read for non-hackers.
21487 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
21489         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
21490         project/solution.
21491         * appdomain.h|domain.c: Removed inline from functions.
21492         * appdomain.c: Reduced warnings when compiling on windows.
21493         * icall.c: Fixed output_debug declaration to gunichar2*.
21494         * mono-config.c: Reduced warnings when compiling on windows.
21495         * rand.c: Added missing "windows.h". Added missing return value.
21496         * rawbuffer.c: Added missing winsock2.h for windows.
21497         * sysmath.h: Added mono-compiler.h header to allow/ease 
21498         compilation with non-GCC compilers.
21499         * threads.c: Fixed declarations to compile with VS.NET C compiler.
21500         Removed cast warnings.
21502         Adapted from the work of J Lothian (for VC6).
21504 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
21506         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
21507         from default_path.
21509 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
21511         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
21512         the 2.0 profile.
21514 2005-03-27  Raja R Harinath  <harinath@gmail.com>
21516         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
21517         has to be in $(exec_prefix).  $(prefix) is for arch-independent
21518         stuff, and it would probably use $(prefix)/share rather than
21519         $(prefix)/lib.
21521 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21523         * console-io.c: added 2 includes that might be missing.
21525 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
21527         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
21528         profile.
21530         * reflection.c (create_custom_attr): Allocate the params array using
21531         alloca so it gets GC tracking.
21533 2005-03-23  Chris Toshok  <toshok@ximian.com>
21535         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
21536         out some spew.
21538 2005-03-24  Raja R Harinath  <rharinath@novell.com>
21540         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
21541         changes to pick up any changes in prefix, etc.
21543 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21545         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
21546         
21547         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
21548         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
21550 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21552         * class-internals.h object-internals.h class.c reflection.c: Extend the
21553         mono_lookup_dynamic_token () function to return the class of the
21554         token as well. 
21556         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
21557         well. Fixes #73848.
21559 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
21561         * security-manager.c: Skip inheritance checks for intra-corlib
21562         class inheritance and method overrides. This skips a lot of checks
21563         and (anyway) permissions cannot work until corlib is loaded.
21565 2005-03-23  Martin Baulig  <martin@ximian.com>
21567         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
21568         MONO_TYPE_GENERICINST.  
21570 2005-03-23  Martin Baulig  <martin@ximian.com>
21572         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
21574 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21576         * class.c: added locking comments to some functions.
21577         Cache the interface offsets arrays (saves about 20 KB
21578         of runtime memory in a typical app).
21579         Reduce the time overhead in mono_class_setup_supertypes ().
21581 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
21583         * icall.c: speedup and fix leaks in GetMethodsByName and
21584         GetPropertiesByName.
21586 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21588         * reflection.c: some locking fixes.
21590 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21592         * metadata.c: added missing break in case statement.
21594 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
21596         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21597         typedbyref return values. Fixes #73941.
21599 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
21601         * security-manager.c|h: Added demandunmanaged method and 
21602         suppressunmanagedcodesecurity class to MonoSecurityManager.
21603         Renamed aptc class to allowpartiallytrustedcallers.
21605 2005-03-17  Martin Baulig  <martin@ximian.com>
21607         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
21609 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21611         * file-io.c: disabled file async. IO using aio_*. It uses the
21612         threadpool now. Workaround for bug #73718.
21614 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21616         * assembly.h, mono-config.c: added code to deal with bundled configs
21617         for bundled assemblies.
21619 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
21621         * *.c, private.h: cleanup, removing old private.h header file.
21623 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
21625         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
21626         and throw_on_unmappable_char attributes.
21628 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
21630         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
21631         _ProcessName_internal.
21633 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
21635         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
21636         #73631.
21638         * icall.c threads.c threads-types.h: Remove slothash icalls as they
21639         are no longer used.
21641 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
21643         * object.c (compute_class_bitmap): Add support for generics. Fixes
21644         #73527.
21646 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21648         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
21650 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21652         * filewatcher.c: commented out the code for windows watcher, as we don't
21653         use it (we use the managed implementation instead).
21655 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21657         * object-internals.h (MonoThread): Remove 'unused1' field.
21659         * appdomain.c: Bump corlib version.
21661         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
21663         * reflection.c (mono_reflection_create_runtime_class): Remove the
21664         AssemblyBuilder.Save optimization since it causes too many problems.
21666 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
21668         * exception.c|h: Added mono_get_exception_reflection_type_load to
21669         create a ReflectionTypeLoadException object.
21670         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
21671         to return NULL is a InheritanceDemand fails during reflection. Updated
21672         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
21673         ReflectionTypeLoadException if an InheritanceDemand fails during 
21674         reflection. Added icall mapping for GetLinkDemandSecurity.
21675         * security-manager.c|h: Added ves_icall_System_Security_
21676         SecurityManager_GetLinkDemandSecurity internal call to return the
21677         class and methods permissions set for a LinkDemand. Removed unused
21678         fields in MonoSecurityManager.
21680 2005-03-10  Martin Baulig  <martin@ximian.com>
21682         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
21683         it's a generic instance.
21685 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
21687         * reflection.c (mono_get_object_from_blob): Applied patch from
21688         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
21690         * class.c (mono_class_is_assignable_from): Another try at fixing 
21691         #73469 without breaking anything.
21693 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
21695         * class.c: (mono_class_is_assignable_from): Revert the last changes
21696         since they don't work with generics.
21697         
21698         * class.c (mono_class_is_assignable_from): Fix build bustage.
21700         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
21701         the managed IsAssignableFrom method. Fixes #73469.
21703         * reflection.c (mono_reflection_call_is_assignable_from): New helper
21704         function.
21706 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
21708         * object.c (mono_load_remote_field_new): Fix returning uninitialized
21709         memory when the remoting callback does not sets the out arguments.
21710         Fixes #73007.
21712         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
21713         by mistake.
21715         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
21717         * object-internals.h (MonoStackFrame): Sync with managed object layout.
21719         * appdomain.c: Bump corlib version.
21721 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
21723         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
21724         function.
21726         * threads.c (mono_thread_attach): Detect threads which are not started
21727         by the GC pthread wrappers.
21729 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
21731         * icall.c: Added new icall for RNG.
21732         * rand.c|h: Added new icall to open the RNG. This allows to share a 
21733         single handle on Linux to access /dev/urandom and fix #73183.
21735 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
21737         * object.c: setting the new vtable in a transparent proxy object must
21738         not change the GC descriptor.
21740 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21742         * object.c: fixed compilation without GCJ support.
21743         * reflection.c: for runtime-created types ensure klass->has_references
21744         is correct (bug #73215).
21746 2005-03-02  Martin Baulig  <martin@ximian.com>
21748         * class.c (mono_class_is_assignable_from): Make this work if
21749         `oklass' is a generic instance; fixes #72831.
21751 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21753         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
21754         with hasthis set.
21755         
21756         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
21758         * marshal.c: Reorganize native->managed marshalling code to also use
21759         the emit_marshal_... functions.
21761 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21763         * object.c: typed allocs have issues with bitmap sizes > 30,
21764         so check for max_set >= 30.
21766 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21768         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
21769         managed code. Fixes #73012.
21771         * metadata.h (MonoMarshalSpec): Add elem_mult field.
21773         * metadata.c reflection.c: Load/Emit elem_mult as well.
21774         
21775         * metadata.h (MonoMarshalSpec): Add comment.
21777         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
21779         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
21780         num_elem to -1 if not given.
21782         * object-internals.h (MonoReflectionMarshal): Add has_size field.
21784         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
21785         given values.
21787 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
21789         * null-gc.c (mono_gc_free_fixed): Was not compilable.
21791 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
21793         * reflection.c (encode_marshal_blob): Encode param_num field as well.
21795         * object-internals.h (MonoReflectionMarshal): Add param_num field.
21797 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21799         * object.c: generalized the reference bitmap creation
21800         and added hooks for the new GC.
21801         * class-internals.c: removed the gc_bitmap field from MonoClass.
21803 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21805         * domain.c: help the compiler to produce better code
21806         in mono_jit_info_table_find ().
21808 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21810         * object.c: make all allocations look typed.
21812 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21814         * socket-io.c: load Mono.Posix if it's not loaded already
21815         (fixes bug#73033).
21817 2005-02-24  Martin Baulig  <martin@ximian.com>
21819         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
21820         * reflection.c (dup_type): Likewise.
21822 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
21824         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
21825         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
21827 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21829         * domain.c, threads.c, object-internals.h: make the critical thread
21830         local vars use the fast access mode (even when we're compiled in
21831         a lib). Provide accessors to be used by the jit during codegen.
21833 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21835         * appdomain.c: Changed hook functios behavior to include
21836         support for the reflection only assemblies. Some icalls were changed
21837         to support the mentioned assemblies too. Signatures of static methods
21838         try_assembly_resolve and real_load now have an additional parameter:
21839         refonly.
21841         * assembly.c: General changes to mono_assembly_ methods to support
21842         reflection only api. Functions mono_assembly_open, mono_assembly_load,
21843         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
21844         suffix, to support an additional gbool parameter to specify whether
21845         the assembli is reflection only or not. Created some new hook functions 
21846         to add support for reflection only assemblies. Signatures of static 
21847         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
21848         have now an additional parameter: refonly.
21850         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
21851         indicating whether the assembly is reflection only or not.
21853         * exception.c: Add mono_get_exception_invalid_operation.
21855         * icall.c: Throw an InvalidOperationException when trying to invoke
21856         a property/method/event, or trying to set/get the value of a field.
21857         Also add an icall to retrieve the ref_only flag to the
21858         MonoReflectionAssembly.
21860 2005-02-23  Chris Toshok  <toshok@ximian.com>
21862         Part of fix for #72827.
21863         * mono-debug.c (mono_debug_add_method): add lexical block data to
21864         the info we write.  Kind of a hack at the moment - we copy the
21865         lexical block info from the MonoDebugMethodInfo to the
21866         MonoDebugMethodJitInfo here, before writing it.
21867         (mono_debug_read_method): read the lexical block info.
21869         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
21871         * debug-mono-symfile.h: add lexical block support.
21873         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21874         support.
21876 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21878         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21880         * object.c (mono_runtime_free_method): Call mono_free_method () and
21881         put the TODOs there.
21883         * loader.c (mono_free_method): Free up most memory allocated for 
21884         dynamic methods.
21886 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21888         * reflection.c: properly flag a Type argument to a
21889         named custom attr value (bug #72248).
21891 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21893         * reflection.c: reduce code duplication in named custom
21894         attribute encoding.
21896 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21898         * reflection.c: properly encode custom attrs of type object
21899         (bug #72649).
21901 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21903         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21905 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21907         * socket-io.c: load System.dll if it's not loaded already
21908         (bug #72850 and #70477).
21910 2005-02-21  Martin Baulig  <martin@ximian.com>
21912         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21913         generic instances.
21915 2005-02-21  Martin Baulig  <martin@ximian.com>
21917         * reflection.c (mono_image_build_metadata): We also need to
21918         "fixup" the MethodImpl table after we computed the final method
21919         indices.  Call fixup_methodimpl() to do that.
21920         (fixup_methodimpl): New private method.
21922 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21924         * assembly.c: special case mscorlib.dll (bug#72536),
21925         patch from Carlos Alberto Cortez.
21927 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21929         * threads-types.h threads.c: Fix build bustage.
21931         * threads.c: Use a union for long<->double conversions.
21933         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21934         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21936         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21937         containing the checkpoint call with NOT_TAKEN.
21938         
21939         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21940         checkpoint before pushing the arguments, so they won't have to be
21941         spilled to stack.
21943 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21945         * domain.c, assembly.c, domain-internals.h: make some data
21946         const and relocation-free.
21948 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21950         * object.c, appdomain.c, class-internals.h: introduce the
21951         MonoClassRuntimeInfo structure to hold the info needed to
21952         use a class at runtime. Made mono_class_vtable() lock-free
21953         for all the appdomains.
21955 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21957         * metadata-internals.h, image.c: introduce a per-image mempool to
21958         be used for memory that has the same lifetime as the image.
21960 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21962         * domain.c: In mono_init_internal(), instead of selecting the first
21963         runtime version supported by an executable, get a list of all
21964         supported versions and select the one for which an mscorlib exists
21965         (since even if the runtime supports a given version, it doesn't mean
21966         that the framework for that version is installed).
21967         Modified get_runtimes_from_exe to support this behavior.
21968         In supported_runtimes, added information about additional system
21969         assembly versions.
21970         
21971         * assembly.c: Added support for more than one system assembly version
21972         per runtime version. Updated the assembly list.
21973         In mono_assembly_remap_version, removed the initial version check,
21974         since we don't know to which version we need to compare until we
21975         get the version set on which the assembly is based.
21976         Moved the code for loading corlib into the new method
21977         mono_assembly_load_corlib(), so it can be used by the initialization
21978         code.
21979         
21980         * domain-internals.h: Updated data structures and added declaration
21981         for mono_assembly_load_corlib.
21983 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21985         * reflection.c (resolve_object): Fix the creation of the signature in 
21986         the SignatureHelper case.
21988         * assembly.c (mono_assembly_remap_version): Fix binary search.
21989         
21990 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21992         * class.c: Added inheritance check when a method is overloaded (from a
21993         virtual method or when implementing an interface) and when a class is
21994         inherited. Added functions to set a failure for a class and to 
21995         retreive the exception from a failure.
21996         * class-internals.h: Added fields to MonoClass to keep the exception
21997         information status for inheritance (or other exceptions) to be thrown
21998         later (i.e. not at load time).
21999         * object.c: Throw the inheritance SecurityException when a type is to 
22000         be created with either class or method inheritance violations.
22001         * reflection.c|h: Fix when getting declsec from a class. Removed 
22002         unrequired code for class. Improved sanity in parameter naming.
22003         * security-manager.c|h: Added functions to check for class and method
22004         inheritance.
22006 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22008         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
22009         and has_finalize in dynamic types as well.
22011 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
22013         * culture-info-table.h : fixed currency format for en-GB (and so on).
22015 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
22017         * gc.c: ensure the GC handles never have 0 as a value.
22019 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22021         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
22022         a pointer to a struct to unmanaged code. Fixes #72625.
22024 2005-02-16  Martin Baulig  <martin@ximian.com>
22026         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
22028 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22030         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
22032 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22034         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
22036         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
22037         UnmanagedFunctionPointerAttribute, use it for determining calling convention
22038         etc. Fixes #71471.
22040         * reflection.c (mono_custom_attrs_get_attr): New helper function.
22042         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
22044 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
22046         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
22047         changes to make the current context a field in MonoThread.
22049 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22051         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
22052         the last change.
22053         
22054         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
22055         extracted from mono_marshal_get_native_wrapper.
22057         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
22058         to create wrappers around native functions.
22060         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
22061         delegates for arbitrary function pointers. Fixes #71472.
22063 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22065         * threads.c: cleaned up the code a little.
22067 2005-02-15  Martin Baulig  <martin@ximian.com>
22069         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
22070         the data table.
22072         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
22073         allocate larger chunks if needed.
22075 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22077         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
22078         in by mistake.
22080 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
22082         * domain.c: keep the domains in an array and ensure the domain ids
22083         are kept small, so they can be used as indexes to domain-specific data
22084         with a small memory overhead.
22086 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22088         * icall.c: Handle byref types in Type icalls. Fixes #72544.
22090 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
22092         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
22094 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
22096         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
22098         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
22099         values.
22101         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
22102         
22103 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
22105         * domain-internals.h: add the hashtable here.
22107         * class-internals.h: Remove `info' from MonoMethod
22109         * domain.c: Add a new hashtable, jit_trampoline_hash
22111 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22113         * object.c: don't set the value of static fields
22114         (fixes bug#72494).
22116 2005-02-11  Martin Baulig  <martin@ximian.com>
22118         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
22119         (mono_debug_add_method): Silently ignore the method if it's too big.
22120         (mono_debug_add_type): Likewise.
22122 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
22124         * threads.c, appdomain.c: remove #ifdefs from the code.
22126 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
22128         * metadata-internals.h: Added flags to MonoAssembly to cache the most
22129         common security informations. This allows us to stay in unmanaged code
22130         when doing LinkDemand and it's special cases (except for the first 
22131         time for initialization). The flags a very much used with --security.
22132         * reflection.c|h: Added code to get declarative security attributes 
22133         for LinkDemand and InheritanceDemand. This required to refactor the
22134         existing code for Demand.
22135         * security-manager.c|h: Added new method fields for the special cases
22136         of LinkDemand.
22138 2005-02-10  Martin Baulig  <martin@ximian.com>
22140         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
22141         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
22143 2005-02-10  Martin Baulig  <martin@ximian.com>
22145         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
22146         debugging code; this is almost a complete rewrite.
22148         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
22150 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22152         * domain.c, object.h: expose mono_string_equal () and 
22153         mono_string_hash ().
22154         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
22155         it's implemented in managed code.
22157 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22159         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
22160         lo leak objects between appdomains.
22162 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22164         * assembly.c: old compilers compilation fix from 
22165         robertj@gmx.net (Robert Jordan).
22167 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
22169         * class-internals.h: Little reminder for the future.
22171         * debug-helpers.c: Fix up wrapper_type_names
22173 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22175         * image.c, metadata-internals.h: when loading an image from a file,
22176         mmap all of it and use the same codepaths as when using a
22177         in-memory image: the code is simpler and we use less memory
22178         (both writable and readonly).
22180 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
22182         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
22183         API to alloc runtime data structures that need to be tracked by the
22184         GC and contain pointers.
22185         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
22186         make the code more readable and eventually use a different GC.
22188 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
22190         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
22191         for out arguments.
22192         
22193 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
22195         * object.c: In release_type_locks(), don't release the cctor lock
22196         if it has already been released. This fixes a crash in the
22197         thread5 test.
22199 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22201         * gc.c, marshal.c, icall.c: register a delegate for finalization
22202         only when the native function pointer has been allocated for it.
22204 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22206         * object.c: cleaned up some code, allocate objects that are
22207         pointer free with the atomic malloc variant. Allocate memory
22208         for static data from the mempool if it's pointer-free.
22209         Allocate the bounds array at the end of the array data, when needed.
22210         * object-internals.h, object.h: move a private function in a private
22211         header.
22212         * class.c: handle missing case in tracking references in fields.
22214 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
22216         * class.c, class-internals.h: keep track if a type has
22217         reference fields in either the instance or static fields.
22219 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
22221         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
22222         and renamed to MonoRuntimeInfo. Added fields to store the expected
22223         framework assembly version. Changed mono_get_framework_version and
22224         mono_get_runtime_version for a single mono_get_runtime_info method.
22225         
22226         * assembly.c: Added method to remap system assembly versions to the
22227         current executing runtime version. Removed old mapping code.
22228         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
22229         
22230         * icall.c, reflection.c: Track api changes.
22232 2005-02-06  Miguel de Icaza  <miguel@novell.com>
22234         * loader.c (method_from_memberref): Improve error reporting,
22235         produce the class name instead of the typeref/typedef index. 
22237 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
22239         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
22241 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22243         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
22244         stdcall and charset name mangling.  Reorganize the code and add
22245         some tracing stuff.
22247 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
22249         * monodiet.c: More iters!
22251         * marshal.c: Iter usage.
22253         * icall.c: Iter usage.
22255         * object.c: Use iters.
22257         * debug-helpers.c: More iters
22259 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22261         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
22262         under win32.
22264 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
22266         * mono-debug-debugger.c: use iters
22268         * class.c, class-internals.h: mono_class_setup_events is static
22269         now
22271         * All callers: use iters
22273 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22275         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
22276         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
22278 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
22280         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
22282         * marshal.h: Add prototypes for ldfld/stfld_remote.
22284         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
22285         this is called during startup.
22286         
22287 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
22289         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
22290         MonoThreadsSync struct private in monitor.c. Changed the way
22291         MonoThreadsSync is allocated so it's faster and there is no
22292         need to keep track of it with a finalizer and it uses less memory.
22293         This also finally allows us to allocate mono objects as ptrfree when
22294         there are no reference fields.
22296 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
22298         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
22299         disappearing link to the GC interface and use them to simplify
22300         the gchandles code.
22302 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
22304         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
22305         stfld_remote which call mono_load/store_field_new. This allows methods
22306         calling ldfld/stfld wrappers to be AOTed.
22308         * console-io.c: Include sys/filio.h under solaris.
22309         
22310         * console-io.c: Include curses.h if needed correctly.
22312 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
22313         
22314         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
22315         method->klass as well.
22317         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
22319         * class.c (mono_class_init): Switch on lazy initialization of 
22320         methods.
22322         * class.c (mono_class_get_finalizer): Handle the case when the 
22323         finalizer is inherited.
22325 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22327         * console-io.c: <curses.h> is needed by term.h on solaris.
22329 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
22331         * icall.c, class-internals.h, monodiet.c, class.c: Remove
22332         mono_class_setup_properties where possible. Remove this ftn from
22333         the header file, and make it static.
22335 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
22337         * loader.c: Add missing setup_... call.
22339         * class.c: Add missing setup_... calls.
22341         * class.c (mono_class_init): Switch on lazy initialization of 
22342         the generic vtable.
22343         
22344         * class.c (mono_class_init): Fix generics broken by the recent changes.
22346         * monodiet.c (handle_type): Add missing setup_... calls.
22348         * class.c: Back out garbage in previous patch.
22349         
22350         * class.c: Add missing setup_... calls.
22352         * class.c (mono_class_get_method_from_name_flags): Avoid calling
22353         mono_class_setup_methods () if possible.
22355         * class-internals.h (MonoClass): Add 'has_cctor' flag.
22357         * class-internals.h (MonoCachedClassInfo): New structure.
22359         * class.c: Initialize properties and events fields of MonoClass lazily.
22361         * class.c: Add infrastructure for lazily initializing the methods and
22362         vtable fields of MonoClass. Not yet used.
22364         * class.c (mono_class_get_finalizer): New helper function.
22366         * class.c: Add infrastructure for loading some class related data from
22367         an AOT file.
22369         * object.c: Add infrastructure for initializing the vtable from data
22370         in the AOT file.
22372         * gc.c (run_finalize): Use mono_class_get_finalizer ().
22374         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
22375         appropriate initialization function before accessing parts of the
22376         MonoClass structure.
22378         * marshal.c: Fix warnings.
22379         
22380         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
22382         * mono-debug-debugger.c (get_exception_message): Use 
22383         mono_class_get_method_from_name_flags ().
22385 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
22387         * reflection.c, appdomain.c: Replace a few manual searches that
22388         Zoltan missed. (Paolo approved this part of my initial patch).
22390 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
22392         * profiler.c: disable recording statistical events at report time.
22394 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22396         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
22397         to byteswap arrays of enum values, too (bug #72080).
22399 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
22401         * appdomain.c (set_domain_search_path): Allow this to be called if
22402         domain->setup is not yet set.
22404         * loader.c (mono_method_get_index): New helper function.
22406         * loader.c reflection.c: Use mono_method_get_index ().
22408         * class.c (mono_class_get_method_from_name_flags): New helper method.
22410         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
22411         this.
22413         * class.c (mono_class_get_cctor): New helper method.
22415         * string-icalls.c object.c class.c marshal.c reflection.c: Use
22416         mono_class_get_method () to look up methods.
22418 2005-02-01  Miguel de Icaza  <miguel@novell.com>
22420         * console-io.c: Fix the build, this should work on Windows.
22422 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
22424         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
22425         be set to null to keep things valid
22427 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22429         * icall.c: added Console 2.0 icalls.
22430         * Makefile.am: added console-io.[ch]
22431         * console-io.[ch]: internal calls for Console 2.0 API.
22433 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22435         * class.c: make sure we consider all the interfaces
22436         when calculating max_interface_id (bug found by
22437         Jeroen Frijters running ikvm).
22439 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
22441         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
22442         valuetype fields to null.
22444         * object.c (set_value): Ditto. Fixes #71669.    
22446 2005-01-31  Martin Baulig  <martin@ximian.com>
22448         * metadata.c (mono_metadata_has_generic_params): New public
22449         function; checks whether something is a generic method.
22451 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
22453         * appdomain.c: fix infinite recursion when adding assemblies.
22455 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
22457         * object.c: Fix small typo to return all items for Environment.
22458         GetCommandLineArgs.
22460 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22462         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
22463         reflection.c: more domain and assembly-unload related fixes
22464         and memory leaks plugs.
22466 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
22468         * 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.
22470 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
22472         * loader.c (mono_method_signature): Make this method lazy
22473         (mono_get_method_from_token): Don't computate the signature here.
22475         Doing this saves quite a bit of memory. I got 90 kb on starting up
22476         monodoc. It should also save some disk reads on startup.
22478         * *: MonoMethod->signature might be NULL now. You *MUST* use
22479         mono_method_signature.
22481 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
22483         * object.c (mono_runtime_get_main_args): Return an array from the
22484         current domain here. Fixes #71938.
22486 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
22488         * monitor.c: formatting changes to comply with the
22489         mono coding style and remove #ifdefs from the code.
22491 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22493         * metadata.c, private.h: remove some unneeded data
22494         and use a more compact representation for table schemas.
22496 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
22498         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
22499         to get a better distribution in hash tables.
22500         * *.c: use mono_aligned_addr_hash() where appropriate.
22501         * assembly.c: make var static.
22503 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
22505         * domain-internals.h: Put MonoJitInfo on a diet.
22507         * domain.c: Fix a warning.
22509 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22511         * gc.c: rework the gc handles code to reuse handles
22512         when freed.
22514 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22516         * domain.c: fixed long standing bug in mono_string_equal() which
22517         was brought to light with the ldstr changes.
22519 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
22521         * reflection.c: Remove warning by adding missing include for marshal.h
22523 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22525         * domain.c, object.c: change the ldstr_table to hold
22526         MonoString* as keys: makes the runtime isinterned lookup
22527         faster and simplifies memory management.
22529 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
22531         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
22532         possible to add imperative security checks before calling the icall.
22533         * reflection.c: Return security attributes on the original MonoMethod
22534         (and not the wrapped one). This fix permissions on icalls.
22536 2005-01-25  Dick Porter  <dick@ximian.com>
22538         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
22539         the check for mktime() support actually test the mktime() return
22540         value.  "Fixes" bug 71682, though the output is still different to
22541         MS.
22543 2005-01-25  Martin Baulig  <martin@ximian.com>
22545         * class.c (mono_class_is_assignable_from): Make this work for
22546         generic instances.
22548 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
22550         * marshal.c (mono_string_utf8_to_builder)
22551         (mono_string_builder_to_utf16): We might not have ownership of the
22552         string. In thise case, we need to create a new buffer.
22554         * object-internals.h (mono_stringbuilder_capacity): sb->str might
22555         be null, in which case, use the default capacity.
22557 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22559         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
22560         GC events to the profiler.
22562 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22564         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
22565         if you don't want the GC to run.
22567 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
22569         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
22570         start providing a GC API and keeping different implementations in
22571         their own file.
22572         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
22574 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
22576         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
22577         mmap rather than allocating a huge buffer.
22578         (mono_debug_close_mono_symbol_file): Free the buffer allocated
22579         above.
22581 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
22583         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
22584         and CheckExecutionRights.
22585         * reflection.c|h: Keep the index of the declarative security to be 
22586         used, instead of the pointer, when AOT compiler is used. Also add 
22587         class initialization when requesting demands.
22588         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
22589         CheckExecutionRights. Both properties are now FALSE by default, and
22590         unmodifiable, unless the --security option is used.
22592 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22594         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
22595         reflection.c: properly refcount images and assemblies, many leaks fixed.
22597 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22599         * threadpool.c: increase the timeout for threads in the thread pool to
22600         10s.  Fixes bug #67159.
22602 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
22604         * class-internals.h: Sun's compiler insists on explicit
22605         signed on bit fields to handle then correctly.
22607 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
22609         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
22610         Make the size of the array fit only the number of invalid path
22611         chars that we have.
22613         * class.c (_mono_class_get): Improve the error reporting when a
22614         class referenced is not found, to assist debugging. 
22616 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
22618         * threads.c: fix off-by-one error.
22619         * domain.c: free data allocated in the domain.
22621 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22623         * reflection.c (mono_method_body_get_object): Fill out exception info
22624         as well.
22626         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
22627         structure.
22628         
22629 2005-01-19  Martin Baulig  <martin@ximian.com>
22631         * loader.c (mono_get_method_constrained): Make this work again.
22633 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22635         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
22636         guint16 to match the managed side.
22638         * reflection.c (mono_reflection_body_get_object): Fill out local
22639         variables array.
22641         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
22642         as well.
22644         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
22645         'local_var_sig_token'.
22647 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
22649         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
22650         System.Drawing.
22652         * reflection.c (mono_method_body_get_object): Handle abstract and
22653         runtime methods.
22655 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
22657         * marshal.c, loader.c, class-internals.h, reflection.c:
22658         store the emthod data for a wrapper in an array instead of a list.
22660 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
22662         * marshal.c: change the code to allocate memory more
22663         conservatively for method wrappers.
22665 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
22667         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
22668         fields from MonoClass to the marshal info structure where they belong.
22670 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22672         * class.c, object.c, class-internals.h, marshal.c: rearrange
22673         some fields and tweak some types to lower memory usage.
22675 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
22677         * threads.c (signal_thread_state_change): Handle the case when the
22678         target thread is the current thread.
22680         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
22682         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
22683         emit_ptr_to_object_conv. 
22685         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
22686         marshalling. Fixes #71352.
22688 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22690         * metadata.h, blob.h: move table enum to blob.h so it can be included
22691         in any header.
22692         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
22693         cut the size of MonoImage/MonoDynamicImage.
22695 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
22697         * profiler.c (mono_profiler_install_simple): Fix default arguments.
22699 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
22701         * reflection.c, reflection.h, icall.c: add a function to check
22702         if an attribute type is defined for a metadata object.
22704 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
22706         * object-internals.h: Added some needed fields from StringBuilder class.
22707         * marshal.c: Set the maxCapacity when creating a StringBuilder.
22709 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
22711         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
22712         threads before shutting down the runtime.
22714         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
22716 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22718         * object-internal.h, threads.c: implement stacksize and 
22719         parameterized thread start functionality (requires
22720         matching corlib). Marked broken code for later removal.
22722 2005-01-12  Martin Baulig  <martin@ximian.com>
22724         * class-internals.h (MonoGenericClass): Moved the `initialized'
22725         flag to MonoDynamicGenericClass, removed `init_pending'.
22726         (MonoGenericInst): Added `is_reference' flag.
22728 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
22730         * reflection.c (mono_image_create_pefile): Only set the pe_offset
22731         inside the MSDOS header. Fixes #71201.
22733         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
22734         gc thread.
22735         (mono_domain_finalize): Ditto.
22737 2005-01-12  Martin Baulig  <martin@ximian.com>
22739         * class.c (mono_get_shared_generic_class): Use the cache for
22740         non-dynamic generic classes.
22742         * class-internals.h (mono_class_create_generic_2): Removed
22743         function prototype, this function is now static inside class.c.
22745         * class.c (mono_class_create_generic_2): Made this static, only
22746         call it from mono_class_init() and mono_class_setup_parent().
22747         (collect_implemented_interfaces_aux): Call mono_class_init() on
22748         the interfaces we collect.
22749         (mono_class_setup_vtable): Call mono_class_init (class->parent).
22751 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22753         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
22754         it a real thread handle.
22756         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
22757         MonoJitExceptionInfo, since each catch clause needs its own variable.
22758         
22759 2005-01-11  Dick Porter  <dick@ximian.com>
22761         * image.c (mono_pe_file_open): New variant on mono_image_open()
22762         that does not set up the CLI metadata; used for FileVersionInfo so
22763         it can get the data for windows binaries too.
22764         
22765         * process.c (process_read_string_block): Don't read off the end of
22766         the StringTable block.
22768         These both fix bug 70766.
22770 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
22772         * gc.c: set some fields to NULL at GC cleanup time.
22773         * threads.c: if we quit the main thread, call exit ().
22775 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22777         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
22779 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
22781         * threads.h, threads.c, object.c: added accessor and settor for
22782         main_thread. Handle it specially when exiting from it: wait
22783         for other foreground threads to exit.
22785 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
22787         * process.c, verify.c: remove some bloat.
22789 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
22791         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
22792         the calling convention to cdecl under win32.
22794 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
22796         * object.c (mono_object_get_size): New function to get the size of
22797         an object instance.
22799         * profiler.c (simple_allocation): Use above.
22801 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
22803         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
22804         ves_icall_System_AppDomain_getRootDomain (as it's not required to
22805         get an appdomain by it's id and we can't assume the root's id is 0).
22806         * domain-internals.h: Change the function prototype to match.
22807         * icall.c: Change the icall table for AppDomain.
22809 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
22811         * locales.c (string_invariant_compare_char): Only compute
22812         GUnicodeTypes in the case where we need them.  Test for ordinality
22813         first and return if so.
22815         From the commit:
22817                 /*
22818                  * FIXME: here we must use the information from c1type and c2type
22819                  * to find out the proper collation, even on the InvariantCulture, the
22820                  * sorting is not done by computing the unicode values, but their
22821                  * actual sort order.
22822                  */
22824 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22826         * loader.c: for P/Invoke methods, allow the "Internal" shared
22827         library name to refer to the calling process symbol namespace.
22829 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
22831         * Makefile.am: Add the security manager to the build.
22832         * security-manager.c|h: New. Initialization of the security manager.
22834 2005-01-07  Dick Porter  <dick@ximian.com>
22836         * threads.c: 
22837         * monitor.c: Update thread state during Monitor and WaitHandle
22838         waits.  Fixes bug 71031.
22840 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
22842         * reflection.c (property_encode_signature): Correctly handle when the
22843         property has no methods.
22845 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
22847         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
22848         
22849         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
22850         fields from mb, not rmb. Fixes #71017.
22852         * marshal.c (emit_ptr_to_str_conv): Add support for 
22853         ByValTStr -> string conversion. Fixes #71015.
22855         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
22857         * mempool.c (mono_mempool_contains_addr): New helper function.
22859 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22861         * metadata.c (mono_metadata_compute_size): Fix size calculation of
22862         HasSematics encoded fields.
22863         
22864         * metadata.c (mono_type_to_unmanaged): Improve error message for 
22865         invalid string marshalling.
22867         * metadata.c: Fix warnings.
22868         
22869 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22871         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22872         profiler support.
22874 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22876         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22877         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22878         tests.
22880 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22882         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22883         so methods containing these can be AOTed.
22885 2005-01-03  Martin Baulig  <martin@ximian.com>
22887         * loader.c (find_method): Removed the hack for generic instances.
22888         (method_from_memberref): If our parent is a generic instance, pass
22889         its generic type definition to find_method() and then inflate the
22890         method.
22891         (mono_get_method_constrained): Pass the generic type definition to
22892         find_method() and inflate the method later.
22894         * class-internals.h (MonoStats): Added `generic_class_count'.
22896         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22897         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22899         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22900         generic type definitions.
22902 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22904         * loader.c icall.c: Fix warnings.
22906 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22908         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22909         blittable types. Fixes #70864.
22911 2004-12-29  Martin Baulig  <martin@ximian.com>
22913         * icall.c
22914         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22916         * reflection.c (mono_method_get_object): Create a
22917         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22918         call mono_get_inflated_method().
22920         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22922 2004-12-27  Martin Baulig  <martin@ximian.com>
22924         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22925         (MonoMethodInflated): Added `inflated' field.
22927         * class.c (mono_class_inflate_generic_method): Don't really
22928         inflate the method here; just set the `is_inflated' flag in the
22929         MonoMethod.
22930         (mono_class_get_inflated_method): Actually inflate the method here
22931         if it's not already inflated; we use the MonoMethodInflated's new
22932         `inflated' field as a cache.
22934 2004-12-26  Martin Baulig  <martin@ximian.com>
22936         * class.c
22937         (inflate_generic_class): Moved some code out of inflate_generic_type().
22938         (mono_class_inflate_generic_method): If we're already inflated,
22939         inflate the context and use the declaring method; ie. make sure
22940         the declaring method of an inflated method is always the generic
22941         method definition.
22942         (mono_class_create_from_typedef): Create
22943         `class->generic_container->context->gclass'.
22945 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22947         * metadata-internals.h, marshal.c, reflection.c: More
22948         MonoGHashTable->GHashTable.
22950         * domain-internals.h, class.c: Change MonoGHashTable's into
22951         GHashTables for some cases where no gc stuff is used
22953         All users: update apis
22955 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22957         * metadata.c (builtin_types): Make this `const'. Makes this get
22958         put into the shareable section.
22959         (mono_metadata_init): Casts to make gcc happy.
22961 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22963         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22965 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22967         * icall.c: Added an internal call to retrieve the position and length
22968         of assembly-level declarative security attributes (RequestMinimum, 
22969         RequestOptional and RequestRefuse). This is used by the Assembly class
22970         to re-create the corresponding permission sets.
22972 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22974         * marshal.c: fix the stelemref wrapper to be type correct
22975         (and faster).
22977 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22979         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22980         to do key & 0x7fffffff. Hashtable already does this. It just
22981         results in longer code.
22983 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22985         * appdomain.c: Bump corlib version.
22986         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22987         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22988         * reflection.c|h: Add functions to get declarative security infos
22989         (blob position and length) for assemblies, classes and methods.
22991 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22993         * reflection.c: sort the constant table (bug #70693).
22995 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22997         * object-internals.h, threads.c, domain.c: add accessors for
22998         the MonoThread and MonoDomain tls keys.
23000 2004-12-18  Martin Baulig  <martin@ximian.com>
23002         * class.c (inflate_generic_type): If we're inflating a generic
23003         instance, set `ngclass->context->container = context->container';
23004         ie. the container we inflated into.
23006         * metadata.c (mono_metadata_parse_generic_param): Reflect above
23007         inflate_generic_type() changes.
23009 2004-12-17  Martin Baulig  <martin@ximian.com>
23011         * class-internals.h
23012         (MonoGenericClass): Replaced `MonoType *generic_type' with
23013         `MonoClass *generic_class'.  Removed `dynamic_info'; if
23014         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
23015         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
23017 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
23019         * exception.c (mono_exception_from_token): New helper function.
23021 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
23023         * assembly.c (mono_assembly_load_with_partial_name): Call 
23024         mono_assembly_loaded before invoking the preload hooks. Fixes
23025         #70564.
23027         * object-internals.h (MonoThread): Change culture_info and 
23028         ui_culture_info into an array.
23030         * threads.c: Cache culture info objects from more than one appdomain.
23032         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
23033         current UI culture.
23035 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
23037         * threads.h threads.c appdomain.c: Clear the culture_info field of
23038         all threads during unloading if they point to an object in the dying
23039         appdomain.
23041 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
23043         * culture-info.h (TextInfoEntry): New struct
23044         * object-internals.h: sync with managed
23045         * locales.c: fill the `text_info_data' field
23046         * culture-info-tables.h: update
23048 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23050         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
23051         collector.
23053 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
23055         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
23056         (ves_icall_ModuleBuilder_getMethodToken): Ditto
23058 2004-12-12  Martin Baulig  <martin@ximian.com>
23060         * mono-debug-debugger.c (write_type): If we're an enum and the
23061         builtin types have already been initialized, call mono_class_init().
23063 2004-12-11  Martin Baulig  <martin@ximian.com>
23065         * metadata.c (mono_metadata_load_generic_params): Added
23066         `MonoGenericContainer *parent_container' argument; automatically
23067         compute `container->is_method'; pass the correct owner to
23068         get_constraints().      
23070         * reflection.c (compare_genericparam): Sort the GenericParam table
23071         according to increasing owners. 
23073 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
23075         * profiler.c: allow disabling the default profiler.
23077 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
23079         * decimal.c, icall.c: allow disabling System.Decimal support.
23081 2004-12-09  Marek Safar <marek.safar@seznam.cz>
23083         * reflection.c: Add support for null attribute arguments.
23085 2004-12-09  Martin Baulig  <martin@ximian.com>
23087         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
23088         names to get rid of compiler warnings.
23090 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23092         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
23093         mono_marshal_load_type_info (). Fixes #69625.
23094         (mono_marshal_get_ptr_to_struct): Likewise.
23096 2004-12-08  Martin Baulig  <martin@ximian.com>
23098         * mono-debug.h: Bumped version number to 47.
23100         * mono-debug-debugger.c
23101         (mono_debugger_event_handler, mono_debugger_event): Take two
23102         guint64 arguments insteed of a gpointer and a guint32.  
23104 2004-12-08  Martin Baulig  <martin@ximian.com>
23106         * debug-mono-symfile.h
23107         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
23108         `address' to `native_offset'.
23110 2004-12-08  Martin Baulig  <martin@ximian.com>
23112         * class.c (mono_class_create_from_typespec): Only inflate if we
23113         either have `context->gclass' or `context->gmethod'.
23115 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23117         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
23119         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
23121         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
23123         * reflection.c (mono_assembly_get_object): Remove the workaround put
23124         in for the release.
23125         
23126         * appdomain.c: Use the corlib_internal field from MonoAssembly.
23128         * appdomain.c: Bump corlib version.
23130         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
23131         be visible in other appdomains.
23133 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
23135         * threads.c: Interlocked inc and dec for longs were messed up,
23136         use a KISS based impl for this. Fixes 70234
23138 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
23140         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
23142 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
23144         * icall.c: fix to follow policy not to allow struct
23145         arguments in icalls.
23147 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23149         * process.c: make the patch that handles spaces in file paths work
23150         on mono/windows too.
23152 2004-12-06  Martin Baulig  <martin@ximian.com>
23154         * class.c (mono_class_create_generic): Call
23155         mono_class_setup_supertypes() if we're dynamic.
23156         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
23158 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
23160         * object-internals.h: Add new fields to MonoThread.
23162         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23164         * icall.c threads-types.h threads.c: Add new icalls.
23166         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
23168         * object-internals.h (MonoReflectionAssembly): Sync object layout with
23169         managed side.
23171         * appdomain.c: Bump corlib version.
23173         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
23174         internal assemblies. Fixes #69181.
23176 2004-12-05  Martin Baulig  <martin@ximian.com>
23178         * class.c (mono_class_inflate_generic_signature): Make this a
23179         no-op if `context' is NULL or we don't have any type parameters;
23180         also copy `sentinelpos'.        
23182 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
23184         * image.c: Add unbox_wrapper_cache.
23186         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
23188         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
23189         function generator.
23190         
23191         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
23192         Fixes #70173.
23194         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
23195         
23196 2004-12-04  Martin Baulig  <martin@ximian.com>
23198         * loader.c (mono_method_get_signature_full): New public function;
23199         like mono_method_get_signature(), but with an additional
23200         `MonoGenericContext *' argument.
23202         * class.c (mono_class_inflate_generic_signature): Formerly known
23203         as inflate_generic_signature(); make this public.
23205 2004-12-04  Martin Baulig  <martin@ximian.com>
23207         * metadata.c
23208         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
23209         instead of a `MonoGenericContainer *'.  
23210         (mono_metadata_parse_array_full): Likewise.
23211         (mono_metadata_parse_signature_full): Likewise.
23212         (mono_metadata_parse_method_signature_full): Likewise.
23213         (mono_metadata_parse_generic_inst): Likewise.
23214         (mono_metadata_parse_generic_param): Likewise.
23215         (mono_metadata_parse_mh_full): Likewise.
23216         (mono_type_create_from_typespec_full): Likewise.
23218 2004-12-03  Martin Baulig  <martin@ximian.com>
23220         * class-internals.h (MonoGenericContainer): Replaced the
23221         `MonoGenericContext * pointer with a `MonoGenericContext'
23222         structure and made it the first element.
23224 2004-12-03  Martin Baulig  <martin@ximian.com>
23226         * class.c
23227         (inflate_generic_type): Set the `context->container' when creating
23228         a new MonoGenericContext.
23229         (mono_class_inflate_generic_method): Likewise.
23230         (mono_class_create_from_typespec): Just use `context->container'
23231         to get the container.
23233         * loader.c (method_from_methodspec): Set `context->parent' from
23234         `context->container' - and if that's a method container, use its
23235         parent.  Also set the `context->container' when creating a new
23236         MonoGenericContext.
23237         (mono_get_method_from_token): Use just `context->container' to get
23238         the container.
23240         * metadata.c (do_mono_metadata_parse_generic_class): Also set
23241         `gclass->context->container'.
23243         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
23244         the `context->container' when creating a new MonoGenericContext.
23246 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
23248         * reflection.c (compare_genericparam): Sort params with identical
23249         owner by their number. Fixes gen-111 on sparc.
23251 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
23253         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
23254         around the domain changes.
23256         * appdomain.c (mono_domain_unload): Handle the case when the thread
23257         calling Unload is itself being aborted during unloading. Fixes #70022.
23259         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
23261         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
23262         checkpoint_func as an icall so it gets a wrapper.
23263         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
23264         in the cross-appdomain wrappers too.
23266         * threads.c (mono_thread_has_appdomain_ref): Make this public.
23268         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
23270         * reflection.c: Fix some memory leaks.
23271         
23272 2004-12-02  Martin Baulig  <martin@ximian.com>
23274         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
23276         * metadata.c (generic_class_cache): New static hashtable.
23277         (mono_metadata_lookup_generic_class): New public method.
23279 2004-12-02  Martin Baulig  <martin@ximian.com>
23281         * class.c (mono_class_create_from_typedef): Call
23282         mono_class_setup_parent() and mono_class_create_mono_type() before
23283         parsing the interfaces.
23285 2004-12-02  Martin Baulig  <martin@ximian.com>
23287         * metadata.c (generic_inst_cache): New static hashtable.
23288         (mono_metadata_lookup_generic_inst): New public function.
23289         (mono_metadata_inflate_generic_inst): New public function.
23290         (mono_metadata_parse_generic_inst): New public function.
23291         (do_mono_metadata_parse_generic_class): Use the new
23292         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
23293         since this'll also use the cache.
23295         * reflection.c (mono_reflection_bind_generic_method_parameters):
23296         Use mono_metadata_lookup_generic_inst() to use the new cache.
23298         * class.c (inflate_mono_type): Use
23299         mono_metadata_inflate_generic_inst() to inflate a generic
23300         instance; this'll also use the new cache.
23302         * loader.c (method_from_methodspec): Use
23303         mono_metadata_parse_generic_inst() and
23304         mono_metadata_inflate_generic_inst() rather than parsing it
23305         manually, so we can use the new cache.
23307 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
23309         * threads.c (wait_for_tids): Do not incorrectly free threads when 
23310         the wait times out.
23312 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
23314         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
23315         iter->args based on whether parameters are passed in registers (i.e.
23316         MONO_ARCH_REGPARMS is defined)
23318 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
23320         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
23321         the exception message. Fixes #70070.
23322         (method_from_methodspec): Fix warnings.
23324 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23326         * process.c: (complete_path) return the path quoted
23328 2004-12-01  Martin Baulig  <martin@ximian.com>
23330         * class-internals.h (MonoGenericInst): New structure.
23331         (MonoGenericClass): Replaced `type_argc', `type_argv' and
23332         `is_open' with `MonoGenericInst *inst'.
23333         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
23334         `is_open' with `MonoGenericInst *inst'.
23336 2004-11-30  Martin Baulig  <martin@ximian.com>
23338         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
23340         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
23341         to `generic_class_cache'.
23343         * metadata.c
23344         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
23345         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
23346         (mono_generic_inst_is_valuetype): Renamed to
23347         mono_generic_class_is_valuetype().
23349         * class-internals.h
23350         (MonoGenericInst): Renamed to MonoGenericClass.
23351         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
23352         (MonoClass): Renamed `generic_inst' to `generic_class'.
23353         (MonoGenericContext): Renamed `ginst' to `gclass'.
23355         * object-internals.h
23356         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
23358         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
23359         mono_reflection_generic_class_initialize().
23361         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
23362         now known as "System.Reflection.MonoGenericClass".
23363         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
23365 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
23367         * class-internals.h: Added a flag field to MonoClass to cache the
23368         declarative security attributes actions associated with the class.
23369         * domain-internals.h: Added booleans to MonoJitInfo to cache the
23370         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
23371         applicable to the JITted method.
23372         * reflection.c|h: Added functions to extract (as flags) which security
23373         actions are available (declaratively) for a method, class or assembly.
23374         * metadata.c|h: Added functions to search the declarative security
23375         table in the metadata.
23376         
23377 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
23379         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
23380         EXPORTEDTYPES are already in the class name cache, so there is no
23381         need to add extra code here to look at them. Just removes a bit of
23382         cruft.
23384         (ves_icall_System_Environment_get_TickCount): No need for #if
23385         WINDOWS. We already have the code in io-layer.
23387 2004-11-28  Martin Baulig  <martin@ximian.com>
23389         * loader.c
23390         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
23391         Fixes gen-112.cs.
23393 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
23395         * assembly.c (do_mono_assembly_open): Instead of having a
23396         conditional WITH_BUNDLE, incorporate support for bundles here, by
23397         having a global `bundles' variable holding a pointer to the actual
23398         bundles. 
23400         (mono_register_bundled_assemblies): New API call used by the
23401         bundle code. 
23403         See mkbundle.1 for details.
23404         
23405 2004-11-27  Martin Baulig  <martin@ximian.com>
23407         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
23408         the vtable for generic methods.
23410 2004-11-26  Martin Baulig  <martin@ximian.com>
23412         * metadata.c
23413         (mono_metadata_generic_method_hash): New public function.
23414         (mono_metadata_generic_method_equal): Likewise.
23416         * class-internals.h
23417         (MonoGenericContainer): Added `GHashTable *method_hash'.
23419         * reflection.c (ReflectionMethodBuilder): Added
23420         `MonoGenericContainer *generic_container'.
23421         (reflection_methodbuilder_to_mono_method): Don't create a new
23422         MonoGenericContainer each time we're called.
23423         (mono_reflection_bind_generic_method_parameters): Use
23424         `container->method_hash' to cache the results so we don't create a
23425         different method if we're called several times with the same
23426         arguments.
23428         * loader.c (method_from_methodspec): Use the new
23429         `container->method_hash' here, too.
23431 2004-11-26  Martin Baulig  <martin@ximian.com>
23433         * class.c (inflate_generic_signature): Correctly compute
23434         `res->has_type_parameters'.
23435         (mono_class_vtable): Use the `has_type_parameters' flag to
23436         determine whether we're a generic method.
23438         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
23440 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
23442         * object.c (mono_runtime_run_main): Fix a small memory leak.
23444 2004-11-25  Martin Baulig  <martin@ximian.com>
23446         * class.c (set_generic_param_owner): Fixed the loop.
23448 2004-11-25  Martin Baulig  <martin@ximian.com>
23450         * object.c (mono_class_vtable): Don't create any JIT wrappers for
23451         generic methods.
23453 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
23455         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
23456         names. Fixes #69787.
23458 2004-11-24  Martin Baulig  <martin@ximian.com>
23460         * class.c (mono_class_create_generic_2): If we don't have a
23461         `ginst->parent', inflate `gklass->parent' to get our parent.
23463 2004-11-24  Martin Baulig  <martin@ximian.com>
23465         * reflection.c (compare_genericparam): Correctly sort the
23466         GenericParam table; fixes #69779.
23468 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
23470         * reflection.c: When writing a PE file, don't create a huge
23471         buffer in memory. Just write the arrays we have to the file.
23472         This reduces memory usage.
23474         * metadata-internals.h: MonoDynamicStream pefile is no longer used
23475         globally.
23477 2004-11-17  Martin Baulig  <martin@ximian.com>
23479         * class.c (mono_class_init): Don't setup `class->parent' for
23480         dynamic instances; moved this to mono_class_generic_2().
23481         (mono_class_create_generic): Also set `klass->inited' for dynamic
23482         generic instances.
23483         (mono_class_create_generic_2): Don't do anything for dynamic
23484         generic instances.  Set `klass->parent' here and also call
23485         mono_class_setup_parent() here. 
23487         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
23488         `MonoType *parent' argument; set `ginst->parent' before calling
23489         mono_class_create_generic_2(), so we set the correct parent.
23491 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
23493         * reflection.c: allow getting attributes from ModuleBuilder
23494         (used by ikvm).
23496 2004-11-17  Martin Baulig  <martin@ximian.com>
23498         * class.c (mono_class_create_from_typedef): If a type parameter is
23499         inherited from an outer class, set its owner to that class.
23501 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
23503         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
23504           for (int*) written size. This fixes bug #69592.
23506 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
23508         * icall.c: Added IsAuthenticodePresnet internal call.
23509         * image.c|h: New function that check a MonoImage for an Authenticode
23510         signature in the certificate PE data directory.
23511         * security.c|h: New internal call to ask the runtime if an 
23512         Authenticode signature seems referenced in the PE header.
23514 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
23516         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
23518         * reflection.c (mono_image_create_pefile): Free the assembly streams
23519         after writing out the assembly file.
23521         * object.c (mono_runtime_run_main): Fix small memory leak.
23523         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
23524         property access modifiers. Fixes #69389.
23526 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
23528         * domain.c, object.c, object-internals.h, domain-internals.h,
23529         object.h, marshal.c: keep dynamic code info per domain.
23531 2004-11-15  Martin Baulig  <martin@ximian.com>
23533         * class.c (mono_type_get_name_recurse): Put type arguments in
23534         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
23535         see bug #68387.
23537 2004-11-15  Martin Baulig  <martin@ximian.com>
23539         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
23540         (mono_class_setup_vtable): When computing `the_cname' for a
23541         generic instance, don't include the namespace since we'd otherwise
23542         add it twice.
23544 2004-11-15  Martin Baulig  <martin@ximian.com>
23546         * class.c (mono_class_create_generic): Changed return type to void.
23547         (mono_class_create_generic_2): New public function; setup
23548         `class->method', `class->field' and `class->interfaces' here
23549         instead of in mono_class_init().
23551         * class.h (mono_class_create_generic): Moved to class-internals.h.
23553 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
23555         * reflection.c (mono_image_create_pefile): take a file HANDLE.
23556         rather than writing to memory, write to this file. Right now,
23557         we are just writting into a buffer, and copying that. However
23558         we can avoid the buffer later.
23560         (mono_dynamic_stream_reset): new function
23562         * icall.c, object-internals.h: update for the above.
23564 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
23566         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
23567         have been using gc'd memory. First it is slower, unlikely
23568         the comment in the source code said, secondly, it increases
23569         our footprint to do it in the gc.
23571         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
23572         the method so that it does not have to copy to managed code.
23574 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
23576         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
23578 2004-11-12  Martin Baulig  <martin@localhost>
23580         * reflection.c (mono_image_create_token): Allow generic method
23581         definitions here, since they may appear in an `.override'; see
23582         gen-98/gen-99 for an example.
23584 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
23586         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
23587         #69365.
23589         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
23590         descriptive.
23592 2004-11-11  Martin Baulig  <martin@ximian.com>
23594         * class.c (mono_class_setup_vtable): In an explicit interface
23595         implementation, the method name now includes the arity.
23597 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
23599         * object.c (mono_array_full_copy): Fix warning.
23601 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
23603         * appdomain.c: Removed look_for_method_by_name(). Use the new method
23604         mono_class_get_method_from_name() instead.
23605         
23606         * class-internals.h: Added two new types of wrappers. 
23607         Added MonoRemotingTarget enum. Added new trampoline function type, which
23608         takes an additional MonoRemotingTarget value as parameter, so it is
23609         possible to request a trampoline for a specific target.
23610         
23611         * class.c: Added new mono_class_get_method_from_name() method.
23612         
23613         * class.h: In MonoRemoteClass, we can have now to vtables, one for
23614         general remoting sinks and one specific for cross domain calls.
23615         
23616         * debug-helpers.c: Added new wrapper names.
23617         
23618         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
23619         of a remote class.
23620         
23621         * image.c: Porperly delete value objects form the remoting invoke hashtable.
23622         
23623         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
23624         with several other methods (mono_marshal_get_xappdomain_dispatch,
23625         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
23626         and others) can generate a fast remoting wrapper for cross domain calls.
23627         More information can be found in docs/remoting.
23628         Other changes: Removed mono_find_method_by_name, and used
23629         mono_class_get_method_from_name instead.
23630         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
23631         is stored in the remoting invoke hashtable.
23632         
23633         * marshal.h: published the new method for getting the xdomain wrapper,
23634         and also added a method for getting the adequate wrapper for a given
23635         method and target.
23636         
23637         * object-internals.h, object.c: Added a couple of methods for capying and
23638         cloning arrays.
23639         Modified mono_install_remoting_trampoline, which takes the new remoting
23640         trampoline that has a remoting target as parameter.
23641         mono_class_proxy_vtable now also takes a remoting target as parameter, and
23642         will return the most suitable vtable for the target.
23643         Added mono_remote_class_vtable, which returns the vtable of a remote class
23644         (which can be the normal remoting vtable or the xdomain vtable).
23645         
23646         * threads.c: the xdomain invoke and dispatch wrappers must also be
23647         protected against interruptions.
23649 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23651         * icall.c: use memmove in BlockCopyInternal when the source and
23652         destination arrays are the same.
23654 2004-11-09  Martin Baulig  <martin@ximian.com>
23656         * class-internals.h (MonoGenericContainer): Removed `method' and
23657         `signature', replaced them with `is_method' and `is_signature'
23658         flags.  Added `context'.
23660         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
23661         instead of a `MonoGenericContainer *'.
23663         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
23664         for dynamic type parameters.
23665         (mono_metadata_load_generic_params): Setup `container->context'.
23667         * reflection.c (mono_reflection_setup_generic_class): Setup
23668         `tb->generic_container->context'.
23669         (do_mono_reflection_bind_generic_parameters): Use
23670         mono_class_inflate_generic_type() to correctly inflate types,
23671         rather than using our own hack just for MONO_TYPE_VAR.
23673 2004-11-09  Martin Baulig  <martin@ximian.com>
23675         * class.c (mono_class_inflate_generic_method): Small fix; don't
23676         crash here.
23678         * icall.c
23679         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
23680         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
23681         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
23682         (ves_icall_Type_BindGenericParameters): Likewise.
23683         (ves_icall_Type_get_IsGenericInstance): Likewise.
23684         (ves_icall_Type_GetGenericParameterPosition): Likewise.
23685         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
23686         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
23687         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
23689 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
23691         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
23692         assembly versions and public key tokens. Fixes #69113.
23694 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
23696         * metadata.c: fix bug introduced with the type cache changes
23697         on 2004-11-06.
23699 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
23701         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
23702         the MonoClass pointer instead of the token in exception clauses.
23703         * reflection.c: updates for the above and make the code not depend
23704         on the structure of MonoExceptionClause.
23706 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
23708         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23709         Add support for dynamic assemblies. Fixes #69114.
23711         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
23713 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
23715         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
23716         since most only those methods use it. the code member of
23717         MonoMethodPInvoke was dead, so that can be removed too. Also,
23718         remove inline_count (again, not used), and move slot so that it
23719         can share bits with some other flags. This saves 8 bytes in the
23720         structure and gives us about 50 kb back for mcs helloworld.cs
23722         * *.[ch]: Do naming changes for the above.
23724         * loader.c (mono_method_get_header): Lazily init the header
23725         on first access.
23726         (mono_get_method_from_token): don't init the header here
23727         (mono_free_method): the header may never be allocated
23729         Overall, this saves 150 kb of unmanaged allocations
23730         for mcs helloworld.cs. That accounts for 10% of the unmanaged
23731         memory at runtime.
23732         
23733         * loader.c, loader.h (mono_method_get_header): new accessor.
23735         * *.[ch]: use the above method. Prepares us to lazily load
23736         the header.
23738         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
23739         three warnings, which are actual bugs (see 69206).
23741         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
23742         unused. Saves a cool 4 bytes / method.
23744 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
23746         * metadata.c (builtin_types): Add types for System.Object here.
23747         (mono_metadata_parse_type_full): Cache MonoType*'s that are
23748         for a class or valuetype from klass->this_arg or klass->byval_arg.
23750         On mcs for a hello world, this gets us down from 21836 MonoType's
23751         to 14560.
23753         (mono_metadata_free_type): Account for the above change.
23755 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
23757         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
23758         exception instead of asserting if name is null.
23759         (ves_icall_System_AppDomain_GetData): Ditto.
23761 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
23763         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
23764         EnumBuilder.
23766         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
23767         Return NULL when the domain does not have entry_assembly set.
23769         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
23770         Add a 'resource_modules' argument.
23771         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
23773         * reflection.c (mono_reflection_create_runtime_class): Move setting
23774         of wastypebuilder here, so mono_get_type_object () returns a MonoType
23775         for enums too.
23777         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
23778         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
23779         Throw an ArgumentNullException if 'ptr' is null.
23781         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
23782         assemblies here. Fixes #69020.
23784 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
23786         * reflection.c (build_compressed_metadata): Fix the previous patch for
23787         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
23788         the stack.
23790 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
23792         * assembly.c (mono_assembly_names_equal): Allow a match if one of
23793         the cultures is false. Fixes #69090.
23795         * reflection.c (build_compressed_metadata): Fix invalid memory read 
23796         detected by valgrind.
23797         
23798         * reflection.c (mono_reflection_get_type): Avoid triggering a 
23799         TypeResolve multiple times for the same type. Fixes #65577.
23801 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
23803         * marshal.c: Avoid using ldftn to call managed functions. It is
23804         much slower than just a call.
23806         * reflection.c (mono_module_get_object): free the basename we
23807         allocate here from glib.
23808         
23809         * reflection.c (ensure_runtime_vtable): make sure to free
23810         overrides.  Also, we were allocating an array of MonoMethod not an
23811         array of MonoMethod*.
23813         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
23815         * image.c (mono_image_close): free image->guid here.
23817 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
23819         * reflection.c: Fix some spec conformance issues with the PE file
23820         structures so mcs compiled apps run on the Net 2.0 beta.
23822 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
23824         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
23825         Implement this. Fixes #67264.
23827         * debug-helpers.h debug-helpers.c marshal.c: Move 
23828         mono_find_method_by_name to debug-helpers.c.
23830 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
23832         * object.c (mono_release_type_locks): type_initialization_hash is
23833         a GHashTable.
23835         * reflection.c object.c object-internals.h: Fix warnings.
23837         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
23838         without accessors. Fixes #61561.
23840         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
23841         application base from the root domain if not set. Fixes #65641.
23842         (mono_runtime_init): Fix warning.
23844 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23846         * appdomain.c: call mono_thread_pool_init.
23847         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
23848         of worker threads based on the number of CPUs and the environment
23849         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
23850         for non-windows (windows) systems.
23852 2004-10-27  Chris Toshok  <toshok@ximian.com>
23854         * mono-debug-debugger.c (write_class): don't call mono_class_init
23855         here, as even with the check for (!klass->init_pending), we get
23856         into a situation where we're hitting cycles in class
23857         initialization.  Fixes #68816.
23859 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
23861         * image.c: Avoid overwriting values in the loaded_images_hash when an
23862         assembly is loaded multiple times. Fixes #61152.
23864         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
23865         so multiple satellite assemblies for the same name can be loaded.
23866         Fixes #68259.
23868         * mono_domain_assembly_preload: Actually return the loaded assembly, 
23869         not NULL.
23871         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23872         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23874         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23875         pending finalizers are not invoked after the appdomain has been 
23876         unloaded. Fixes #67862.
23878 2004-10-22  Martin Baulig  <martin@ximian.com>
23880         * mono-debug-debugger.c
23881         (mono_debugger_runtime_invoke): Don't box valuetypes.
23883 2004-10-22  Chris Toshok  <toshok@ximian.com>
23885         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23886         don't hide private methods.
23888 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23890         * icall.c: Allows the runtime to "share" (when known) the public key
23891         token of an assembly. This avoid the need to recalculate the token 
23892         (from the public key) in managed code.
23894 2004-10-21  Chris Toshok  <toshok@ximian.com>
23896         * debug-helpers.c (append_class_name): argh, revert last patch.
23897         
23898 2004-10-21  Chris Toshok  <toshok@ximian.com>
23900         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23901         not '/', so that it matches what the debugger uses to look up
23902         methods.
23904 2004-10-21  Martin Baulig  <martin@ximian.com>
23906         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23907         public method; this is called each time an exception is thrown and
23908         allows the debugger to use exception catch points.
23910 2004-10-21  Martin Baulig  <martin@ximian.com>
23912         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23913         the stack pointer and the exception object in some struct and pass
23914         that to the debugger.
23916 2004-10-21  Chris Toshok  <toshok@ximian.com>
23918         * mono-debug-debugger.c (do_write_class): add instance/static
23919         event support.  We don't expose "raise" or "other" yet.
23920         (event_is_static): new method.
23922 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23924         * mono-debug-debugger.c
23925         (mono_debugger_handle_exception): Remove
23926         bogus return value for fussy compilers.
23928 2004-10-20  Martin Baulig  <martin@ximian.com>
23930         * mono-debug-debugger.c
23931         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23932         (mono_debugger_handled_exception): Likewise.
23934 2004-10-20  Martin Baulig  <martin@ximian.com>
23936         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23937         MONO_DEBUGGER_EVENT_EXCEPTION.
23939         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23940         public function to send the debugger a notification for an
23941         exception and inform it about a catch/finally clause.
23943 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23945         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23946         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23947         fix 2.95 build. 
23949         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23951 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23953         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23954         marshalled as [In,Out]. Fixes #58325.
23956 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23958         * reflection.c (mono_method_body_get_object): Implement some fields.
23960 2004-10-12  Martin Baulig  <martin@ximian.com>
23962         * reflection.c (mono_reflection_bind_generic_parameters): Small
23963         fix, correctly retrieve our parent from a generic instance.
23965 2004-10-12  Martin Baulig  <martin@ximian.com>
23967         * metadata.c (mono_metadata_generic_param_equal): We always have
23968         an owner.
23970         * class.c
23971         (mono_class_from_generic_parameter): We need to have an owner.
23972         (my_mono_class_from_generic_parameter): Likewise.
23974         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23975         mono_reflection_create_generic_class() and added a new
23976         mono_reflection_setup_generic_class().  
23977         (mono_reflection_initialize_generic_param): If we're a nested
23978         generic type and inherited from the containing class, set our
23979         owner to the outer class.
23981 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23983         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23985         * reflection.c (mono_method_body_get_object): New function to create
23986         a MethodBody object.
23988         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23990 2004-10-11  Martin Baulig  <martin@ximian.com>
23992         * metadata.c (_mono_metadata_type_equal): Renamed to
23993         do_mono_metadata_type_equal() and made static.
23995 2004-10-11  Martin Baulig  <martin@ximian.com>
23997         * appdomain.c: Bump corlib version number to 28.
23999 2004-10-10  Martin Baulig  <martin@ximian.com>
24001         * class-internals.h
24002         (MonoGenericInst): Added `MonoGenericContainer *container'.
24003         (MonoGenericMethod): Likewise.
24004         (MonoGenericContext): Likewise.
24005         (MonoGenericParam): Added `MonoGenericContainer *owner'.
24007         * metadata.c
24008         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
24009         (do_mono_metadata_parse_generic_inst): Likewise.
24010         (mono_metadata_parse_type_full): New public method.  This is the actual
24011         mono_metadata_parse_type() implementation - with an additional
24012         `MonoGenericContainer *' argument.
24013         (mono_metadata_parse_array_full): Likewise.
24014         (mono_metadata_parse_signature_full): Likewise.
24015         (mono_metadata_parse_method_signature_full): Likewise.
24016         (mono_metadata_parse_mh_full): Likewise.
24017         (mono_type_create_from_typespec): Likewise.
24018         (mono_metadata_interfaces_from_typedef_full): New public method;
24019         this is similar to the other _full() methods, but we take a
24020         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
24021         (mono_metadata_parse_generic_param): Take an additional
24022         `MonoGenericContainer *' argument and lookup the MonoGenericParam
24023         from that container.
24024         (mono_metadata_generic_param_equal): New static method to compare
24025         two type parameters.
24026         (_mono_metadata_type_equal): New static method; takes an
24027         additional `gboolean signature_only' argument - if true, we don't
24028         compare the owners of generic parameters.
24029         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
24030         with a TRUE argument - do a signature-only comparision.
24032         * loader.c: Use the new _full() methods and pass the
24033         MonoGenericContainer to them.
24035         * object-internals.h (MonoReflectionTypeBuilder): Added
24036         `MonoGenericContainer *generic_container' field.
24037         (MonoReflectionMethodBuilder): Likewise.
24039 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
24041         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
24042         case initial images of dynamic assemblies.
24044         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
24046         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
24048         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
24049         length of event->other array.
24050         (typebuilder_setup_events): Ditto.
24052         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
24053         'assembly_by_name' and add an 'assemblies' list.
24055         * assembly.h assembly.c: Add a new search hook for determining whenever
24056         an assembly is already loaded. Use this instead of searching in the
24057         loaded_assemblies list.
24059         * domain.c appdomain.c: Implement the new search hook so loaded 
24060         assemblies are now scoped by appdomain. Fixes #67727.
24062 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
24064         * threads.c (mono_thread_attach): Initialize synch_lock field so
24065         mono_thread_detach works again.
24067         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
24068         'lib' too. Fixes #63130.
24070 2004-10-06  Jackson Harper  <jackson@ximian.com>
24072         * culture-info-tables.h: regenerated.
24074 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
24076         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
24077         implemented by other interfaces in the result. Fixes #65764.
24078         
24079         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24080         Handle unloadable modules without crashing.
24082         * image.c (load_modules): Revert the previous patch since modules must
24083         have a fixed index inside the array.
24084         
24085         * image.c (load_modules): Don't include native modules in the modules
24086         array.
24088 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
24090         * reflection.h: Add param_defaults field.
24092         * reflection.c: Add support for parameter defaults in dynamic methods.
24093         Fixes #64595.
24095         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
24096         an empty string when a type has no namespace. Fixes #64230.
24098 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
24100         * tabledefs.h: Added "internal" security actions to support non-CAS
24101         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
24102         Note: they do not seems to be used anymore in 2.0 (new metadata format)
24104 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
24106         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
24107         constructor of abstract class. Fixes #61689.
24109 2004-10-04  Martin Baulig  <martin@ximian.com>
24111         * class-internals.h (MonoGenericContainer): New type.
24112         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
24113         `MonoGenericContainer *generic_container'.
24114         (MonoClass): Replaced `gen_params' and `num_gen_params' with
24115         `MonoGenericContainer *generic_container'.
24117         * metadata.c (mono_metadata_load_generic_params): Return a
24118         `MonoGenericContainer *' instead of a `MonoGenericParam *';
24119         removed the `num' argument.
24121 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
24123         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
24124         for dynamic images.
24126         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
24127         machine fields.
24129         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
24131         * reflection.c: Save pe_kind and machine values into the generated
24132         image file.
24134         * appdomain.c: Bump corlib version number.
24136         * object-internals.h: Reorganize layout of LocalBuilder.
24138         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
24139         New helper function.
24141         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
24142         created MonoType for dynamic types. Fixes #66180.
24144 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
24146         * threadpool.c: the ares hashtable needs a critical section around it.
24147         this prevents some nasty segfaults
24149 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
24151         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
24152         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
24153         bug 67324).
24154         
24155 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
24157         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
24158         
24159 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
24161         * image.c: Always canonicalize image file names, to avoid loading
24162         the same assembly twice when referenced using a relative path.
24164 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
24166         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
24168         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
24170         * marshal.c: Fix warnings.
24172 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
24174         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
24175         attempting to marshal the delegate_trampoline as the method_addr.
24176         This patch has a static hashtable of marshalled delegates so that 
24177         we can map delegate_trampoline addresses back to delegates.  This
24178         allows a delegate passed to managed code to be passed back into native
24179         code.  Fixes #67039
24181 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
24183         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
24185         * reflection.c (method_encode_code): Align method headers properly.
24186         Fixes #66025.
24188 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
24190         * marshal.c: In the runtime invoke wrapper, reset the abort
24191         exception if it is cached. This avoids the automatic rethrowal of 
24192         the exception after the catch of the wrapper. Also check for pending
24193         interruptions before calling the managed method. This is done using
24194         the new method emit_thread_force_interrupt_checkpoint, since the
24195         normal checkpoint method is ignored when running the invoke wrapper.
24196         * object.c: If the abort exception is rethrown, set the abort_exc
24197         field of the thread, so it will be rethrown aftere every catch.
24198         * threadpool.c: Only run an interruption checkpoint if what has been
24199         requested is a stop of the thread (aborts will be ignored).
24200         * threads.c: By default, a thread will now never be interrumped while
24201         running the runtime invoke wrapper (this ensures that runtime_invoke
24202         will always return to the caller if an exception pointer is provided).
24203         There is a new special method mono_thread_force_interruption_checkpoint()
24204         to force an interruption checkpoint even if running a protected
24205         wrapper, which is used by the same runtime invoke wrapper to do a check
24206         at a safe point.
24208 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
24210         * object.c, object-internals.h: Implemented mono_release_type_locks,
24211         which releases the cctor locks held by a thread.
24212         * threads.c, threads.h: In thread_cleanup, release cctor locks held
24213         by a thread. Added mono_thread_exit() method to be used to safely stop
24214         a thread.
24216 2004-09-28  Raja R Harinath  <rharinath@novell.com>
24218         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24219         Move null check before dereference.  Avoid indexing beyond the end
24220         of the 'modules' array.
24222 2004-09-28  Raja R Harinath  <rharinath@novell.com>
24224         * metadata-internals.h (MonoImage): Add module_count field.
24225         * image.c (load_modules): Set image->module_count.
24226         (mono_image_load_file_for_image): Use image->module_count.
24227         * reflection.c (mono_image_load_module): Append to image->modules array 
24228         of dynamic assembly.
24229         (mono_module_get_object): Fix loop to actually increment index.
24230         Use image->module_count.
24231         * assembly.c (mono_assembly_load_references): Use image->module_count.
24232         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
24233         Likewise.
24235 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
24237         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
24238         Avoid assert on generic types.
24240 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
24242         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
24244         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
24246         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
24247         function to convert a MarshalSpec structure to its managed counterpart.
24249         * reflection.c: Fix warnings.
24250         
24251         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
24252         field.
24254         * icall.c (mono_create_icall_signature): Fix build.
24256 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
24258         * icall.c: Add MakePointType icall.
24260         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
24261         warnings.
24263 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24265         * threadpool.c: reuse allocated slots in the queue.
24267 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
24269         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
24271         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
24273         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
24274         previous change.
24276         * tabledefs.h: Add constants for pinvoke attributes BestFit and
24277         ThrowOnUnmappableChar.
24279         * icall.c (ves_icall_Type_GetPacking): New icall.
24281 2004-09-24  Martin Baulig  <martin@ximian.com>
24283         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
24285 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24287         * appdomain.c:
24288         (mono_domain_set): allow setting a domain that is being unloaded.
24289         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
24290         being unloaded.
24292 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
24294         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
24295         the GetCustomAttributes icall.
24297 2004-09-23  Martin Baulig  <martin@ximian.com>
24299         * object-internals.h (MonoReflectionGenericParam): Replaced
24300         'has_ctor_constraint', `has_reference_type' and `has_value_type'
24301         with `guint32 attrs'.
24303 2004-09-23  Martin Baulig  <martin@ximian.com>
24305         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
24307 2004-09-23  Martin Baulig  <martin@ximian.com>
24309         * object-internals.h (GenericParameterAttributes): New enum.
24311 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
24313         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
24314         
24315         * class.c (init_events): Fill out event->other field.
24317         * class.c: Fix warnings.
24319         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
24321 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
24323         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
24324         walk which doesn't supply the IL offset.
24326 2004-09-22  Martin Baulig  <martin@ximian.com>
24328         * reflection.c (mono_reflection_setup_internal_class): If we're
24329         System.ValueType, System.Object or System.Enum, set
24330         `klass->instance_size' and create the vtable.
24331         (mono_reflection_create_internal_class): If we're an enum type,
24332         get the base class from our current corlib.
24334 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
24336         * reflection.h (MonoResolveTokenError): New type.
24338         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
24339         icall.
24341         * icall.c: Add an 'error' argument to the ResolveToken icalls.
24343 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
24345         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
24346         Support also calling constructors, but only for already allocated objects.
24348 2004-09-17  Geoff Norton <gnorton@customerdna.com>
24350         * reflection.c (type_get_qualified_name): If the klass is null
24351         return the typename to avoid a NullRefEx.
24352         (encode_cattr_value): Get the qualified name of the boxed type,
24353         not the underlying enumtype.  Fixes #62984.
24355 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
24357         * marshal.c: Fix problems with previous checkin.
24359 2004-09-21    <vargaz@freemail.hu>
24361         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
24362         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
24364         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
24366 2004-09-21  Geoff Norton <gnorton@customerdna.com>
24368         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
24369         should only return a type for pointers, arrays, and passbyref types.
24370         Fixes bug #63841.
24372 2004-09-21  Martin Baulig  <martin@ximian.com>
24374         * domain.c (mono_debugger_check_runtime_version): New public
24375         function.
24377         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
24379 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
24381         * reflection.c: Added missing sort to the declarative security 
24382         attributes table. MS implementation stops seeing the attributes if the
24383         token number regress in the table (as shown by ildasm and permview).
24385 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
24387         * object-internals.h (MonoReflectionModule): Add 'token' field.
24388         
24389         * reflection.c (mono_reflection_get_token): Add support for Module
24390         and Assembly.
24391         (mono_module_get_object): Set 'token' field.
24392         (mono_module_file_get_object): Set 'token' field.
24394         * icall.c: Add new Assembly and Module icalls.
24396         * appdomain.c: Bump corlib version.
24398 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
24400         * loader.h loader.c class.h class.c: Add helper functions for obtaining
24401         tokens of metadata objects.
24403         * reflection.h reflection.c (mono_reflection_get_token): New function
24404         to obtain the token of a metadata object.
24406         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
24408 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
24410         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
24411         
24412         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
24414 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
24416         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
24417         * object-internals.h: Added 3 MonoArray* members to MonoReflection
24418         AssemblyBuilder to access the permissions set in the class lib.
24419         * reflection.c: Added security attributes encoding step in 
24420         mono_image_build_metadata.
24421         * tabledefs.h: Added new security actions defined in 2.0:
24422         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
24424 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24426         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
24427         macro parameter.
24429 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24431         * locales.c: nullify the ICU_collator member of CompareInfo when it is
24432           finalized. There where random SIGSEVs at program termination, when
24433           an object being finalized was trying to do a string comparison and
24434           the current culture was already finalized.
24436 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24438         * threads.c: call thread_cleanup before finishing the thread if we get
24439         there.
24441 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
24443         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
24444         assemblies from the parent. Fixes #65665.
24446 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
24448         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
24449         modifiers.
24451 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
24453         * reflection.h: add prototype for mono_get_dbnull_object
24454         * reflection.c: add prototypes for get_default_param_value_blobs 
24455         and mono_get_object_from_blob for fussier compilers
24457 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
24459         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
24460         false deadlock checks in class initialization.
24462 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
24464         * image.c (mono_image_addref): Fix comment.
24466         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
24467         possible.
24469 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
24471         * reflection.c (mono_param_get_objects): Modified to return
24472         ParameterInfo.DefaultValue object.
24474         (get_default_param_value_blobs):
24475         (mono_get_object_from_blob):
24476         (mono_get_dbnull_object): New helper routines. 
24478         * object.c (mono_get_constant_value_from_blob): New helper routine
24479         carved out from get_default_field_value ()
24481         * object-internals.h (mono_get_constant_value_from_blob): Added
24482         function declaration.
24484 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
24486         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
24487         referenced assemblies. Fixes #62135.
24489         * exception.h exception.c (mono_get_exception_file_not_found2): New
24490         helper function.
24492 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
24494         * class.h class.c: Add mono_type_get_underlying_type ().
24496 2004-09-09  Geoff Norton <gnorton@customerndna.com>
24498         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
24499         Fix GetTypes() to support dynamically created assemblies.
24501 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
24503         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
24504         
24505         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
24506         previous patch.
24508         * reflection.h reflection.c loader.c: Allow dynamic construction of
24509         pinvoke methods. Fixes #65571.
24510         
24511         * reflection.c (mono_reflection_get_type): Revert previous change since
24512         it causes regressions.
24514 2004-09-08  Martin Baulig  <martin@ximian.com>
24516         * class.c (class_compute_field_layout): Don't call
24517         mono_class_layout_fields() for open generic instances.
24519 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
24520         * threads.c appdomain.c: fix typo in GC macro
24522 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24524         * threads.c: don't call mono_thread_detach() in start_wrapper(),
24525         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
24527 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
24529         * image.c (mono_image_close): Applied patch from 
24530         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
24531         assembly is loaded multiple times from data.
24532         
24533         * image.c (mono_image_open): Fix warning.
24535 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24537         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
24538         once. Fixes #58334.
24539         
24540         * reflection.c (mono_reflection_create_runtime_class): Initialize
24541         klass->nested_classes. Fixes #61224.
24543 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24545         * threads.c: sched_yield() on exit, to allow threads to quit.
24547 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24549         * object.c (mono_unhandled_exception): Remove leftover debug code.
24551 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
24553         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
24555 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24557         * marshal.c (emit_marshal_array): Really null terminate string arrays.
24558         
24559         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
24561 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24563         * marshal.c (emit_marshal_array): Null terminate string arrays.
24564         
24565         * marshal.c (raise_auto_layout_exception): Fix warning.
24567         * reflection.c (mono_param_get_objects): Initialize the default value
24568         with DBNull.Value, not null. Fixes #62123.
24570 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
24572         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
24573         throw an exception with a cute explanation.
24575 2004-09-06  Dick Porter  <dick@ximian.com>
24577         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
24578         Close the new process's thread handle, as we don't use it.  The
24579         handle stays around forever otherwise.
24581 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24583         * object.c (arith_overflow): Fix warning.
24585         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
24586         calling conventions in method refs. Fixes #65352.
24588         * reflection.c: Fix warnings.
24590 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24592         * icall.c: Add a new icall for Array.Clear
24594 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24596         * object.c: When allocating an array, we have to throw
24597         an overflow exception if any of the lengths are < 0.
24599 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24601         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
24602         properly. Also move implementation of string array marshalling to 
24603         managed code. Fixes #42316.
24605 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24607         * assembly.c: provide more information when loading an assembly fails.
24609 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24611         * filewatcher.c: don't expect the development fam package to be
24612         installed.
24614 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
24616         * marshal.c: Make a copy of the signature cookie since it will be
24617         freed by the caller.
24618         
24619         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
24621         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
24623         * metadata.c (mono_metadata_free_marshal_spec): New function to free
24624         marshal specs.
24626         * marshal.c: More refactoring.
24627         
24628         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
24629         smaller functions.
24631 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
24633         * object.c: In mono_message_invoke, fill the output parameter array after
24634           calling the managed method (it was done before the call). This fixes
24635           bug #59299.
24637 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24639         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
24640         as well.
24642 2004-09-02  Martin Baulig  <martin@ximian.com>
24644         * class.c (mono_class_instance_size): Don't allow generic type
24645         definitions or open generic instances.
24646         (mono_class_array_element_size): If we're a value type, call
24647         mono_class_instance_size() on the original class.
24649         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
24650         handle generic instances.
24652         * mono-debug-debugger.c (write_type): Handle generic instances
24653         like classes.
24655 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24657         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
24658         the allocation request fails. Fixes #65089.
24660         * object.c (mono_runtime_free_method): Do not call mono_free_method.
24661         
24662         * object.c (mono_runtime_free_method): New function to free a dynamic
24663         method.
24665         * marshal.c (mono_delegate_free_ftnptr): New function to free the
24666         delegate trampoline.
24668         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
24669         with hasthis as dynamic,
24671         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
24673         * domain.c (mono_jit_info_table_remove): New function to remove an
24674         entry from the jit info table.
24676         * class-internals.h (MonoMethod): Add 'dynamic' field.
24678         * loader.c: Fix warnings.
24680 2004-09-01  Martin Baulig  <martin@ximian.com>
24682         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
24683         instead of mono_debugger_lock() because the latter one is a no-op
24684         unless running in the debugger.
24686 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24688         * class.c (class_compute_field_layout): Classes with auto-layout or
24689         reference fields are not blittable.
24690         
24691 2004-09-01  Dick Porter  <dick@ximian.com>
24693         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
24694         mono_image_get_filename() to get the assembly location.
24696         * icall.c:
24697         * metadata.h: Fix compile warnings
24699 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24701         * class.c (class_compute_field_layout): System.Object is blittable.
24703         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
24704         as in/out. Fixes #59909.
24706 2004-09-01  Martin Baulig  <martin@ximian.com>
24708         * metadata.h (MONO_TYPE_ISREFERENCE): Call
24709         mono_metadata_generic_inst_is_valuetype() if we're a generic
24710         instance to check whether our underlying type is a reference type.
24712 2004-09-01  Martin Baulig  <martin@ximian.com>
24714         * metadata.c (mono_type_size): If we're a generic instance, call
24715         mono_class_value_size() for value types.
24717 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
24719         * marshal.c: Implement more custom marshalling functionality. Fixes
24720         #64915.
24722 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24724         * mono-debug.c, debug-mono-symfile.c: add some locking love.
24726 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
24728         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
24730         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
24732         * icall.c: Fix some warnings.
24734         * threads.c (abort_appdomain_thread): Fix unref errors.
24735         (mono_thread_current): Fix THREAD_DEBUG define.
24737 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
24739         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
24741         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
24743 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
24745         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
24746         string arrays.
24748 2004-08-28  Martin Baulig  <martin@ximian.com>
24750         * metadata.c
24751         (mono_metadata_generic_inst_is_valuetype): New public function.
24753         * metadata.h (MONO_TYPE_ISSTRUCT): Call
24754         mono_metadata_generic_inst_is_valuetype() if we're a generic
24755         instance to check whether our underlying type is a valuetype.
24757 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
24759         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
24760         #63768.
24762 2004-08-25  Martin Baulig  <martin@ximian.com>
24764         * loader.c (mono_get_method_from_token): Abstract methods can also
24765         be generic and thus have type parameters.
24767         * metadata-internals.h
24768         (MonoDynamicImage): Added `GPtrArray *gen_params'.
24770         * reflection.c (mono_image_get_generic_param_info): Don't create a
24771         metadata row, just add an entry to the `gen_params' array.
24772         (build_compressed_metadata): Sort the `gen_params' array and then
24773         actually create the metadata.
24775 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24777         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
24779 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
24781         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
24783 2004-08-24  Martin Baulig  <martin@ximian.com>
24785         * class.cs (mono_class_is_subclass_of): Like an interface, a
24786         generic instance also derives from System.Object.
24788 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
24790         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
24791         custom modifiers to be in any order. Fixes #61990.
24793 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
24795         * object.c: Register mono_object_new_fast icall.
24796         
24797         * object.c (mono_class_get_allocation_ftn): Return to calling
24798         mono_object_new_fast, since it seems faster to compute the object 
24799         size in unmanaged code than passing it as a parameter.
24801         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
24803         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
24804         this function with Boehm as the oom handler, so we don't have to check
24805         the result of GC_malloc.
24807         * object.c: Remove checks for oom.
24809         * object.h object.c (mono_class_get_allocation_ftn): New function to
24810         return the icall which can be used to allocate an instance of a given
24811         class. 
24813         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
24815         * class-internals.h: Add 'enabled' field.
24817 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
24819         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
24821 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
24822         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
24823         value 0x0010.
24825 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
24827         * appdomain.c: use the Tls function for appdomain too,
24828         at Zoltan's request. Actually return in mono_context_get
24830         * appdomain.c, profiler.c, threads.c: use __thread
24832 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
24834         * appdomain.c threads.c: Call GC_CreateThread on windows.
24836         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
24837         multiple libraries since this don't work on windows.
24839 2004-08-18  Martin Baulig  <martin@ximian.com>
24841         * class-internals.h
24842         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
24843         MonoMethodHeader.
24845         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
24846         MonoMethodNormal since we also need it for abstract and interface
24847         methods.
24849         * reflection.c
24850         (build_compressed_metadata): Sort the GenericParam table.
24851         (mono_image_create_token): Added `gboolean create_methodspec'
24852         argument; this is false when generating a MethodImpl token.
24853         (reflection_methodbuilder_to_mono_method): Abstract and interface
24854         methods may also have generic parameters.
24856 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
24858         * appdomain.c: thread local alloc
24860 2004-08-17  Martin Baulig  <martin@ximian.com>
24862         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
24864         * icall.c
24865         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
24866         argument.
24868         * class.c (mono_type_get_full_name): New public function.
24869         (mono_type_get_name): Don't include the type arguments.
24871 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24873         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24874         for inclusion into the mono executable.
24876 2004-08-16  Martin Baulig  <martin@ximian.com>
24878         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24879         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24881 2004-08-14  Martin Baulig  <martin@ximian.com>
24883         * class.c (dup_type): Also copy the `byref' field.
24885 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24887         * reflection.c (create_dynamic_mono_image): Revert the last change 
24888         since it breaks bootstrap.
24890 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24892         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24894         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24895         not free them with g_free.
24897 2004-08-11  Martin Baulig  <martin@ximian.com>
24899         * reflection.c (mono_reflection_setup_internal_class): Also call
24900         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24902 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24904         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24905         called during default (first) AppDomain creation. Keep track of
24906         Evidence when loading assemblies.
24908 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24910         * opcodes.c, opcodes.h: reduce runtime relocations.
24912 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24914         * culture-info.h, locales.c: fixes and chages to sue the new
24915         optimized format of the locale data.
24916         * culture-info-tables.h: regenerated.
24918 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24919         
24920         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24922 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24924         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24925         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24926         * domain-internals.h: icall declaration.
24927         * icall.c: icall registration.
24928         * object-internals.h: New fields in MonoAssembly for CAS.
24930 2004-08-05  Duncan Mak  <duncan@ximian.com>
24932         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24933         CEE_LDELEM_ANY.
24935 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24937         * reflection.c: fix to deal with object[] arrays in custom ctors
24938         (bug #62550).
24940 2004-08-05  Martin Baulig  <martin@ximian.com>
24942         * class.c (mono_class_array_element_size): Added support for
24943         generic instances and correctly handle "recursive" types.
24945 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24947         * assembly.c: Fix warnings.
24949 2004-08-04  Martin Baulig  <martin@ximian.com>
24951         * class.c
24952         (mono_type_get_name_recurse): Added `gboolean include_arity'
24953         argument specifying whether or not we should include the generic
24954         arity in the type name.
24955         (_mono_type_get_name): New static function.
24956         (mono_class_setup_vtable): If we're a generic instance, don't
24957         include the generic arity in the names of explicit method
24958         implementations.        
24960 2004-08-03  Martin Baulig  <martin@ximian.com>
24962         * class.c (mono_type_get_name_recurse): Enclose the generic type
24963         arguments in `<', '>'.
24965 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24967         * gc.c: make GC warning messages use the trace API, they are just
24968         noise to most of the users.
24970 2004-08-03  Martin Baulig  <martin@ximian.com>
24972         * debug-mono-symfile.c (read_string): Correctly read the string.
24974 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24976         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24977         
24978         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24979         icalls.
24980         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24982 2004-07-30  Martin Baulig  <martin@ximian.com>
24984         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24985         Reflect latest symbol writer changes.   
24987 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24989         * object.c: always create an object if null is passed
24990         to Invoke() where a valuetype is expected.
24992 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24994         * marshal.c (mono_marshal_init): make managed
24995         signatures match native ones better for 64bits.
24997 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24999         * appdomain.c: hack to build correctly the private bin path on windows.
25000         Fixes bug #61991.
25002 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
25004         * assembly.c: Load mscorlib from the correct framework directory
25005           (mono/<version>/mscorlib.dll).
25006         * appdomain.h: Added prototypes for new functions.
25007         * internals.h: Added some prototypes.
25008         * domain.c: When initializing the runtime, get from the executable and
25009           the configuration files the runtime version that the app supports.
25010           Added support methods for reading app.exe.config. Added list of versions
25011           supported by the JIT. Added two new methods: mono_init_from_assembly,
25012           which initializes the runtime and determines the required version from
25013           the provided exe file, and mono_init_version, which initializes
25014           the runtime using the provided version.
25015         * icall.c: Get machine.config from version-specific directory.
25016         * reflection.c: When generating an image, embed the version number
25017           of the current runtime.
25019 2004-07-28  Dick Porter  <dick@ximian.com>
25021         * socket-io.c
25022         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
25023         returned sockaddr size before creating the remote address object.
25024         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
25025         61608.
25027 2004-07-28  Dick Porter  <dick@ximian.com>
25029         * locales.c (string_invariant_compare_char): Fix invariant char
25030         compares between upper and lower cases.  Fixes bug 61458.
25032 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
25033         
25034         * marshal.c: actually cache stelem.ref wrappers.
25035         
25036 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
25038         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
25039         sections and remove the mono_cli_rva_map () function.
25041 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25043         * debug-mono-symfile.c: fix one more endianess issue, from a patch
25044         by Geoff Norton (<gnorton@customerdna.com>).
25046 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25048         * class.c: fix class loads for pointer types (typeof(int) !=
25049         typeof(int*)).
25051 2004-07-27  Martin Baulig  <martin@ximian.com>
25053         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
25054         reading the debugging information from an external ".mdb" file.
25056 2004-07-24  Martin Baulig  <martin@ximian.com>
25058         * reflection.c (mono_image_get_type_info): Only write a class
25059         layout entry if we actually have a size or a packing size.
25061 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25063         * reflection.c (type_get_fully_qualified_name): 
25064         insert cast to get type checking of ?: with non-gcc compilers
25066 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25068         * rand.c: use g_getenv for both lookups of
25069         MONO_EGD_SOCKET
25071 2004-07-17  Martin Baulig  <martin@ximian.com>
25073         * reflection.c (mono_reflection_bind_generic_method_parameters):
25074         Set `gmethod->reflection_info'.
25076 2004-07-17  Martin Baulig  <martin@ximian.com>
25078         * class.c (mono_class_create_from_typedef): Insert the newly
25079         created class into the hash table before computing the interfaces
25080         since we could be called recursively.
25082 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
25084         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
25085         function to implement stelem.ref in managed code
25086         * class-internals.h, debug-helpers.c: a new wrapper type
25087         for the above.
25089 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25091         * gc.c: allow GC handles to work even when no GC is compiled in.
25092         Fix part of bug #61134 (GetAddrOfPinnedObject).
25094 2004-07-13  Peter Williams  <peter@newton.cx>
25096         * process.c (complete_path): Make sure we don't attempt to execute
25097         directories.
25099 2004-07-12  Geoff Norton <gnorton@customerdna.com>
25101         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
25102           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
25103           and will add/subtract the hour if needed
25105 2004-07-12  Martin Baulig  <martin@ximian.com>
25107         * reflection.c (mono_field_get_object): If we have
25108         `field->generic_info', take the attributes from
25109         `field->generic_info->generic_type'.    
25111 2004-07-12  Martin Baulig  <martin@ximian.com>
25113         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
25114         This function must be called before initializing the runtime.
25115         (mono_debug_init_1): New function; call this after initializing
25116         the runtime, but before loading the assembly.  It tells the
25117         debugger to load corlib and the builtin types.
25119         * mono-debug-debugger.c: Did some larger changes in the debugging
25120         code; support recursive class declarations, make sure we actually
25121         add all classes.
25123 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25125         * debug-helpers.c: undo my previous patch and fixed the real issue in
25126         ../mini/exceptions-x86.c
25128 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25130         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
25131         when no HOME env. variable was set and a NullRef was thrown in a .cctor
25132         called from other .cctors.
25134 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
25136         * loader.c: Removed the mono_loader_wine_init hack now that we are
25137         doing a managed version of Windows.Forms.
25139 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
25141         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
25142         threadpool.c, threads.c: remove static data from rootset.
25144 2004-07-09  Dick Porter  <dick@ximian.com>
25146         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
25147         Don't do any more processing if the matched length was 0.  It was
25148         increasing the size of the string before.  Fixes bug 61167.
25150 2004-07-09  Dick Porter  <dick@ximian.com>
25152         * socket-io.h:
25153         * socket-io.c
25154         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
25155         Add support for SO_PEERCRED if its available.
25157 2004-07-09  Peter Bartok <pbartok@novell.com>
25158         * loader.c: winelib.exe.so error message is now only displayed if
25159         MONO_DEBUG is set. To help us avoid questions when people are trying
25160         out the new Managed.Windows.Forms.
25162 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
25164         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
25165         for isinst and castclass wrappers.
25167         * class-internals.h icall.c: Move registration and lookup of JIT icalls
25168         to libmetadata from the JIT, so they could be used by the marshalling
25169         code and the interpreter.
25171         * marshal.c: Register marshalling related JIT icalls here instead of
25172         in mini.c. Use CEE_MONO_ICALL instead of the family of 
25173         CEE_MONO_PROC<x> opcodes to call marshalling functions.
25175         * metadata.h: Remove unneeded marshalling conversions.
25177         * opcodes.c: Update for new opcodes.
25178         
25179 2004-07-08  Martin Baulig  <martin@ximian.com>
25181         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
25182         (mono_debug_get_domain_data): Make this function static.
25184 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
25186         * gc.c, object.h: add nice GC handle API for embedders.
25188 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
25190         * reflection.c: more changes for the new api
25192         * object.c: When we reflect on a field w/ a constant value, it
25193         will not have a memory location, so we must access metadata. Also,
25194         allow easier reading of strings so that we can read them from
25195         the constant data.
25197         * class.c (mono_class_layout_fields): no need for literal fields here.
25199         * class-internals.h: api changes for const fields
25201         * icall.c (ves_icall_get_enum_info): use new apis for const fields
25203 2004-07-06  Martin Baulig  <martin@ximian.com>
25205         * mono-debug.h: Increment version number to 44.
25207         * mono-debug.c (mono_debug_add_wrapper): The second argument is
25208         now a gpointer, rewrote this whole method.
25210         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
25211         function.  Add information about the wrapper in a new "misc table".
25213         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
25214         for the new misc table.
25216 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
25218         * metadata-internals.h image.c: Add a cache for helper signatures.
25220         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
25222 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
25224         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
25225         delegates from a delegate. Fixes #61033.
25226         
25227         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
25228         marshalling of stringbuilder arrays. Fixes #59900.
25230 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
25232         * icall.c: Add EnumBuilder:setup_enum_type icall.
25234 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
25236         * icall.c: Added a new icall for the property version of
25237         OffsetOfStringData.
25239 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
25241         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
25242         it has a constant size across platforms.
25244         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
25245         stack trace.
25247 2004-06-29  Martin Baulig  <martin@ximian.com>
25249         * mono-debug.c (mono_debug_add_method): Protect the whole function
25250         in mono_debugger_lock(), not just parts of it.
25252 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25254         * reflection.c: make sure padding bytes in heaps are zeroed.
25256 2004-06-24  David Waite  <mass@akuma.org>
25258         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
25259         image.c, loader.c, locales.c, marshal.c, metadata.c,
25260         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
25261         string-icalls.c, threads.c: change to C90-style comments from C99 /
25262         C++ -style
25264 2004-06-24  Dick Porter  <dick@ximian.com>
25266         * threads.c
25267         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
25268         return createdNew.  Fixes bug 60412.
25270         * threads-types.h: 
25271         * icall.c: Add createdNew parameter to CreateMutex icall
25273 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25275         * reflection.c, object-internals.h: save default value in params.
25277 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25279         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
25280         no need to build a new path combining that with the application base.
25281         Fixes bug #60442.
25283 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
25285         * reflection.c: fixed minor standard compliance issues.
25287 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
25289         * reflection.c: fixed issue with encoding some custom attributes
25290         (arrays in properties and fields, bug #60411).
25292 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25294         * reflection.c: fix start address when copying the public key token.
25296 2004-06-23  Martin Baulig  <martin@ximian.com>
25298         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
25299         the `exc' object in a static object to put it into the GC's root set.
25301 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
25303         * reflection.c: make mono_reflection_setup_internal_class ()
25304         callable a second time to setup a new parent class.
25306 2004-06-23  Dick Porter  <dick@ximian.com>
25308         * threads.c: Check for WAIT_IO_COMPLETION return values.
25310 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
25312         * appdomain.c: Removed the g_free on the public key token. Now copy 
25313         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
25314         * assembly.c: Added public key token string value when loading 
25315         assemblies. Fix bug #60439.
25316         * icall.c: Added missing informations (like public key) in 
25317         GetReferencedAssemblies. Fix #60519.
25318         * image.h: Changed definition for public key token from const char*
25319         public_tok_value to guchar public_key_token [17];
25320         * reflection.c: Updated for changes to public key token.
25322 2004-06-22  Lluis Sanchez Gual
25324         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
25325         for the field in base classes.
25327 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25329         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
25330         mark headers as not supported, they are installed only for use by the
25331         debugger.
25333 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
25335         * *.c, *.h: avoid namespace pollution in public headers.
25337 2004-06-21  Martin Baulig  <martin@ximian.com>
25339         * exception.c (mono_get_exception_security): It's in
25340         "System.Security", not in "System".
25342         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
25343         the exception classes.
25345 2004-06-21  Martin Baulig  <martin@ximian.com>
25347         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
25348         Protect the exception object from being finalized.
25350 2004-06-21  Martin Baulig  <martin@ximian.com>
25352         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
25353         public function.
25355 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
25357         * reflection.c: Load the assembly in mono_reflection_type_from_name,
25358         if it was not loaded before. Fix parts of #60439.
25360 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
25362         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
25363         code that was broken since Ben's change: wrappers are now
25364         dependent on the method signature only again.
25366 2004-06-21  Martin Baulig  <martin@ximian.com>
25368         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
25369         added interface support.
25371 2004-06-21  Martin Baulig  <martin@ximian.com>
25373         * class.c (mono_vtable_get_static_field_data): New public method.
25375 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
25377         * filewatcher.c : Windows build fix to be compliant with API changes.
25379 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25381         * class.h, class.c: more accessors.
25382         * metadata.h, metadata.c: prepare for hiding MonoType and
25383         MonoMethodSignature: people should use the accessors from now on
25384         outside of the tree.
25386 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25388         * *.c, *.h: more API cleanups.
25390 2004-06-18  Jackson Harper  <jackson@ximian.com>
25392         * assembly.c: Trace loading assemblies.
25393         * loader.c: Trace loading native libraries.
25394         * mono-config.c: Trace loading config files.
25395         
25396 2004-06-18  Dick Porter  <dick@ximian.com>
25398         * locales.c: Tell ICU the lengths of strings, it can cope with
25399         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
25401 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
25403         * image.c: swapped name/filename;
25405 2004-06-18  Martin Baulig  <martin@ximian.com>
25407         * mono-debug-debugger.c (write_class): Write the parent class at
25408         the end of the header.
25410 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25412         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
25414 2004-06-17  Raja R Harinath  <rharinath@novell.com>
25416         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
25417         (bundle_obj): New conditional define.
25418         (BUILT_SOURCES): Remove.
25419         ($(bundle_srcs)): Make parallel-make safe.
25420         (libmonoruntime_la_LIBADD): Make unconditional.
25421         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
25422         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
25424 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
25426         * culture-info-tables.h: It was inconsistent with the latest
25427           supp info files.
25429 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
25431         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
25432         be loaded.
25434         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
25435         with gcc 2.95.
25437 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25439         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
25440         cleaned up public header threads.h.
25442 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25444         * Makefile.am, *.c, *.h: more API cleanups.
25446 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
25448         * Makefile.am: removed monosn from compilation.
25449         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
25450         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
25451         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
25452         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
25453         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
25454         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
25456 2004-06-15  Jackson Harper  <jackson@ximian.com>
25458         * assembly.c: Make locales lower case when searching the GAC for
25459         assemblies. gacutil will always make locales lowercase when
25460         installing so this effectively makes them case insensitive.
25461         
25462 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
25464         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
25465         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
25466           parameter which allows to choose whether the wait can be interrupted or 
25467           not. Also added the method mono_monitor_enter(), which locks the monitor
25468           using an infinite wait and without allowing interruption.
25469           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
25470           interrupted.
25471         * object.h: Added new fields in MonoThread. suspend_event holds the event
25472           used to susped/resume the thread. synch_lock is the lock object to use for
25473           modifying the thread state.
25474         * threads.c: Use the new synch_lock object for locking, instead of "this",
25475           which can generate deadlocks.
25476           Moved thread state change in Thread.Sleep and Thread.Join from managed
25477           to unmanaged code. This avoids a deadlock when the thread was suspended
25478           just after acquiring the thread lock.
25479           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
25480           Implemented Thread.Suspend using an event instead of ThreadSuspend,
25481           which is not fully implemented in the io-layer.
25482         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
25484 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
25486         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
25487         threads-types.h: more API cleanups.
25489 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25491         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
25492         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
25493         threadpool.c, threads.c: first pass at the exported API cleanup.
25495 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
25497         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
25499 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25501         * icall.c: added internalGetHome.
25503 2004-06-14  Dick Porter  <dick@ximian.com>
25505         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
25506         possible to return successfully when '.' or '..' were the only
25507         entries in a directory, but were skipped.  The MonoIOStat was not
25508         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
25509         Fixes bug 59574.
25511 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25513         * reflection.c: make binaries run on .Net 1.1 by default.
25515 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25517         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
25519 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
25521         * marshal.c: keep track of struct size with explicit layout
25522         (bug #59979).
25524 2004-06-12  Martin Baulig  <martin@ximian.com>
25526         * mono-debug-debugger.c: Comment out a debugging g_message().
25528 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25530         * reflection.c, reflection.h: do not free custom attrs that are cached.
25531         * icall.c: use braces to make code clearer.
25533 2004-06-11  Martin Baulig  <martin@ximian.com>
25535         * class.h (MonoInflatedField): New type.
25536         (MonoClassField): Replaced `MonoType *generic_type' with
25537         `MonoInflatedField *generic_info'.
25539         * icall.c
25540         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
25542 2004-06-11  Martin Baulig  <martin@ximian.com>
25544         * reflection.c (mono_image_create_method_token): Correctly encode
25545         varargs methods.
25547 2004-06-11  Martin Baulig  <martin@ximian.com>
25549         * metadata.c (mono_metadata_parse_method_signature): When parsing
25550         a MethodDef which has VarArgs, also set sentinelpos if we don't
25551         have any parameters.
25553 2004-06-11  Martin Baulig  <martin@ximian.com>
25555         * verify.c (mono_method_verify): In CEE_CALL, use
25556         mono_method_get_signature() to get the method's signature, unless
25557         we're a PInvoke method.
25559 2004-06-10  Jackson Harper  <jackson@ximian.com>
25561         * assembly.c: Use <path>/lib/mono/gac for the extra paths
25562         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
25563         logical name as the supplied path is just a prefix to the gac not
25564         the direct path to it.
25565         
25566 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
25568         * reflection.c: make the token for a created method match
25569         the token of the MethodBuilder it was created from
25570         (IKVM requires this behaviour now).
25572 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
25574         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
25575         reflection.c, socket-io.c: leak fixes.
25577 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
25579         * icall.c: handle sentinel pos in vararg methods in position different
25580         from 0.
25582 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25584         * culture-info-tables.h: freshly generated.
25586 2004-06-09  Martin Baulig  <martin@ximian.com>
25588         * loader.c (mono_get_method_constrained): Call `mono_class_init
25589         (constrained_class)'.   
25591 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
25593         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
25594         any methods. Fixes #59629.
25596 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25598         * culture-info-tables.h: reflecting locale-builder updates.
25600 2004-06-08  Dick Porter  <dick@ximian.com>
25602         * object.h:
25603         * locales.c: Fixed compile warnings, including a real bug in
25604         CompareInfo_internal_compare.
25605         
25606 2004-06-08  Dick Porter  <dick@ximian.com>
25608         * locales.c
25609         (ves_icall_System_Globalization_CompareInfo_internal_index):
25610         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25611         Double-check the resuls of usearches, because ICU currently
25612         ignores most of the collator settings here.  Fixes bug 59720.
25613         
25614 2004-06-08  Dick Porter  <dick@ximian.com>
25616         * locales.c
25617         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25618         Fix memory leak and segfault-causing typo.  No idea how this one
25619         lasted so long without being noticed.
25621 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
25623         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
25624         any methods. Fixes #59629.
25626 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25628         * assembly.c:
25629         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
25630         own the critical section before). Removed dead code (that's done
25631         in the preload hook).
25633         (mono_assembly_load_with_partial_name): call the preload hook.
25635 2004-06-08  Martin Baulig  <martin@ximian.com>
25637         * metadata.c (mono_metadata_signature_alloc): Default
25638         `sentinelpos' to -1.
25640         * reflection.c (mono_image_get_array_token): Likewise.
25642 2004-06-08  Martin Baulig  <martin@ximian.com>
25644         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
25646         * metadata.c (mono_metadata_parse_method_signature): When parsing
25647         a MethodDef which has VarArgs, set sentinelpos.
25649         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
25650         `gint16' since we're using -1 for non-varargs methods.
25652         * reflection.c
25653         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
25654         (method_encode_signature): Added varargs support.
25655         (method_builder_encode_signature): Likewise.
25656         (mono_image_get_varargs_method_token): New static method.
25657         (mono_image_create_method_token): New public method; this is
25658         called via an icall instead of mono_image_create_token() when
25659         calling a varargs method.       
25661 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
25663         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
25665 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25667         * culture-info-tables.h : Reflecting the latest locale-builder that
25668           fixed empty array representation ({} to {0}).
25670 2004-06-07  Jackson Harper  <jackson@ximian.com>
25672         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
25673         looking up extra gac paths. This allows MONO_GAC_PATH to act
25674         exactly like a prefix.
25675         
25676 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25678         * reflection.c (mono_reflection_type_from_name): Make a copy of the
25679         type name before modifying it. Fixes #59405.
25681 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25683         * culture-info.h: added fields for "all datetime patterns".
25684         * locales.c: (  ves_icall_System_Globalization_CultureInfo
25685           _construct_datetime_format ()): fill xxx_patterns fields.
25686         * object.h: added fields for "all datetime patterns" to
25687           MonoDateTimeFormatInfo.
25688         * culture-info-tables.h: reflecting locale-builder updates.
25690 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25692         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
25693         the event has no add and remove methods. Fixes #59629.
25695 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
25697         * object.c: Fixed possible integer overflow when allocating large
25698         strings.
25700 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25702         * culture-info-tables.h: reflecting locale-builder updates.
25704 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25706         * culture-info-tables.h: reflecting locale-builder updates.
25708 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
25710         * culture-info-tables.h: reflecting locale-builder updates.
25712 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
25714         * threads.c: Made Thread.Sleep abortable.
25716 2004-06-02  Martin Baulig  <martin@ximian.com>
25718         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
25720         * debug-mono-symfile.h: Bumped symbol file version number to 37.
25722 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
25724         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
25726 2004-05-30  Jackson Harper  <jackson@ximian.com>
25728         * reflection.c: Do not hardcode assembly versions or public key
25729         tokens anymore. All of this except the corlib section was dead
25730         code anyways.
25731         
25732 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
25734         * object.c (mono_runtime_invoke_array): Automatically create boxed
25735         objects for byref valuetypes if needed. Fixes #59300.
25736         
25737         * object.c (mono_method_return_message_restore): Handle 
25738         MONO_TYPE_OBJECT as well.
25740 2004-05-28  Jackson Harper  <jackson@ximian.com>
25742         * reflection.c: The modified type encoding was causing build
25743         problems. Reverted for now.
25744         
25745 2004-05-28  Jackson Harper  <jackson@ximian.com>
25747         * reflection.c/h: Take an assembly ref so that we dont create
25748         fully qualified names when encoding types in the same assembly as
25749         the custom attribute being emitted.
25750         * appdomain.c: Increment version number.
25751         
25752 2004-05-26  Duncan Mak  <duncan@ximian.com>
25754         * icall.c
25755         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
25756         Set the full version number (major, minor, build, revision).
25758 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
25760         * marshal.c (emit_struct_conv): increment src/dst after blit
25761         (mono_marshal_get_managed_wrapper,
25762         mono_marshal_get_native_wrapper): make sure we have marshalling
25763         info before marshalling params (info computation affects
25764         blittable)
25766         * class.c (class_compute_field_layout): correctly deal with
25767         blittable
25768         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
25769         value types (as per what windows dows by default)
25770         (mono_class_setup_mono_type): System.ValueType is blittable
25771         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
25772         blittable
25774         * marshal.c (mono_marshal_load_type_info): flag types  as
25775         non-blittable if the native layout doesn't match the managed
25776         layout
25778 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25780         * appdomain.c: don't add stuff in the private search path that is
25781         above the application base. If application base is not set, there's
25782         no private search path.
25784 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
25786         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
25787         byref struct arguments in native->managed marshalling.
25789 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
25791         * marshal.c (mono_marshal_get_runtime_invoke): correctly
25792         cache methods using signature (special case for methods
25793         that are value type or string class)
25794         
25795         * image.c (mono_image_close): clean up allocated GSList's
25796         in runtime_invoke_cache.
25798 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25800         * mono-config.c: set the correct path for mono_cfg_dir on windows when
25801         there's no MONO_CFG_DIR environment variable defined.
25803 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25805         * threads.c: windows version must be >= 0x0500 to include OpenThread.
25807 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
25809         * threadpool.c: Really wait for 500ms after the async call, even if the wait
25810           is interrumped.
25811         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
25812           before waiting for it, and call CloseHandle after the wait to unref it.
25813           This will make sure that handles are not disposed too early.
25815 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25817         * appdomain.c:
25818         * appdomain.h:
25819         * icall.c: removed
25820         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
25821         needed now.
25823         * object.c: se the application_base only for the domain that runs
25824         Main. Fixes bug #59216,
25826 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25828         * appdomain.c:
25829         * object.c: only the domain in which Main is run have
25830         SetupInformation.ConfigurationFile set, so moved a few lines from
25831         appdomain.c to object.c.
25833 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25835         * appdomain.c: we tried to load [name].(dll|exe), but according
25836         to bug #57710, we must also try [culture]/[name].(dll|exe) and
25837         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
25838         There's a test case attached to bug #58922.
25840 2004-05-27  Dick Porter  <dick@ximian.com>
25842         * icall.c:
25843         * file-io.c: Implemented icalls for locking and unlocking regions
25844         in a file.
25845         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
25846         FALSE on error (fixes both compiler warning and real bug.)
25848 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
25850         * culture-info-tables.h: reflecting locale-builder updates.
25852           (Added missing ChangeLog entry for 05/26)
25854 2004-05-27  Jackson Harper  <jackson@ximian.com>
25856         * locales.c: Fix some cut and paste errors.
25857         
25858 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25860         * mono-config.c: set the correct path for config. directory on windows.
25862 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25864         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
25865           on win32.
25867 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25869         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
25870         from pinvoke functions.
25871         
25872         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25874 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25876         * culture-info-tables.h: reflecting locale-builder updates.
25878 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25880         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25881         #59086.
25883 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25885         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25886         * icall.c: Modified icalls for RNG.
25887         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25888         Windows (CryptoAPI).
25890 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25892         * locales.c: Fix build.
25894 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25896         * culture-info-tables.h: reflecting locale-builder updates.
25898 2004-05-25  Jackson Harper  <jackson@ximian.com>
25900         * locales.c: When creating the current culture use the $LANGs
25901         specific culture. So DateTimeFormat and NumberFormat entries are created.
25902         
25903 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25905         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25906         a char array as parameter.
25908 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25910         * image.c: In mono_image_open(), always use an absolute path name to
25911           look for already loaded images.
25913 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25915         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25916         missing in the windows build (like older cygwin include files).
25918 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25920         * icall.c: Fixed check for possible integer overflow in Buffer_
25921         BlockCopy icall. Replaced comments style // by /* */.
25923 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25925         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25926         
25927         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25928         check after MONO_VTADDR. Fixes pinvoke2.exe.
25930         * marshal.h marshal.c metadata.h: Add beginnings of support for
25931         ftnptr -> delegate marshalling.
25933 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25935         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25936         * threads.c: Fix warnings.
25938 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25940         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25941         * icall.c: Registered icalls for Suspend and Resume.
25942         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25943           Thread.Abort.
25944         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25945         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25946         * process.c: Use WaitForSingleObjectEx.
25947         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25948           checkpoints.
25949         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25950           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25951           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25952           background threads. Added basic support for Abort in Windows.
25953           Start new threads using a managed delegate invoke wrapper. This wrapper
25954           has an interruption checkpoint that is needed since an interruption
25955           can be requested before the thread leaves the unmanaged code that starts 
25956           the thread.
25957         * marshal.c: Added interruption checkpoint after every native call, and
25958           also before managed calls for wrappers called from unmanaged code to
25959           go into managed code.
25960         * object.h: Added new field in MonoThread to keep track of interruption
25961           requests.
25963 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25965         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25966         calls.
25968 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25970         * appdomain.c:
25971         * assembly.c:
25972         * gc.c:
25973         * locales.c:
25974         * mono-config.c:
25975         * rand.c: getenv -> g_getenv (windows!)
25977         * process.c: complete_path is also used on non-windows platforms.
25979 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25981         * icall.c: new signature for Process_Start.
25983         * process.[ch]: new signature for Process_Start. If we're on windows
25984         and UseShellExecute is false, we have to search for the program by
25985         ourselves if we don't get a full path.
25987 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25989         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25990         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25992 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25994         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25995         Fixes bug #58373.
25997 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25999         * process.c: use double quotes to quote program name and arguments on
26000         windows. Fixes bug #58575.
26002 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26004         * file-io.c: don't return "." and ".." when using windows Find*File.
26006 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
26008         * marshal.c: Don't pass wrappers to message init because method 
26009         addressed used to lookup metadata. part of remoting[2|3] fix.
26011 2004-05-15  Jackson Harper  <jackson@ximian.com>
26013         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
26014         path is essentially the same as MONO_PATH except that it points to
26015         GACs instead of lib directories.
26016         * loader.h: The user gac is gone so we dont need function to
26017         enable/disable it.
26018         * mono-config.c: user gac option is now gone.
26019         
26020 2004-05-15  Jackson Harper  <jackson@ximian.com>
26022         * culture-info.h: Make defines more consistent, add calendar data
26023         to the culture info table.
26024         * culture-info-tables.h: Add basic calendar data. Basically
26025         everyone gets default gregorian until all the data is
26026         updated.
26027         * locales.c: Use the new consistent defines. Set calendar data for
26028         culture info objects.
26029         * object.h: add a field for calendar data to CultureInfo
26030         
26031 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
26033         * image.c: image->runtime_invoke_cache is keyed on signatures now.
26034         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
26035         a signature.
26036         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
26037         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
26038         an extra param that is the pointer of the method to invoke. The IL for
26039         the invoke method is no longer specific to the method, but to the
26040         signature of the method. Thus, we can share the same code for multiple
26041         methods. This reduces the number of methods that have to be compiled.
26043 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
26045         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
26047         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26049         * icall.c: Optimize Buffer.BlockCopy.
26051 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26053         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
26054         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
26055         quote). Changed them to "MMMM yyyy".
26057 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
26059         * rand.c
26060         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
26062 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
26064         * reflection.h: Updated after changes to managed structures.
26066         * appdomain.c: Bump corlib version.
26068 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26070         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
26071         windows.
26073 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26075         * Makefile.am: link to ../os/libmonoos.la on windows.
26077         * assembly.c:
26078                 -If MONO_DEBUG, warn about non-existing directories in
26079                 MONO_PATH.
26080                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
26081                 compile time variable.
26082                 -Removed init_default_path and call mono_set_rootdir from
26083                 libmonoos.a instead (windows only).
26085         * assembly.h: declare mono_assembly_getrootdir().
26087         * domain.c:
26088         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
26090         * loader.c: s/getenv/g_getenv/
26092 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
26094         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
26096         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
26098         * metadata.h: Add new marshalling conversions.
26100         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
26101         function.
26103         * reflection.c (mono_reflection_get_type): Lookup the type in all
26104         modules of a multi-module assembly. Fixes #58291.
26106 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
26108         * threads.c: Before aborting a background, set the StopRequested
26109         state.  This avoids throwing the Abort exception.
26110         In mono_thread_manage, don't continue with the shutdown until all
26111         aborted threads have actually stopped.
26113 2004-05-10  Jackson Harper  <jackson@ximian.com>
26115         * locales.c: Remove the modifier from culture names.
26116         
26117 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26119         * Makefile.am: monosn is not installed any more. It has been deprecated
26120         in favor of sn.
26122 2004-05-07  Jackson Harper  <jackson@ximian.com>
26124         * locales.c
26125         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
26126         Fix array construction, add bailout if the length is 0.
26128 2004-05-07  Dick Porter  <dick@ximian.com>
26130         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
26131         machine doesn't have a DNS entry.  Patch by Urs Muff
26132         (umuff@quark.com), fixes bug 57928.
26134 2004-05-06  Jackson Harper  <jackson@ximian.com>
26136         * reflection.c: Handle null PublicTokens properly. alloc mem for
26137         assembly names culture so we dont crash when freeing it.
26138         
26139 2004-05-06  Jackson Harper  <jackson@ximian.com>
26141         * assembly.c: Check the usergac when loading with partial names.
26142         
26143 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
26145         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
26146         does nothing for now (not required for Linux/Windows) but the class
26147         library can call it (and a newer or modified runtime could need it).
26148         * icall.c: Registred icall.
26150 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26152         * loader.c: prints a message on module loading error we set MONO_DEBUG
26153         environment variable.
26155 2004-05-05  Jackson Harper  <jackson@ximian.com>
26157         * appdomain.c: Handle PublicKeyToken=null properly.
26158         
26159 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
26161         * environment.c|h: Added icall ves_icall_System_Environment_
26162         GetOSVersionString to get the current OS version as a string.
26163         * icall.c: Registred icall.
26165 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
26167         * object.c: in mono_object_get_virtual_method(), take into account that
26168         non-virtual methods don't have a slot in the vtable. Check needed when
26169         the object is a proxy.
26171 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
26173         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
26174         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
26176         * object.c (mono_class_compute_gc_descriptor): Fix warning.
26178         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
26179         passed when a valuetype is expected.
26181         * object.c (mono_unhandled_exception): Only set the exit code if the
26182         exception happens in the main thread. Fixes thread5.exe.
26184         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
26185         invalid names. Fixes #58047.
26187 2004-05-03  Jackson Harper  <jackson@ximian.com>
26189         * assembly.c: This line was committed accidently and is unneeded.
26190         
26191 2004-05-03  Jackson Harper  <jackson@ximian.com>
26193         * icall.c: Add new icall for Assembly::LoadWithPartialName
26194         * assembly.c/.h: new function that probes the GAC to load partial
26195         assembly names by Paolo Molaro.
26196         
26197 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26199         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
26200         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
26201         (type_get_fully_qualified_name): Added PublicKeyToken when building a
26202         full type name.
26204 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26206         * appdomain.c: fixed check for 'neutral' culture and removed warning.
26207         * reflection.c: fix bug when parsing a full type name and Version is not
26208         the last thing in the string.
26210 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
26212         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
26213         crashes when it is freed.
26215 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26217         * assembly.c: print the compat warning to stderr.
26219 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
26221         * assembly.c (mono_assembly_load_references): Add a compatibility
26222         hack to run old applications that might be still referencing the
26223         3300-based assemblies, only do this for System.xxx.
26225 2004-05-01  Jackson Harper  <jackson@ximian.com>
26227         * appdomain.c: If the culture is neutral we set it to "".
26228         
26229 2004-04-29  Jackson Harper  <jackson@ximian.com>
26231         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
26233 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
26235         * string-icalls.c: added low overhead function for copying chars
26236         * icall.c: added needed icall for the above function
26238 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26240         * icall.c: fix return value of get_global_assembly_cache.  Implemented
26241         Environment.GetLogicalDrives.
26243 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
26245         * rand.c: try and talk to egd or prngd
26246         for random bytes if opening devices fail.
26248 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
26250         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
26251         alignment for the type using the native alignment of its members 
26252         instead of using klass->min_align.
26254         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
26256 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26258         * file-io.c:
26259         * socket-io.c: added check for sys/aio.h.
26261 2004-04-28  Dick Porter  <dick@ximian.com>
26263         * threads.c: Don't abort a thread thats already aborting, when
26264         terminating everything.
26266 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26268         * icall.c: added 2 new async calls for Socket.
26270         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
26271         IO on *nix systems.
26273         * threadpool.c: removed unused variable.
26275 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
26277         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
26279 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26281         * locales.c: put back string_invariant_tolower () and
26282         string_invariant_toupper ().
26284 2004-04-26 David Waite <mass@akuma.org>
26286         * file-io.h:
26287         * socket-io.h:
26288         * threads.h:
26289         * unicode.h: remove comma from end of enumeration declarations
26291 2004-04-26 David Waite <mass@akuma.org>
26293         * debug-mono-symfile.h:
26294         * decimal.c:
26295         * mono_debug.h:
26296         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
26299 2004-04-26  Jackson Harper  <jackson@ximian.com>
26301         * appdomain.c: Increment version number.
26302         
26303 2004-04-26  Jackson Harper  <jackson@ximian.com>
26305         * appdomain.c: Set assembly references public token value when
26306         PublicKeyToken is specified, not the hash_value. Free public token
26307         values when free assembly name data. Previously the public key
26308         token was hex decoded, however we are using hex encoded public key
26309         tokens, so this is not neccasary.
26310         * assembly.c: Lookup assemblies in the gac if their public token
26311         value is set. Add function to allow enabling user gac
26312         lookups. Specify whether or not the assembly was loaded from the
26313         GAC. Compare full assembly names when checking the cache for
26314         assemblies (Temporarily disabled see comment in code). Remove
26315         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
26316         specifies trace-loader they get extra info to stdout on the
26317         loading of assemblies.
26318         * image.h: Add a field for an assembly references public token
26319         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
26320         whether an assembly has been loaded from the GAC.
26321         * image.c: Remove a corlib -> mscorlib name mapping.
26322         * loader.h: Add function to enable/disable the user gac.
26323         * mono-config.c: Check if the usergac is enabled in the config
26324         file.
26325         * icall.c: New icall to determine whether or not an assembly has
26326         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
26327         * tabldefs.h: Add constant for assemblyref flag that specifies a
26328         full public key is used instead of a public token.
26329         * reflection.c: Remove mscorlib -> corlib mappings. Set
26330         PublicTokenValue instead of hash value. This value is a hex
26331         string so it does not need to be expanded.
26333 2004-04-26  Martin Baulig  <martin@ximian.com>
26335         * mono-debug-debugger.c (mono_debugger_initialize): Set
26336         `mono_debugger_initialized' before calling mono_debug_lock().
26338 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
26340         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
26341           InternalToUpper/InternalToLower.
26342         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
26343           removed invariant culture shortcut.  This is now done in managed code.
26344         * locales.c: (string_invariant_toupper/tolower) removed.
26346 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26348         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
26349         Added Poll internal call.
26351         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
26352         call for Poll. Select was too heavy for polling a single socket.
26354         * threadpool.[ch]: added mono_threadpool_cleanup.
26355         * threads.c: use it. Don't use Thread_Abort on windows.
26357 2004-04-23  Martin Baulig  <martin@ximian.com>
26359         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
26361 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
26363         * icall.c: Registred new icalls for key pair protection and added an
26364         icall for Environment.GetFolderPath on Windows.
26365         * security.c|h: Added new icalls for key pair protection.
26367 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26369         * socket-io.c: don't display the non-supported family warning for known
26370         families. Now this is not displayed on windows when checking support
26371         for IPv4/IPv6.
26373 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26375         * class.c: don't display the layout warning for static fields.
26377 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
26379         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
26380         * locales.c, locales.h: Added new icalls for culture-specific
26381         Char.ToLower and Char.ToUpper.
26383 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26385         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
26386         by David Waite.
26388 2004-04-20  Martin Baulig  <martin@ximian.com>
26390         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
26391         of the type name before passing it to mono_reflection_type_from_name().
26393 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
26395         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
26396         encodings here. Fixes #56965.
26398 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
26400         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26401         fix test on strstr result not that I can see anything that
26402         relies on the result.
26404 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
26406         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
26407         Fixes #57081.
26409         * marshal.c (mono_marshal_get_string_encoding): New helper function.
26411         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
26412         function to determine which marshalling to use for strings. Fixes
26413         #56965.
26415         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
26417         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
26419 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
26421         * icall.c: #include mono-config.h
26423 2004-04-15  Jackson Harper  <jackson@ximian.com>
26425         * culture-info-tables.h: Fix date formats for en-US culture.
26426         
26427 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
26429         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
26430         ThreadPool.SetMinThreads.
26431         * threadpool.c: Implemented ThreadPool.GetMinThreads and
26432         ThreadPool.SetMinThreads.
26434 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26436         * mono-config.c: also load the .config file in the directory
26437         where the assembly was found.
26439 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
26441         * assembly.c: load per-assembly config files.
26442         * icall.c: decrapified code to get the config dir and moved to
26443         mono-config.c.
26444         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
26445         per-assembly config files. When doing a dll map lookup give precedence
26446         to the per-assembly data.
26448 2004-04-14  Martin Baulig  <martin@ximian.com>
26450         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
26451         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
26452         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
26454         * mono-debugger-debugger.c: While the debugger is locked, remember
26455         whether the symbol tables have changes and send one single
26456         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
26458 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
26460         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
26462         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
26463         function.
26465         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
26466         account when marshalling string arrays. Fixes #56965.
26468 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
26470         * icall.c: Add new icalls mapping for security.
26471         * security.c|h: Add internal calls for WindowsIdentity,
26472         WindowsImpersonationContext and WindowsPrincipal.
26474 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
26476         * class.c: Added comment to ensure the System.MonoDummy class
26477         is removed when no longer necessary
26479 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
26481         * appdomain.c: Pass arguments to the bootstraping exceptions to
26482         minimize JITed methods at boot
26484         * metadata.c (mono_exception_from_name_two_strings): Allow for the
26485         second string to be null.
26487         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26488         Change the protocol to minimize the JIT methods at startup.  Now
26489         it Returns the internal codepage, if the value of "int_code_page"
26490         is 1 at entry, and we can not compute a suitable code page
26491         number, returns the code page as a string.
26493 2004-04-13  Jackson Harper  <jackson@ximian.com>
26495         * culture-info-tables.h: Fix number of decimal digits for all
26496         english locales.
26498 2004-04-13  Jackson Harper  <jackson@ximian.com>
26500         * icall.c: Clairfy out of sync error message. It is not always
26501         your corlib that is out of sync.
26503 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
26505         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
26506         properties when only the set accessor is overriden. Fixes #55874.
26508 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
26510         * assembly.c (mono_assembly_load_references): Make this thread safe.
26511         Fixes #56327.
26513 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
26515         * monosn.c: Add missing initialization calls.
26517 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
26519         * locales.c:
26520         ves_icall_System_Globalization_CultureInfo_construct_number_format
26521         Fix g_assert so it compiles on fussier compilers re int/ptr
26522         mismatch
26524 2004-04-08  Dick Porter  <dick@ximian.com>
26526         * socket-io.h:
26527         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
26528         53992.  Also rearrange the code so that the internal calls return
26529         an error value and exceptions are thrown from managed code.
26531         * icall.c: Add type info to the socket icalls.
26533 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26535         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
26536         owes me a beer.
26538 2004-04-07  Martin Baulig  <martin@ximian.com>
26540         * class.c (mono_class_from_generic_parameter): Don't default
26541         `klass->parent' to `mono_defaults.object_type'.
26543 2004-04-07  Martin Baulig  <martin@ximian.com>
26545         * reflection.c (mono_reflection_initialize_generic_parameter): Set
26546         `param->pklass->reflection_info'.       
26548 2004-04-07  Jackson Harper  <jackson@ximian.com>
26550         * culture-info-tables.h: Fix date separator symbol.
26551         
26552 2004-04-07  Martin Baulig  <martin@ximian.com>
26554         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
26555         from System.Type to System.MonoType.
26557 2004-04-07  Martin Baulig  <martin@ximian.com>
26559         * reflection.h
26560         (MonoReflectionGenericParam): Added `has_reference_type' and
26561         `has_value_type' fields.
26563         * reflection.c (mono_image_get_generic_param_info): Encode the
26564         correct flags if we have the `class' or `struct' constraint.
26566 2004-04-07  Martin Baulig  <martin@ximian.com>
26568         * reflection.h
26569         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
26571 2004-04-07  Jackson Harper  <jackson@ximian.com>
26573         * appdomain.c: Revert extra patches, just wanted to bump the
26574         version number.
26575         
26576 2004-04-07  Jackson Harper  <jackson@ximian.com>
26578         * Makefile.am: Add culture-info private headers.
26579         * icall.c: Add new icalls for contructing locales.
26580         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
26581         * locales.h: Declare new culture info construction methods.
26582         * object.h: Add new fields used to avoid the CultureMap to
26583         MonoCultureInfo.
26584         * culture-info.h: Definition of structs used in the culture info
26585         tables.
26586         * culture-info-tables.h: Autogenerated tables that contain culture
26587         info data. This file was generated with the locale-builder tool.
26588         * appdomain.c: Incement corlib version number.
26589         
26590 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
26592         * appdomain.c: (mono_runtime_init) move mono_thread_init
26593         to before mono_object_new calls so critical sections
26594         are initialized before use.
26596 2004-04-07  Martin Baulig  <martin@ximian.com>
26598         * icall.c
26599         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
26600         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
26601         (ves_icall_MonoGenericParam_initialize): Removed.
26602         (monogenericparam_icalls): Removed.
26603         (generictypeparambuilder_icalls): Added new table for
26604         System.Reflection.Emit.GenericTypeParameterBuilder.
26606         * reflection.c
26607         (mono_reflection_define_generic_parameter): Removed.
26608         (mono_reflection_initialize_generic_parameter): This is now called
26609         from GenericTypeParameterBuilder's .ctor.
26611 2004-04-06  Martin Baulig  <martin@ximian.com>
26613         * class.c (mono_class_init): Don't inflate nested classes in a
26614         generic instance.
26615         (mono_type_get_name_recurse): Include the generic arguments for
26616         generic instances and generic type declarations.
26617         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
26618         (_mono_class_get_instantiation_name): Removed.
26619         (mono_class_create_generic): Always use `gklass->name' as our name.
26621         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
26623         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
26624         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
26625         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
26626         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
26627         closed generic methods here.
26629         * reflection.c
26630         (mono_reflection_generic_inst_get_nested_types): Removed.
26631         (inflate_mono_method): Copy the generic parameters from the
26632         MonoMethodHeader into out MonoGenericMethod.
26634 2004-04-06  Martin Baulig  <martin@ximian.com>
26636         * row-indexes.h
26637         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
26639         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
26641         * reflection.c (build_compressed_metadata): If we have any entries
26642         in the GenericParam, MethodSpec or GenericParamConstraint tables,
26643         set the header version to 1.1.
26645 2004-04-06  Martin Baulig  <martin@ximian.com>
26647         * class.c (mono_class_init): If we're a generic instance,
26648         initialize our nested classes, too.
26649         (_mono_class_get_instantiation_name): Deal with the new `!%d'
26650         suffix. 
26652 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26654         * process.c: quote the argument passed to the shell on windows.
26656 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
26658         * threads.c (mono_alloc_special_static_data): Allow this to be
26659         called during startup.
26661 2004-04-02  Martin Baulig  <martin@ximian.com>
26663         * icall.c
26664         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
26666 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
26668         * icall.c: Fix build.
26670 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
26672         * Makefile.am: Added security.c|h.
26673         * icall.c: Added icall for get_UserName;
26674         * security.c: New file for security related icalls. Added function
26675         get_UserName for System.Environment (fix #56144).
26676         * security.h: New. Header file for security.c
26678 2004-04-02  Dick Porter  <dick@ximian.com>
26680         * icall.c: Deleted the icalls that were obsoleted some time ago
26681         by the ICU string code, and which were mixed into the icall
26682         rearranging.  Fixes bug 55969.
26684         * string-icalls.h: 
26685         * string-icalls.c: Deleted the code that those icalls reference.
26687 2004-04-01  Martin Baulig  <martin@ximian.com>
26689         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
26691         * class.c (mono_class_from_generic_parameter): Don't set 
26692         TYPE_ATTRIBUTE_INTERFACE.
26693         (my_mono_class_from_generic_parameter): Likewise.
26695 2004-04-01  Martin Baulig  <martin@ximian.com>
26697         * loader.c (find_method): Added an optional `MonoClass *ic'
26698         argument to search in a specific interface.
26699         (mono_get_method_constrained): New public function.
26701 2004-04-01  Martin Baulig  <martin@ximian.com>
26703         * reflection.c (mono_image_get_generic_field_token): Use the
26704         `handleref' cache here.
26706 2004-04-01  Martin Baulig  <martin@ximian.com>
26708         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
26710         * reflection.c (create_generic_typespec): Use the `typespec' hash
26711         here, not the `typeref' one.    
26713 2004-04-01  Martin Baulig  <martin@ximian.com>
26715         * class.c (mono_class_inflate_generic_type): Moved the
26716         functionality into a new static inflate_generic_type() which
26717         returns NULL if it didn't do anything.  Only increment the
26718         `mono_stats.inflated_type_count' if we actually inflated
26719         something.
26720         (mono_class_get_full): Check the classes type to see whether we
26721         need to inflate it; also inflate MONO_TYPE_(M)VAR.
26723 2004-04-01  Jackson Harper  <jackson@ximian.com>
26725         * reflection.c: Set culture for assembly references.
26726         
26727 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
26729         * reflection.[ch], icall.[ch], Fix support for pinning variables.
26731 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26733         * assembly.c:
26734         (do_mono_assembly_open): the critical section also covers
26735         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
26737 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26739         * threads.c:
26740         (mono_manage_threads): abort the background threads when finishing.
26741         Fixes bug #47232.
26743 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26745         * gc.c: only close the done_event handle if there was no timeout.
26746         C-ified comments.
26748 2004-03-30  Martin Baulig  <martin@ximian.com>
26750         * icall.c (icall_entries): It's called "System.Activator", not
26751         "System.Activation".    
26753 2004-03-30  Martin Baulig  <martin@ximian.com>
26755         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
26756         (mono_class_create_from_typespec): Likewise.
26758 2004-03-30  Martin Baulig  <martin@ximian.com>
26760         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
26761         `has_ctor_constraint' and `initialized'.
26763 2004-03-30  Martin Baulig  <martin@ximian.com>
26765         * reflection.c (encode_new_constraint): New static function to add
26766         the constructor constraint attribute to a type parameter.
26767         (encode_constraints): Call encode_new_constraint() if necessary.
26769         * reflection.h
26770         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
26772         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
26773         
26774 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
26776         * reflection.c, icall.c: add support for pinning variables. 
26778 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
26780         * marshal.c (mono_marshal_get_managed_wrapper):
26781         init bool local with zero rather than null.
26783 2004-03-29  Martin Baulig  <martin@ximian.com>
26785         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
26786         the "official" behavior here.
26787         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
26789 2004-03-29  Martin Baulig  <martin@ximian.com>
26791         * icall.c: Reflect latest API changes.
26793 2004-03-29  Martin Baulig  <martin@ximian.com>
26795         * loader.c (mono_get_method_from_token): Also call
26796         mono_metadata_load_generic_params () for abstract and interface
26797         methods; replace the type arguments in the method signature with
26798         the ones which are loaded from the metadata.
26800 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
26802         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
26803         of the lock is not the current thread. MS.NET don't do it, in spite of
26804         what the documentation says. See bug #56157.
26806 2004-03-28  Martin Baulig  <martin@ximian.com>
26808         * class.c (mono_class_init): Don't call init_properties() and
26809         init_events() for generic instances; set `prop->parent' when
26810         inflating properties.
26812         * reflection.c (mono_generic_inst_get_object): Call
26813         `mono_class_init (ginst->klass)'.
26814         (mono_type_get_object): Only create a MonoGenericInst if your
26815         generic type is a TypeBuilder.
26816         (do_mono_reflection_bind_generic_parameters): Only set
26817         `ginst->is_dynamic' if our generic type is a TypeBuilder.
26819 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
26821         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
26822         Fixes #56091.
26824 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26826         * icall.c: added Kill_internal icall.
26827         * process.[ch]: added Kill_internal icall.
26829 2004-03-25  Martin Baulig  <martin@ximian.com>
26831         * class.h (MonoStats): Added `generic_instance_count',
26832         `inflated_method_count', `inflated_type_count' and
26833         `generics_metadata_size'.       
26835 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26837         * reflection.c: no warnings now.
26839 2004-03-25  Martin Baulig  <martin@ximian.com>
26841         * class.c (mono_class_get_full): New public function; does a
26842         mono_class_get(), but also takes a `MonoGenericContext *'.
26844         * loader.c (mono_field_from_memberref): Renamed to
26845         `field_from_memberref', made static and added `MonoGenericContext *'
26846         argument.
26847         (mono_field_from_token): Added `MonoGenericInst *' argument.
26848         (method_from_memberef): Likewise.
26849         (mono_get_method_from_token): Likewise.
26850         (mono_get_method_full): New public function; does a
26851         mono_get_method(), but also takes a `MonoGenericContext *'.
26853         * verify.c (mono_method_verify): Get the method's generic context
26854         and pass it to mono_field_from_token(), mono_get_method_full() and
26855         mono_class_get_full().
26857 2004-03-25  Martin Baulig  <martin@ximian.com>
26859         * class.c (mono_class_inflate_generic_type): Take a
26860         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
26861         `MonoGenericMethod *'.
26863 2004-03-25  Martin Baulig  <martin@ximian.com>
26865         * loader.h (MonoMethodInflated): Store the MonoGenericContext
26866         instead of the MonoGenericMethod here.
26868 2004-03-25  Martin Baulig  <martin@ximian.com>
26870         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
26871         each time we create a new MonoGenericInst, we also create a new
26872         context which points back to us.
26874         * class.c (inflate_method): Use `ginst->context' instead of
26875         creating a new context.
26877         * loader.c (method_from_memberref): Use
26878         `klass->generic_inst->context' instead of creating a new context.
26880 2004-03-25  Martin Baulig  <martin@ximian.com>
26882         * class.h (MonoGenericContext): New struct.
26883         (MonoGenericMethod): Removed `generic_inst'.
26885         * class.c (mono_class_inflate_generic_method): Take a
26886         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26888 2004-03-25  Martin Baulig  <martin@ximian.com>
26890         * loader.h (MonoMethodInflated): New typedef.
26892         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26893         `generic_param_count' consume just 30 bits, added `is_inflated'
26894         and `has_type_parameters' flags (one bit each).
26896         * class.c (mono_class_inflate_generic_method): Create a
26897         MonoMethodInflated instead of a MonoMethodNormal and set
26898         `is_inflated' in the method signature.
26900         * class.h (MonoGenericMethod): Removed `generic_method'.
26902 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26904         * image.c: Make sure the name of a MonoImage is always an absolute path.
26905           This fixes bug #54415.
26907 2004-03-24  Martin Baulig  <martin@ximian.com>
26909         * class.c (mono_class_setup_vtable): If we're a generic instance,
26910         use our generic type's vtable size.
26912 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26914         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26915         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26916         problems.
26918 2004-03-23  Martin Baulig  <martin@ximian.com>
26920         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26921         `MonoEvent *events'.
26923         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26924         (typebuilder_icalls): Added "get_event_info"; calls
26925         mono_reflection_event_builder_get_event_info(). 
26927         * reflection.c (mono_reflection_generic_inst_initialize): Added
26928         `MonoArray *events'.
26929         (mono_reflection_event_builder_get_event_info): New function.
26931 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26933         * object.h: add mono_type_initialization_init
26935         * object.c (mono_runtime_class_init): 
26936         implement class constructor synchronization rules
26937         to cope with threading issues.  
26938         add mono_type_initialization_init
26940         * appdomain.c (mono_runtime_init): call 
26941         mono_type_initialization_init
26943         * class.h: removing initializing field from MonoVTable
26945 2004-03-23  Martin Baulig  <martin@ximian.com>
26947         * class.c (my_mono_class_from_generic_parameter): Use
26948         `param->name' if it's not NULL. 
26950 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26952         * class.c: do not insert non-virtual methods in the vtable.
26953         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26954         that means the method is non-virtual. This never would have
26955         happened before.
26957 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26959         * profiler.c: Added lock for accessing coverage_hash.
26961 2004-03-22  Martin Baulig  <martin@ximian.com>
26963         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26964         `method->method->signature->generic_param_count != 0' to make it
26965         work for interface methods.
26967 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26969         * process.c: quote the string passed to the shell using g_shell_quote.
26971 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26973         * threads.c:
26974         (mono_threads_manage): don't remove the finalizer thread and self
26975         from the threads hash table so that mono_thread_manage can be called
26976         more than once.
26978 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26980         * process.c: quote the arguments when UseShellExecute is true. Fixes
26981         bug #55790.
26983 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26985         * threads.c: set mono_thread_detach as a cleanup routine for every
26986         thread. This way it's always executed upon thread termination, either
26987         aborted or finished normally. No more xsp hangs!
26989 2004-03-17  Martin Baulig  <martin@ximian.com>
26991         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26992         `int count_nested' and a `MonoType **nested'.
26994         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26995         most of the functionality into a new static
26996         do_mono_reflection_bind_generic_parameters() and don't take a
26997         `MonoType *nested_in' argument any more.  Don't compute nested
26998         types here.
26999         (mono_reflection_generic_inst_get_nested_types): New public method
27000         to get nested types.
27002         * class.c (mono_class_create_generic): Set `klass->nested_in' if
27003         we're a nested class.
27005         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
27006         mono_reflection_generic_inst_get_nested_types() to compute the
27007         nested types.
27009 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27011         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
27012         descriptive error message under windows.
27013         
27014 2004-03-17  Martin Baulig  <martin@ximian.com>
27016         * class.c (dup_type): Added `const MonoType *original' argument;
27017         copy the attrs from the original type.
27019 2004-03-17  Martin Baulig  <martin@ximian.com>
27021         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
27022         `m->generic_inst_cache' here.
27024 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27026         * exception.h exception.c: Add stack_overflow_exception.
27028 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27030         * threadpool.c:
27031         (overlapped_callback): call SetEvent *after* invoking the callback.
27032         No need to call CloseHandle.
27034 2004-03-16  Martin Baulig  <martin@ximian.com>
27036         * reflection.c (mono_image_get_fieldref_token): Take a
27037         `MonoReflectionField *' instead of a `MonoClassField *' and a
27038         `MonoClass *'; store the `MonoReflectionField *' in the hash.
27040 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27042         * appdomain.c: don't add the culture to the filename we're looking for
27043         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
27045 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27047         * locales.c: don't ignore symbols when doing case insensitive compares.
27048         Thanks Dick! Fixes bug #54046.
27050         * threads.c: surround 'threads' usage with enter/leave in
27051         mono_thread_manage.
27053 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
27055         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
27056         implicitly marshalled as [Out]. Fixes #55450.
27058         (mono_marshal_get_runtime_invoke): Zero out the result if there is
27059         an exception.
27061 2004-03-16  Martin Baulig  <martin@ximian.com>
27063         * class.c (mono_class_from_generic_parameter): Use the actual
27064         parameter name. 
27066 2004-03-16  Martin Baulig  <martin@ximian.com>
27068         * reflection.c (type_get_signature_size): New static function.
27069         Compues the size of the type in a method signature.
27070         (method_get_signature_size): New static function; calls
27071         type_get_signature_size() to compute the actual size of the
27072         method's signature.
27073         (method_encode_signature): Use method_get_signature_size() to get
27074         the signature's size rather than using `nparams * 10'.
27076 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27078         * file-io.h: define here WapiOverlapped on windows. I don't want the
27079         regular OVERLAPPED one.
27081         * file-io.c:
27082         * threadpool.c: somehow, BindIoCompletionCallback is not found.
27083         Disabling AIO on windows.
27085 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27087         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
27088         bug #55385.
27090 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27092         * appdomain.c: upgraded corlib version.
27094         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
27095         and BeginWrite. Allow opening files for asynchrnous operations.
27097         * file-io.h: new struct that maps FileStreamAsyncResult.
27098         * icall.c: added new icalls.
27099         * process.[ch]: support setting child process environment variables
27100         and use the SHELL or COMSPEC when UseShellExecute is true.
27102         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
27103         callback for async. IO is here and also BindHandle.
27105         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
27106         from here.
27108 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
27110         * reflection.c (create_custom_attr): Allow len == 0.
27112         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
27113         computation on big-endian machines.
27115 2004-03-13  Martin Baulig  <martin@ximian.com>
27117         * class.h (MonoGenericInst): Added `int count_ifaces'.
27119         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
27120         `ginst->count_ifaces' instead `klass->interface_count' since we
27121         may get called before the vtable is created.
27123         * loader.c (mono_method_get_param_names): If we're a generic
27124         instance, return and don't initialize the class.
27126         * reflection.c (mono_reflection_setup_generic_class): Don't call
27127         ensure_runtime_vtable().
27128         (mono_reflection_bind_generic_parameters): Set
27129         `ginst->count_ifaces'.
27131 2004-03-11  Jackson Harper <jackson@ximian.com>
27133         * icall.c:
27134         * unicode.c:
27135         * unicode.h: Remove unused System.Char icalls.
27136         
27137 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
27139         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
27140         code when we P/Invoke the first library in Windows.Forms, instead
27141         of when we first open the assembly.
27143         * assembly.c: Drop the lookup from here.
27145 2004-03-10  Martin Baulig  <martin@ximian.com>
27147         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
27148         class for properties, fields and events.  Finally fixes #54945.
27150 2004-03-10  Martin Baulig  <martin@ximian.com>
27152         * metadata.c (mono_metadata_class_equal): New static function;
27153         checks whether two generic instances or two generic parameters are
27154         equal.
27155         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
27156         compare classes.        
27158 2004-03-10  Martin Baulig  <martin@ximian.com>
27160         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
27162         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
27163         argument and write it into the `reflection_info' field.
27165         * icall.c
27166         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
27167         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
27169 2004-03-09  Jackson Harper  <jackson@ximian.com>
27171         * char-conversions.h: use 8 bits for numeric data its all we need
27172         * icall.c: numeric data is only 8 bits now.
27174 2004-03-09  Martin Baulig  <martin@ximian.com>
27176         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
27178         * class.c (init_properties, init_events): Initialize the new
27179         `parent' field.
27181         * reflection.c (typebuilder_setup_properties): Likewise.
27182         (typebuilder_setup_events): Likewise.
27184         * reflection.h (MonoEventInfo): Replaced `parent with
27185         `declaring_type' and `reflected_type'.
27187         * icall.c (ves_icall_get_property_info): Distinguish between
27188         declaring and reflected type.
27189         (ves_icall_get_event_info): Likewise.
27191 2004-03-09  Martin Baulig  <martin@ximian.com>
27193         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
27194         (ves_icall_Type_GetField): Correctly set field->klass.
27196 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
27198         * loader.h: Fix warning.
27200 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
27202         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
27203         library routine if present.  Notice that it will still continue
27204         executing even if its missing, for those working on the Gtk#
27205         edition of Windows.Forms.
27207         * assembly.c (do_mono_assembly_open): If loading the
27208         System.Windows.Forms call mono_loader_wini_init.
27210 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
27212         * class.h: Added MonoRemoteClass struct.
27213         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
27214         function for MonoStrings.
27215         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
27216         Added internal call for getting the proxy type.
27217         * marshal.c: Get the type of transparent proxies from its remote_class.
27218         Added methods that generate the IL for type checks and casts:
27219         mono_marshal_get_isinst, mono_marshal_get_castclass, 
27220         mono_marshal_get_proxy_cancast.
27221         * marshal.h: Declaration of the previous new methods.
27222         * object.c: Added new moethods for creating and updating MonoRemoteClass
27223         instances: mono_remote_class, mono_upgrade_remote_class, 
27224         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
27225         * verify.c: FIx transparent_proxy_fields layout.
27226         * appdomain.c: Bump corlib version.
27228 2004-03-04  Jackson Harper  <jackson@ximian.com>
27230         * icall.c: Add icall to access char conversion tables.
27231         * char-conversions.h: Character conversion tables.
27232         * Makefile.am: Add char-conversions.h private header file.
27233         
27234 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
27236         * appdomain.c (unload_thread_main): Increase unloading timeout to
27237         10 sec as a temporary workaround for Nant problems.
27239 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
27241         * gc.c: Add checks for GC_enable and GC_disable.
27243         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
27244         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
27245         (bug #54988).
27246         
27247 2004-02-27  Martin Baulig  <martin@ximian.com>
27249         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27250         `MonoReflectionType *' instead of a `MonoType *'.
27252 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
27254         * gc.c (run_finalize): Avoid finalizing the object representing the
27255         finalizer thread.
27256         (finalizer_thread): Fix warning.
27258 2004-02-25  Martin Baulig  <martin@ximian.com>
27260         * class.c (_mono_class_get_instantiation_name): Added `int offset'
27261         argument for nested types.
27262         (mono_class_create_generic): Added support for nested generictypes.
27264         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
27265         `GList *nested'.
27267         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
27269         * reflection.c (method_encode_signature): Increase the minimum
27270         value of `size' from 10 to 11.
27271         (mono_reflection_bind_generic_parameters): Take `int type_argc'
27272         and `MonoType **types' arguments instead of the `MonoArray
27273         *types'; added `MonoType *nested_in'.  Recursively instantiate
27274         nested classes. 
27276 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
27278         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
27279         stack_overflow_ex members which are used by exception handling.
27281         * appdomain.c (mono_runtime_init): Initialize the new members.
27283         * gc.c (mono_gc_enable): New helper function.
27284         * gc.c (mono_gc_disable): New helper function.
27286 2004-02-23  Martin Baulig  <martin@ximian.com>
27288         * icall.c: I must have been really stupid - make it actually work
27289         this time ;-)
27291 2004-02-23  Martin Baulig  <martin@ximian.com>
27293         * loader.c (method_from_memberref): Only inflate the method if
27294         it's in another klass.
27296 2004-02-23  Martin Baulig  <martin@ximian.com>
27298         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
27299         (mono_class_init): If we're a generic instance and an interface,
27300         compute `class->interface_id'; also create `class->interfaces'
27301         here and inflate them.
27303         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
27304         `ginst->is_open'.
27305         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
27307         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
27309 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
27311         * reflection.c (method_encode_code): Improved the error message
27312         generated by the exception.
27314 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27316         * icall.c: Martin did not do what he said in the ChangeLog for
27317         2004-02-18, but put back the changes for properties and events.
27318         Commenting those changes out again and adding comment to bug #54518.
27319         
27320         * process.c: removed warning.
27322 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
27324         * marshal.c (emit_struct_conv): Print an error message instead of
27325         asserting when a type does not have the StructLayout attribute.
27327 2004-02-20  Martin Baulig  <martin@ximian.com>
27329         * reflection.c (mono_type_get_object): Also use the cache for
27330         generic instances.
27331         (mono_reflection_bind_generic_parameters): Always compute
27332         `ginst->ifaces'.        
27334 2004-02-20  Martin Baulig  <martin@ximian.com>
27336         * class.h (MonoGenericMethod): Removed `klass'.
27338         * class.c (mono_class_inflate_generic_method): Added `MonoClass
27339         *klass' argument.
27341 2004-02-20  Martin Baulig  <martin@ximian.com>
27343         * reflection.c (method_encode_methodspec): Actually use the
27344         uninflated signature for the memberref.
27346 2004-02-20  Martin Baulig  <martin@ximian.com>
27348         * class.h (MonoGenericMethod): Removed `declaring'.
27350         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
27351         is NULL, compute it here.
27353 2004-02-20  Martin Baulig  <martin@ximian.com>
27355         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
27357         * metadata.c (mono_metadata_generic_inst_hash): New method.
27358         (mono_metadata_generic_inst_equal): New method.
27360         * reflection.c (mono_reflection_bind_generic_parameters): Use the
27361         `klass->image->generic_inst_cache' cache to avoid creating
27362         duplicate MonoGenericInst's.
27364         * class.c (mono_class_inflate_generic_type): Use the cache.
27366 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
27368         * object.c: fixed gc descriptor calculation for embedded valuetypes.
27370 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27372         * icall.c: added Socket.WSAIoctl icall.
27374         * socket-io.[ch]: implemented
27375         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
27377 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
27379         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
27381 2004-02-18  Urs C Muff  <umuff@quark.com>
27383         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
27384         this work on PPC and other big-endian architectures.
27386         * debug-mono-symfile.h: Prepended the names of all the `guint32'
27387         fields with an underscore to make sure they're only accessed by
27388         the read32() macro.
27390 2004-02-18  Martin Baulig  <martin@ximian.com>
27392         * icall.c: Put the klass->refclass changes back for methods and
27393         fields, but not for properties and events.  We're currently not
27394         distinguishing between DeclaringType and ReflectedType for
27395         properties and events, that's what caused the regressions.
27397 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27399         * object.c:
27400         (mono_async_result_new): the handle can be NULL.
27402         * threadpool.c: Use an event instead of a semaphore, don't initialize
27403         it until needed. This saves quite a few semaphores from being created
27404         when using the threadpool.
27406 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
27408         * object.c (mono_string_is_interned_lookup): Fix interning of long
27409         strings. Fixes #54473.
27411         * domain.c (ldstr_equal): Optimize if the two strings are equal.
27413         * icall.c: Revert the klass->refclass changes since they introduce
27414         regressions (bug #54518).
27416 2004-02-18  Martin Baulig  <martin@ximian.com>
27418         * class.c (mono_class_init): If we're a generic instance and don't
27419         come from a TypeBuilder, inflate our members here.
27420         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
27421         (mono_class_create_generic): New public method.
27422         (mono_class_initialize_generic): Removed.
27423         (get_instantiation_name): Renamed to
27424         _mono_class_get_instantiation_name() and made it public.
27426 2004-02-18  Martin Baulig  <martin@ximian.com>
27428         * class.c (mono_class_inflate_generic_type): Clear the new
27429         instance's `nginst->klass' when inflating a generic instance.
27430         (mono_class_is_subclass_of): Added (basic) support for generic
27431         instances.
27433 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
27435         * appdomain.h, domain.c: use a MonoCodeManager instead of a
27436         MonoMempool to hold compiled native code.
27438 2004-02-17  Martin Baulig  <martin@ximian.com>
27440         * class.h (MonoDynamicGenericInst): Added `count_properties' and
27441         `properties'.
27443         * reflection.c (mono_reflection_generic_inst_initialize): Added
27444         `MonoArray *properties' argument.
27446         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
27448 2004-02-17  Martin Baulig  <martin@ximian.com>
27450         * icall.c (ves_icall_Type_GetFields): Renamed to
27451         ves_icall_Type_GetFields_internal() and added a
27452         `MonoReflectionType *rtype' argument; pass it to
27453         mono_field_get_object() to set the field's "reflected" type.
27454         (ves_icall_Type_GetConstructors): Likewise.
27455         (ves_icall_Type_GetEvents): Likewise.
27456         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
27457         argument; pass it to mono_method_get_object() to set the method's
27458         "reflected" type.       
27460 2004-02-17  Martin Baulig  <martin@ximian.com>
27462         * class.h (MonoDynamicGenericInst): New type.
27463         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
27465         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
27466         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
27467         (ves_icall_MonoGenericInst_GetFields): New interncall.
27469         * class.c (mono_class_from_generic): Don't call
27470         mono_class_initialize_generic() if this is a dynamic instance;
27471         ie. it's being created from a TypeBuilder.
27472         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
27473         `class->byval_arg.type'.
27475         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
27476         to `inflate_method' and made static.
27477         (mono_reflection_inflate_field): Removed.
27478         (mono_reflection_generic_inst_initialize): New public method.
27480         * reflection.h (MonoReflectionGenericInst): Removed `methods',
27481         `ctors' and `fields'; added `initialized'.
27483 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
27485         * debug-helpers.c (mono_method_full_name): Fix output for empty
27486         namespaces.
27488 2004-02-12  Martin Baulig  <martin@ximian.com>
27490         * class.h (MonoClassField): Added `MonoType *generic_type'.
27492         * reflection.c (mono_image_get_fieldref_token): Added support for
27493         instantiated generic types.
27494         (field_encode_inflated_field): Removed.
27495         (mono_image_get_inflated_field_token): Removed.
27496         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
27498         * reflection.h (MonoReflectionInflatedField): Removed.
27500 2004-02-12  Martin Baulig  <martin@ximian.com>
27502         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
27503         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
27505         * reflection.c (mono_image_get_methodspec_token): Take a
27506         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
27507         (mono_image_create_token): Check whether we have a
27508         `method->signature->gen_method' and call
27509         mono_image_get_methodspec_token() if appropriate.
27510         (inflated_method_get_object): Removed.
27511         (mono_reflection_bind_generic_method_parameters): Return a
27512         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
27513         (mono_reflection_inflate_method_or_ctor): Likewise.
27515         * reflection.h (MonoReflectionInflatedMethod): Removed.
27517 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
27519         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
27520         for custom valuetype marshalling.
27522         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
27524 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27526         * icall.c: fixed WSAGetLastError_internal name.
27528 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
27530         * threads.c (mono_thread_attach): Allow this to be called multiple
27531         times for a thread.
27532         
27533         * threads.c (build_wait_tids): Do not wait for ourselves.
27535         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
27536         appdomain list is empty.
27538         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
27539         memory returned by mono_string_builder_to_utf16, since it points into
27540         managed memory. Thanks to Bernie Solomon for noticing this.
27542         * icall.c: Add AppDomainSetup icalls.
27544         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
27546         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
27547         types.
27549         * reflection.c (reflection_methodbuilder_to_mono_method): Save
27550         custom attributes to the method_aux struct. Also fix array indexes etc.
27552         * loader.c (mono_method_get_param_names): Make dynamic case work again.
27553         
27554 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
27556         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
27557         (both static and runtime) and reduce startup time.
27559 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
27561         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
27562         AsAny marshalling conversion instead of crashing.
27564         * marshal.c: Fix warnings.
27566 2004-02-09  Martin Baulig  <martin@ximian.com>
27568         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
27570         * reflection.h (MonoReflectionInflatedMethod): Removed the
27571         `declaring' field, it's now in the unmanaged MonoGenericMethod.
27573         * reflection.c (method_encode_methodspec): Removed the `method'
27574         argument; we get it from `gmethod->declaring'.
27575         (inflated_method_get_object): Removed the `declaring' argument.
27577 2004-02-09  Martin Baulig  <martin@ximian.com>
27579         * class.h (MonoGenericMethod): New type.
27580         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
27581         `generic_method'.
27583         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
27584         a `MonoGenericMethod *gen_method' one.
27586         * class.c (mono_class_inflate_generic_type): Take an additional
27587         `MonoGenericMethod * argument.  This is only non-NULL if we're
27588         inflating types for a generic method.   
27589         (mono_class_inflate_generic_signature): Renamed to
27590         inflate_generic_signature() and made static; take a
27591         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27592         (inflate_generic_header): Take a `MonoGenericMethod *' argument
27593         instead of a `MonoGenericInst *' one.
27594         (mono_class_inflate_generic_method): Likewise.
27596         * reflection.c (encode_generic_method_sig): Take a
27597         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27598         (method_encode_methodspec): Likewise.
27599         (inflated_method_get_object): Likewise. 
27601         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
27602         field with a `MonoGenericMethod *gmethod' one.  
27604 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
27606         * class.h (mono_class_has_parent): add parens to expansion
27607         so you can ! this.
27609 2004-02-08  Martin Baulig  <martin@ximian.com>
27611         * image.h (MonoImage): Removed `generics_cache'.
27613         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
27614         instead of a `MonoType *' argument; removed the `inflate_methods'
27615         argument.  Don't inflate methods here.
27617         * loader.c (find_method): If it's a generic instance, call
27618         mono_class_init() on the `sclass->generic_inst->generic_type'.
27620         * metadata.c (mono_type_size): Make this work on uninitialized
27621         generic instances; call it on the `ginst->generic_type's class.
27623         * reflection.c (mono_reflection_bind_generic_parameters): Call
27624         mono_class_from_generic() to create the `ginst->klass'.
27626 2004-02-08  Martin Baulig  <martin@ximian.com>
27628         * class.h (MonoClass): Changed type of `generic_inst' from
27629         `MonoType *' to `MonoGenericInst *'.
27631 2004-02-08  Martin Baulig  <martin@ximian.com>
27633         * icall.c (ves_icall_Type_BindGenericParameters): Just call
27634         mono_type_get_object(), this is now creating a `MonoGenericInst'
27635         for MONO_TYPE_GENERICINST.
27636         (ves_icall_MonoGenericInst_GetParentType): Likewise.
27637         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
27639         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
27640         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
27641         (inflated_method_get_object): Added `MonoClass *refclass' argument.
27642         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
27643         and reflected type.
27645         * reflection.h (MonoReflectionInflatedMethod): Removed
27646         `declaring_type' and `reflected_type'.
27648 2004-02-08  Martin Baulig  <martin@ximian.com>
27650         * class.h (MonoGenericInst): Added `MonoType *parent' and
27651         `MonoType **ifaces'.
27653         * reflection.h (MonoReflectionGenericInst): Removed `klass',
27654         `parent' and `interfaces'.
27656         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27657         `MonoType *' argument and return a `MonoType *'.
27659         * icall.c
27660         (ves_icall_MonoGenericInst_GetParentType): New interncall.
27661         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
27663 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27665         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
27666         valuetype marshalling.
27668 2004-02-06  Martin Baulig  <martin@ximian.com>
27670         * class.c
27671         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
27672         (my_mono_class_from_generic_parameter): Likewise.
27674 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27676         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
27677         contents of the symbol files lazily.
27679         * object.h (MonoThread): Add 'name' and 'name_len' fields.
27681         * threads.h threads.c icall.c: New icalls for getting and setting the
27682         threads name.
27684 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
27686         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
27687         Raise an exception when the domain is not found.
27689 2004-02-03  Martin Baulig  <martin@ximian.com>
27691         * reflection.c (mono_image_get_methodspec_token): Use the
27692         uninflated signature; fixes gen-33.
27694 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
27696         * gc.c threads.c: Make the finalizer thread a normal managed thread so
27697         the finalizer code can use thread functionality.
27699         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
27700         the finalizer thread.
27702         * threads.c: Make some functions more robust.
27704         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
27706         * metadata.h: Add new marshalling conventions.
27708         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
27709         stringbuilder marshalling. Fixes #53700.
27711         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
27713         * reflection.c (mono_image_get_type_info): Save declarative security
27714         info.
27716         * reflection.c (mono_image_get_field_info): Handle uninitialized 
27717         unmanaged fields as well.
27719         * appdomain.c: Bump corlib version.
27721 2004-02-01  Martin Baulig  <martin@ximian.com>
27723         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
27724         method type arguments.  
27726 2004-01-30  Duncan Mak  <duncan@ximian.com>
27728         * marshal.h: Add prototype for
27729         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
27730         and
27731         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
27732         fix the build.
27734 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
27736         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
27737         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
27739 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27741         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27742         custom marshalling of valuetypes.
27744         * marshal.c: Fix some warnings.
27746 2004-01-29  Martin Baulig  <martin@ximian.com>
27748         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
27749         for generic method parameters.
27751         * reflection.c (method_encode_methodspec): Write the uninflated
27752         signature into the methodspec table.
27753         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
27754         is always the uninflated method.
27755         (reflection_methodbuilder_to_mono_method): Copy the generic
27756         parameters from the MethodBuilder into `header->gen_params'.
27758 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27760         * class.c (mono_class_from_generic_parameter): Fix warning.
27762 2004-01-27  Martin Baulig  <martin@ximian.com>
27764         * class.c (mono_class_from_generic_parameter): Don't create
27765         `klass->methods' here.  
27767 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
27769         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
27770         extension since it does not work with libraries named lib<FOO>.dll.so.
27772 2004-01-25  Martin Baulig  <martin@ximian.com>
27774         * class.c (mono_class_inflate_generic_type): Added support for
27775         MONO_TYPE_GENERICINST.
27777         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
27778         inflate methods on open constructed types.      
27780 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27782         * object.c: fire ProcessExit event in the root AppDomain after running
27783         Main. Fixes bug #53299.
27785 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
27787         * socket-io.c: include the new socket-wrappers.h header.
27788         Use the wrappers instead of the unix socket functions to make the code
27789         more clear.
27791 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
27793         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
27795         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27796         Fixes #22532.
27798 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
27800         * reflection.c (mono_image_create_pefile): Handle the case when the
27801         entry point is not a MethodBuilder.
27803         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27804         field to ReflectionMethod since it is not allways a builder.
27806         * reflection.c (type_get_fully_qualified_name): New helper function to
27807         return the fully qualified name of a type.
27809         * reflection.c (encode_marshal_blob): Always emit the fully qualified
27810         type name for custom marshallers.
27812         * reflection.c (mono_marshal_spec_from_builder): Ditto.
27814         * class.c (mono_class_setup_vtable): If a parent class already 
27815         implements an interface, use the implementing methods from that class.
27816         Fixes #53148.
27818 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27820         * threadpool.c: just return instead of ExitThread to allow for thread
27821         clean up earlier.
27823 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
27825         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
27826         when closing resource modules.
27828         * reflection.c (mono_image_create_pefile): Handle the case when the
27829         entry point is not a MethodBuilder.
27831         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27832         field to ReflectionMethod since it is not allways a builder.
27834 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
27836         * marshal.c (mono_marshal_get_managed_wrapper): 
27837         mono_marshal_alloc takes native int so CONV_I
27838         the arg for 64bits.
27840 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
27842         * reflection.c (fixup_cattrs): New function to fixup the methoddef
27843         tokens in the cattr table. Fixes #53108.
27845 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27847         * loader.c: don't trim ".dll" before looking up in the config file.
27848         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
27850 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
27852         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
27853         Return the module which contains the resource as well.
27854         (ves_icall_System_Reflection_Module_Close): New icall.
27856         * appdomain.c: Bump corlib version number.
27858         * image.c (mono_image_addref): New public function.
27860         * assembly.c: Call mono_image_addref.
27862         * reflection.c (mono_module_get_object): Increase reference count of 
27863         the image.
27865         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27866         Fixes #22532.
27868         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
27869         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
27870         proper exceptions on DllImport problems.
27872 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27874         * class.c, metadata.c: eliminate CSIZE macro.
27876 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27878         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27879         * object.h: Added async_callback field in MonoAsyncResult.
27880         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27881         * verify.c: Added async_callback in MonoAsyncResult layout.
27883 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27885         * reflection.c (mono_reflection_get_custom_attrs): Add support
27886         for Modules.
27888 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27890         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27891         marshalling.
27892         (mono_marshal_method_from_wrapper): Add null pointer check.
27894 2004-01-16  Martin Baulig  <martin@ximian.com>
27896         * debug-mono-symfile.h: Set version number to 36 and reflect
27897         latest symbol writer changes.
27899 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27901         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27902         multi-dimensional arrays.
27903         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27904         (mono_class_from_mono_type): Use bounded_array_class_get.
27905         
27906         * class.c (mono_bounded_array_class_get): New function which takes
27907         a 'bounded' bool argument to distinguish vectors from one dimensional
27908         arrays.
27910         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27911         bounded_array_class_get if the array has bounds.
27913         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27914         Search modules loaded using AssemblyBuilder:AddModule as well.
27916 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27918         * appdomain.c: increased corlib version.
27919         * filewatcher.c: removed g_print.
27920         * icall.c:
27921         (get_property_info): only allocate what is actually requested.
27922         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27924 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27926         * Makefile.am: added filewatcher.[ch]
27927         * filewatcher.[ch]: FileSystemWatcher runtime support.
27928         * icall.c: added new FSW icalls.
27930 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27932         * string-icalls.c: fix stringbuilder regression as suggested by
27933         Iain McCoy <iain@mccoy.id.au>.
27935 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27937         * process.c (process_read_stringtable_block): Recognize '007f' as
27938         a language neutral stringtable block.
27940 2004-01-12  Patrik Torstensson
27942         * object.h (MonoStringBuilder) : Changed layout to support our
27943         new stringbuilder class.
27944         * marshal.c: Change marshalling to support the new layout of 
27945         string builder.
27946         * appdomain.c: increased version number because new layout of
27947         string builder.
27949 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27951         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27952         assembly name as an string instead of an AssemblyName, since it is
27953         easier to extract info from it.
27955         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27956         the culture subdirectories too. Fixes #52231.
27958 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27960         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27961         It takes 2 new parameters with an optional name for the method to look
27962         for and case ignoring info.
27964         * threadpool.c: removed unused variable.
27966 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27968         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27969         It takes 2 new parameters with an optional name for the property to look
27970         for and case ignoring info.
27971         Fixes bug #52753.
27973 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27975         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27976         Fix #52451.
27978 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27980         * appdomain.c:
27981         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27982         Fixes bug #52630.
27984 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27986         * reflection.c: Add support for more than one unmanaged resource.
27988         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27989         in field->def_value, as done in all other cases.
27991         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27992         TypeBuilders.
27994         * reflection.c (mono_reflection_create_runtime_class): Remove 
27995         errorneous assignment to klass->element_class, since it is already
27996         done in mono_reflection_setup_internal_class.
27998 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28000         * gc.c: added missing LeaveCriticalSection.
28001         * icall.c: indented a couple of lines.
28002         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
28003         if we call EndInvoke inside a callback. Fixes bug #52601.
28005 2004-01-07  Martin Baulig  <martin@ximian.com>
28007         * mono-debug-debugger.h
28008         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
28010 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
28012         * appdomain.c: Use messages in NotImplementedException.
28014         * exception.c (mono_get_exception_not_implemented): Now this takes
28015         a message argument.
28017         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
28018         exception instead of g_asserting an aborting when something is not
28019         implemented.
28021         Add some inline docs.
28023 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
28025         * reflection.h: Update after changes to object layout.
28027         * reflection.c: Implement saving of unmanaged aka win32 resources.
28029         * appdomain.c: Bump version number.
28031         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
28032         Handle missing domains gracefully.
28034 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
28036         * file-io.c : On Windows, there are much more invalid_path_chars.
28038 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
28040         * class.h, object.c: prepare for GetType () speedup.
28042 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
28044         * profiler.c: workaround for --profile null reference exception on
28045           cygwin. Patch by Patrik Torstensson.
28047 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
28049         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
28050         make work for unaligned access.
28052 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
28054         * class.c: small cleanup (class->fields [i] -> field).
28055         * image.c: check address of metadata is valid.
28057 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
28059         * assembly.h assembly.c (mono_assembly_loaded): New public function to
28060         search the list of loaded assemblies.
28062         * reflection.c (mono_reflection_type_from_name): Use 
28063         mono_assembly_loaded instead of mono_image_loaded.
28065         * reflection.c: Fix warnings.
28067 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
28069         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
28070         is dynamic. This is needed since an assembly can contain both dynamic and
28071         non-dynamic images.
28073         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
28074         assembly->dynamic.
28076         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
28078         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
28079         to store modules loaded using AddModule.
28081         * reflection.c (mono_image_fill_file_table): Generalize this so it works
28082         on Modules.
28084         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
28086         * reflection.c (mono_image_fill_export_table_from_module): New function to
28087         fill out the EXPORTEDTYPES table from a module.
28089         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
28090         into a separate function. Also handle loaded non-dynamic modules.
28092         * reflection.c (mono_image_basic_init): Fix memory allocation.
28094         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28096         * assembly.c (mono_assembly_load_references): Make this public.
28098 2003-12-19  Martin Baulig  <martin@ximian.com>
28100         * class.c (mono_class_initialize_generic): Made this static, take
28101         a `MonoGenericInst *' instead of a `MonoClass *'.
28102         (mono_class_from_generic): Call mono_class_initialize_generic()
28103         unless we're already initialized or being called from
28104         do_mono_metadata_parse_generic_inst().
28106         * class.h (MonoGenericInst): Added `initialized' and
28107         `init_pending' flags.
28109         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
28110         `mono_class_init (gklass)' or mono_class_initialize_generic()
28111         here; set `generic_inst->init_pending' while parsing the
28112         `type_argv'.
28114 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
28116         * locales.c: include string.h for memxxx prototypes
28118 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
28120         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
28121         constructor when accessing literal fields.
28123 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
28125         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28127         * reflection.c (assembly_add_resource_manifest): New function to fill
28128         the MANIFESTRESOURCE table.
28130         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
28132         * reflection.h: Update to changes in class layout.
28134         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
28135         Reenable call to mono_runtime_is_shutting_down ().
28137         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
28138         determine if the runtime is shutting down.
28140 2003-12-16  Jackson Harper <jackson@ximian.com>
28142         * icall.c: comment out call to mono_runtime_is_shutting_down to
28143         fix build.
28144         
28145 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
28147         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
28148         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
28150 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
28152         * reflection.c: move definition of swap_with_size
28153         to before its first call
28155 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
28157         * appdomain.c (mono_runtime_is_shutting_down): New public function.
28159         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
28160         icall.
28162         * object.c: Fix warnings.
28164         * icall.c (ves_icall_Type_Get...): Only consider inherited static
28165         members if FlattenHierarchy is set.
28167         * reflection.c (mono_image_add_decl_security): New function to emit
28168         declarative security.
28170         * reflection.h reflection.c: Add support for declarative security.
28172         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
28173         
28174 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
28176         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
28177         
28178         * appdomain.c verify.c: Moved corlib version checking into its own
28179         function in appdomain.c since it needs to create vtables etc.
28181 2003-12-13  Patrik Torstensson <p@rxc.se>
28183         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
28184         instead of unwrapped server.
28186 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
28188         * verify.c (check_corlib): Fix field index.
28190 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
28192         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
28193         GetGacPath icall.
28195 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
28197         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
28198         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
28199         cope with sizeof(size_t) != sizeof(guint32).
28201 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28203         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
28204         in case of failure.
28206 2003-12-10  Mark Crichton <crichton@gimp.org>
28208         * icall.c: removed the GetNonZeroBytes.  We now handle this case
28209         in managed code.
28211         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
28213 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
28215         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
28216         marked as deleted.
28218 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
28220         * verify.c (check_corlib): Handle the case when the version field is 
28221         initialized by a static constructor.
28223 2003-12-08  Patrik Torstensson  <p@rxc.se>
28225     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
28227 2003-12-08  Martin Baulig  <martin@ximian.com>
28229         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
28230         a MonoReflectionGenericParameter, also take the parameter index
28231         and name as arguments.
28232         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
28233         (ves_icall_MonoGenericParam_initialize): New interncall.
28234         (ves_icall_Type_make_byref_type): New interncall.
28236         * reflection.h (MonoReflectionGenericParam): Derive from
28237         MonoReflectionType, not just from MonoObject.  Added `refobj' and
28238         `index' fields.
28240         * reflection.c (mono_reflection_define_generic_parameter): Create
28241         and return a new MonoReflectionGenericParam; don't initialize the
28242         constraints here.
28243         (mono_reflection_initialize_generic_parameter): New public method;
28244         initializes the constraints and creates the `param->pklass'.
28246 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
28248         * reflection.h reflection.c: Use the new fields 'num_types', 
28249         'num_fields' and 'num_methods' to track the number of types etc.
28251         * verify.c (check_corlib): Check corlib version number.
28253 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
28255         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
28256         function works on all methods.
28258 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
28260         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
28261         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
28262         the custom_type_info flag of the transparent proxy.
28263         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
28264         objects that supports IRemotingTypeInfo.
28265         * object.h: Added custom_type_info field in transparent proxy.
28267 2003-12-06  Martin Baulig  <martin@ximian.com>
28269         * class.c (mono_class_create_from_generic): Removed.
28270         (mono_class_from_generic): Check `ginst->klass' before doing
28271         anything else.  This is important to fully support "recursive"
28272         generic types.
28274         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
28275         empty `generic_inst->klass' before doing anything else.
28277 2003-12-06  Dick Porter  <dick@ximian.com>
28279         * verify.c: 
28280         * object.h:
28281         * icall.c:
28282         * locales.c: Use C structs to access class fields.  Don't do a
28283         conversion between MonoString and UChar because both are
28284         platform-endian UTF-16.  Compare now takes startindex and count
28285         parameters.  Add a char overload for IndexOf.  Speed up the
28286         invariant string IndexOf.
28288 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
28290         * Makefile.am (monosn_LDADD): Fix parallel build.
28292 2003-12-04  Martin Baulig  <martin@ximian.com>
28294         * icall.c
28295         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28296         (ves_icall_Type_make_array_type): New interncall.       
28298 2003-12-04  Martin Baulig  <martin@ximian.com>
28300         * locales.c: also change it in the !HAVE_ICU case.
28302 2003-12-04  Dick Porter  <dick@ximian.com>
28304         * icall.c:
28305         * locales.c: construct_compareinfo is now in CompareInfo, not
28306         CultureInfo.
28308 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
28310         * image.c (mono_image_load_file_for_image): Cache loaded images in the
28311         image->files array.
28313         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
28314         table as well.
28316         * assembly.c (mono_assembly_load_references): Only load references
28317         once.
28319         * class.c (mono_class_from_name): Avoid linear search of the 
28320         EXPORTEDTYPE table.
28322         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
28324 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
28326         * image.h (MonoImage): Add 'field_cache' field.
28328         * loader.c (mono_field_from_token): Cache field lookups.
28329         
28330         * reflection.c (mono_module_get_object): Fix name property.
28332         * icall.c (ves_icall_get_enum_info): Update after changes to 
28333         mono_metadata_get_constant_index ().
28335         * icall.c: Get rid of get_type_info icall, use a separate icall for
28336         each type property to avoid needless memory allocations. Fixes #51514.
28338         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
28339         to avoid needless binary searches.
28341         * class.c (class_compute_field_layout): Move the initialization of
28342         field->def_value to mono_class_vtable ().
28344         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
28345         non-corlib types.
28347         * object.c (mono_object_allocate): Make it inline.
28349         * object.c (mono_object_allocate_spec): Make it inline.
28350         
28351 2003-12-02  Dick Porter  <dick@ximian.com>
28353         * locales.c (create_NumberFormat): NumberFormatInfo construction.
28354         Patch by Mohammad DAMT (mdamt@cdl2000.com).
28356 2003-12-01  Dick Porter  <dick@ximian.com>
28358         * threads.c: Fix signature and call in CreateMutex and
28359         CreateEvent.
28361 2003-12-01  Dick Porter  <dick@ximian.com>
28363         * icall.c: 
28364         * locales.c: Implement string compares and searching
28366         * object.h: Add extra Thread field
28368 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
28370         * reflection.c (fixup_method): Add support for MonoCMethod.
28372 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
28374         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
28376         * reflection.c (assembly_name_to_aname): Allow extra characters in
28377         assembly names. Fixes #51468.
28379 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
28381         * exception.c (mono_exception_from_name_domain): New helper function.
28383         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
28384         exception object in the correct domain.
28386         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
28387         formatting + make a copy a the input data.
28389         * loader.c (mono_get_method_from_token): Methods which contain
28390         native code do not have entries in the ImplMap.
28392         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
28393         Thanks to Gonzalo for spotting this.
28394         
28395         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
28396         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
28398         * assembly.h (mono_assembly_load_from): Split the second part of 
28399         assembly loading into a new public function.
28401         * exception.h (mono_get_exception_bad_image_format): New function.
28403 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
28405         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28406         Enumerate all modules inside a dynamic assembly. Fixes #51293.
28407         
28408         * icall.c: Add new icall for creating dynamic methods.
28410         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
28412         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
28414         * reflection.c (mono_reflection_create_dynamic_method): New icall to
28415         create a dynamic method.
28417         * reflection.c (resolve_object): New helper function.
28419         * reflection.c: Generalize ReflectionMethodBuilder and the functions
28420         which manipulate it so they can also work on dynamic methods.
28422         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
28423         creating the MonoReflectionMethodAux structure if it is not needed.
28424         
28425         * reflection.h verify.c: Update after changes to object layout.
28427         * reflection.c (method_builder_encode_signature): Fix compilation on
28428         gcc 2.95.x.
28430 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
28432         * appdomain.h: Added support for context static fields. Added static_data
28433           field to MonoAppContext and renamed thread_static_fields to a more
28434           generic special_static_fields in MonoAppDomain, since it can now contain
28435           context static fields.
28436         * domain.c: Updated hashtable name.
28437         * object.c: Replaced field_is_thread_static() for a more generic
28438           field_is_special_static() which also checks for context static attribute.
28439           In mono_class_vtable(), added support for static context fields.
28440         * threads.c: Changed methods that manage thread static fields to more
28441           generic methods so they can be reused both for thread and context static
28442           data.
28443         * threads.h: Declared some new methods.
28445 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
28447         * reflection.h: Update after changes to the managed types.
28449         * reflection.c (encode_custom_modifiers): New helper function.
28451         * reflection.c (method_encode_signature): Emit custom modifiers.
28453         * reflection.c (field_encode_signature): Emit custom modifiers.
28455 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
28457         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
28459         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
28460         implementation.
28462         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
28463         icall.
28465         * object.c (mono_field_get_value_object): New function.
28467         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
28468         specific.
28470 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
28472         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
28473         return a preallocated out-of-memory exception instance.
28475         * object.c (out_of_memory): Use the new function.
28477         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
28478         flag is before the custom modifiers. Fixes #49802.
28480 2003-11-16  Martin Baulig  <martin@ximian.com>
28482         * class.c (mono_class_is_open_constructed_type): Implemented the
28483         MONO_TYPE_GENERICINST case.
28485 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
28487         * assembly.c (mono_assembly_fill_assembly_name): New function to
28488         fill out the MonoAssemblyName structure.
28489         (mono_assembly_open): Use the new function.
28491         * icall.c (fill_reflection_assembly_name): New helper function.
28493         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
28494         new function.
28496         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
28498 2003-11-15  Martin Baulig  <martin@ximian.com>
28500         * class.c (mono_class_is_open_constructed_type): New public
28501         function; checks whether a type is an open constructed type,
28502         ie. whether it still contains type parameters.
28503         (mono_class_inflate_generic_type): If we're a type parameter and
28504         the inflated type is also a MONO_TYPE_(M)VAR, return the original
28505         type.
28507         * class.h (MonoGenericInst): Added `guint32 is_open'.
28509         * loader.c (method_from_methodspec): Check whether we're an open
28510         or closed constructed type and set `ginst->is_open'.
28512         * reflection.c (mono_reflection_bind_generic_parameters): Check
28513         whether we're an open or closed constructed type and set
28514         `ginst->is_open'.
28515         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
28516         from open constructed types.
28518 2003-11-15  Martin Baulig  <martin@ximian.com>
28520         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28521         a generic instance (instead of a generic type declaration) with
28522         unbound generic parameters, bind them to our actual types.
28524 2003-11-14  Martin Baulig  <martin@ximian.com>
28526         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
28528         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28529         an interface type, populate `res->interfaces' with instantiated
28530         versions of all the interfaces we inherit.
28532 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
28534         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
28535         when MONO_PATH is set but doesn't contain the install dir.
28537 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28539         * icall.c:
28540         (ves_icall_Type_GetInterfaces): don't return an interface twice when
28541         it's also implemented in base classes. Fixes bug #50927.
28543 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
28545         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
28546         if this method is called from a finalizer. Fixes #50913.
28548 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
28550         * threads.c: Implement VolatileRead/VolatileWrite
28552         * icall.c: Add new icalls for VolatileRead/VolatileWrite
28554 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28556         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
28557         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
28558         2.95.3.
28560         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
28561         from Peter Ross (pro@missioncriticalit.com).
28562         
28563 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
28565         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
28567 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28569         * assembly.c (mono_assembly_load_references): Disable check because it
28570         triggers on older corlibs which lots of people have.
28572 2003-11-12  Jackson Harper  <jackson@ximian.com>
28574         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
28575         load corlib.dll if mscorlib.dll is not found.
28576         * assembly.h: Remove corlib name define.
28577         * class.c:
28578         * domain.c:
28579         * image.c: Change corlib name to mscorlib.
28580         
28581 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28583         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
28585 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
28587         * appdomain.h: Added loader_optimization here to sync with the C#
28588         code, and add disallow_binding_redirects field.
28590 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28592         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
28594         * reflection.c (mono_image_build_metadata): Fix crash on modules
28595         with no types.
28597         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
28599         * icall.c (ves_icall_get_method_info): Return callingConvention as
28600         well.
28602         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
28603         namespaces from the EXPORTEDTYPE table as well.
28605         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
28606         from all modules inside the assembly.
28607         
28608 2003-11-11  Martin Baulig  <martin@ximian.com>
28610         * reflection.c (mono_reflection_bind_generic_parameters): Make
28611         this work for interfaces.
28613 2003-11-11  Martin Baulig  <martin@ximian.com>
28615         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
28617 2003-11-11  Martin Baulig  <martin@ximian.com>
28619         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
28620         "MonoInflatedMethod" and "MonoInflatedCtor".
28622 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28624         * reflection.c (resolution_scope_from_image): Use the assembly table
28625         from the manifest module, since other modules don't have it.
28627         * debug-helpers.c (mono_type_full_name): New helper function.
28629         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
28631         * image.c (mono_image_load_file_for_image): New public function which
28632         is a replacement for the load_file_for_image in class.c.
28634         * assembly.c (mono_assembly_load_module): A wrapper for the function
28635         above which does assembly association and reference loading too.
28637         * class.c (mono_class_from_name): Call mono_assembly_load_module.
28639 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28641         * appdomain.c: not all of the attributes for the full assembly name
28642         are required and the order doesn't matter. Fixes bug #50787.
28644 2003-11-10  Dick Porter  <dick@ximian.com>
28646         * locales.c: Use platform-endian UTF16
28648 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28650         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28651         
28652 2003-11-10  Martin Baulig  <martin@ximian.com>
28654         * metadata.c
28655         (mono_metadata_load_generic_params): Make this actually work.
28657         * reflection.c (mono_reflection_bind_generic_parameters): If our
28658         parent is a generic instance, pass all the `types' to it, no
28659         matter whether it has the same number of type parameters or not.
28661 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28663         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28665         * assembly.c (mono_assembly_load_references): Move the image<->assembly
28666         assignment code to this function so it gets called recursively for all
28667         modules.
28669         * image.c (load_modules): Remove the assembly assignment since it is
28670         now done by mono_assembly_load_references.
28671         
28672         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28673         Add 'module' argument.
28674         (mono_module_get_types): New helper function.
28675         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
28677 2003-11-08  Martin Baulig  <martin@ximian.com>
28679         * class.c (mono_class_inflate_generic_method): Interface method
28680         don't have a header.
28682         * reflection.c (mono_image_get_methodspec_token): Take an
28683         additional `MonoGenericInst *' argument instead of reading it from
28684         the header; this is necessary to support interfaces.
28685         (mono_image_create_token): Pass the `MonoGenericInst *' from the
28686         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
28687         (inflated_method_get_object): Take an additional `MonoGenericInst *'
28688         argument.
28690         * reflection.h (MonoReflectionInflatedMethod): Added
28691         `MonoGenericInst *ginst'.
28693 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
28695         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
28697 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
28699         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
28701 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
28703         * reflection.c 
28704         (reflection_methodbuilder_from_method_builder):
28705         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
28706         initialize a ReflectionMethodBuilder structure.
28707         (mono_image_get_methodbuilder_token):
28708         (mono_image_get_ctorbuilder_token): New functions to emit memberref
28709         tokens which point to types in another module inside the same assembly.
28711         * reflection.c: Use the new helper functions.
28712         
28713         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
28715         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
28716         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
28718         * reflection.c (resolution_scope_from_image): Emit a moduleref if
28719         neccesary.
28721         * reflection.c (mono_image_build_metadata): Emit metadata only for the
28722         current module. Emit the manifest only for the main module.
28724         * reflection.c (mono_image_create_token): Add assertion when a 
28725         memberref needs to be created.
28727         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
28729         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
28730         larger buffer for the custom attribute blob. Fixes #50637.
28731         
28732 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28734         * threadpool.c: notify listener on async processing handles after
28735         invoking the async callback. Thanks to Zoltan.
28737 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28739         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
28740         avoid code duplication.
28742         * reflection.h (MonoDynamicImage): New type which is currently unused,
28743         but will be used through the ref.emit code in place of 
28744         MonoDynamicAssembly.
28746         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28747         object layout.
28749         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
28750         a MonoDynamicImage instead of just a MonoImage.
28751         
28752         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
28753         icalls to ModuleBuilder but keep their semantics, so they will work
28754         with moduleb->assemblyb. This will change later.
28755         
28756 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28758         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28759         object layout.
28761         * reflection.c (mono_image_build_metadata): Avoid creation of a default
28762         main module, since it is now done by the managed code.
28764 2003-11-03  Martin Baulig  <martin@ximian.com>
28766         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
28767         `ginst->klass' here.
28768         (method_encode_methodspec): Don't use the `ginst->generic_method's
28769         klass if it's a generic instance, use `ginst->klass' in this case.
28771 2003-11-03  Martin Baulig  <martin@ximian.com>
28773         * reflection.c (mono_image_get_generic_method_param_info):
28774         Removed, use mono_image_get_generic_param_info() instead.
28775         (mono_image_get_type_info): Write the GenericParam table before
28776         the Method table.  This is neccessary because in the GenericParam
28777         table, type parameters of the class (ie. '!0' etc.) must come
28778         before the ones from its generic methods (ie. '!!0' etc).
28780 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28782         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
28784 2003-11-02  Martin Baulig  <martin@ximian.com>
28786         * reflection.c (create_generic_typespec): Take a
28787         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
28788         the generic parameters from it.
28790 2003-11-02  Martin Baulig  <martin@ximian.com>
28792         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
28793         instead of a `MonoClassField *' since we just need the type.
28794         (create_generic_typespec): New static function.  Creates a
28795         TypeSpec token for a generic type declaration.
28796         (mono_image_get_generic_field_token): New static function.
28797         (mono_image_create_token): If we're a FieldBuilder in a generic
28798         type declaration, call mono_image_get_generic_field_token() to get
28799         the token.
28801 2003-11-02  Martin Baulig  <martin@ximian.com>
28803         * reflection.h
28804         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
28805         `MonoReflectionGenericInst *declaring_type' and
28806         `MonoReflectionGenericInst *reflected_type' fields.
28808         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
28809         `MonoReflectionGenericInst *declaring_type' and a
28810         `MonoReflectionGenericInst *reflected_type' argument instead of a
28811         single `MonoReflectionGenericInst *type' one.  Set
28812         `res->declaring_type' and `res->reflected_type' from them.
28813         (mono_reflection_inflate_field): Likewise.      
28815 2003-11-02  Martin Baulig  <martin@ximian.com>
28817         * class.c (mono_class_setup_vtable): Don't store generic methods
28818         in the vtable.  
28820 2003-11-02  Martin Baulig  <martin@ximian.com>
28822         * reflection.h (MonoReflectionGenericInst): Added
28823         `MonoReflectionType *declaring_type'.
28825         * reflection.c (mono_reflection_bind_generic_parameters): Use
28826         `if (tb->parent)' instead of `klass->parent'.
28828 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
28830         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
28831         with an empty ASSEMBLY table.
28833         * reflection.c (mono_image_build_metadata): Avoid using the same loop
28834         variable in the inner and outer loops.
28836 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
28838         * metadata.h (mono_metadata_make_token): Put parentheses around macro
28839         argument.
28841         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
28842         
28843         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
28844         icalls. Instead, do everything in managed code. This is needed since
28845         it is hard to restore the original domain etc. in unmanaged code in the
28846         presence of undeniable exceptions.
28848         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
28849         New icalls to push and pop appdomain refs.
28851 2003-10-31  Martin Baulig  <martin@ximian.com>
28853         * class.c (inflate_generic_type): Renamed to
28854         mono_class_inflate_generic_type() and made it public.
28856         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
28857         New interncall.
28859         * loader.c (mono_field_from_memberref): Also set the retklass for
28860         typespecs.
28862         * fielder.c (mono_image_get_inflated_field_token): New static
28863         method; creates a metadata token for an inflated field.
28864         (mono_image_create_token, fixup_method): Added support for
28865         "MonoInflatedField".
28866         (fieldbuilder_to_mono_class_field): New static function.
28867         (mono_reflection_inflate_field): New public function.
28869         * reflection.h
28870         (MonoReflectionGenericInst): Added `MonoArray *fields'.
28871         (MonoReflectionInflatedField): New typedef.     
28873 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28875         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28876         for Solaris and other platforms without s6_addr16
28878 2003-10-30  Martin Baulig  <martin@ximian.com>
28880         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28881         argument instead of two.
28882         (mono_class_inflate_generic_signature): Likewise.
28883         (inflate_generic_header): Likewise.
28884         (mono_class_inflate_generic_method): Likewise.  In addition, if
28885         `ginst->klass' is set, it becomes the new `method->klass'.
28887         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28888         field.
28890         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28891         first byte. [FIXME]
28892         (method_encode_methodspec): If we have generic parameters, create
28893         a MethodSpec instead of a MethodRef.
28894         (fixup_method): Added support for "MonoInflatedMethod" and
28895         "MonoInflatedCtor".
28896         (mono_image_create_token): Added support for "MonoInflatedMethod"
28897         and "MonoInflatedCtor".
28898         (inflated_method_get_object): New static function; returns a
28899         managed "System.Reflection.MonoInflatedMethod" object.
28900         (mono_reflection_bind_generic_method_parameters): Return a
28901         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28902         (mono_reflection_inflate_method_or_ctor): Likewise.
28903         (mono_image_get_generic_method_param_info): Initialize unused
28904         fields to zero.
28905         (mono_image_get_generic_param_info): Likewise.
28907         * reflection.h (MonoReflectionInflatedMethod): New public
28908         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28909         "S.R.MonoInflatedCtor" classes.
28911         * loader.c (method_from_memberref): If we're a TypeSpec and it
28912         resolves to a generic instance, inflate the method.
28914 2003-10-28  Dick Porter  <dick@ximian.com>
28916         * object.c (mono_runtime_run_main): Convert command-line arguments
28917         into utf8, falling back to the user's locale encoding to do so.
28919 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28921         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28922         at this time.
28924         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28926         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28927         up icalls at method definition time. Partially fixes #33569.
28929 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28931         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28932         marshalling of arrays. Fixes #50116.
28934         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28936         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28937         points to a vtable in the dying appdomain.
28939         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28940         listeners into unmanaged code inside the lock.
28942         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28943         domains and add some comments.
28945 2003-10-25  Martin Baulig  <martin@ximian.com>
28947         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28949         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28951         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28952         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28953         currently parsing.  Create the generic class and store it in
28954         `generic_inst->klass' before parsing the type arguments.  This is
28955         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28956         for an example.
28957         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28958         to support recursive typespec entries.
28960         * class.c (mono_class_setup_parent): If our parent is a generic
28961         instance, we may get called before it has its name set.
28962         (mono_class_from_generic): Splitted into
28963         mono_class_create_from_generic() and mono_class_initialize_generic().
28965 2003-10-25  Martin Baulig  <martin@ximian.com>
28967         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28968         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28969         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28970         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28972         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28973         (create_typespec): Likewise.
28974         (mono_reflection_bind_generic_parameters): Return a
28975         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28976         (mono_reflection_inflate_method_or_ctor): New public function.
28978         * reflection.h (MonoReflectionGenericInst): New typedef.        
28980 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28982         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28983         inside the domain lock. Fixes #49993.
28984         
28985         * object.c (mono_class_vtable): When typed allocation is used, 
28986         allocate vtables in the GC heap instead of in the mempool, since the
28987         vtables contain GC descriptors which are used by the collector even
28988         after the domain owning the mempool is unloaded.
28990         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28992         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28993         reflect what it does. Also invalidate mempools instead of freeing
28994         them if a define is set.
28996         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28997         of the appdomain.
28998         
28999         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
29000         hold the finalizable objects in this domain.
29002         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
29003         appdomain.
29005         * appdomain.c (mono_domain_set): New function to set the current
29006         appdomain, but only if it is not being unloaded.
29008         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
29009         appdomain which is being unloaded.
29010         
29011         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
29012         unloading of the root appdomain.
29014         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
29015         icall to execute a method in another appdomain. Intended as a 
29016         replacement for InternalSetDomain, which can confuse the code 
29017         generation in the JIT.
29019         * appdomain.c (mono_domain_is_unloading): New function to determine
29020         whenever an appdomain is unloading.
29022         * appdomain.c (mono_domain_unload): New function to correctly unload
29023         an appdomain.
29025         * assembly.c (mono_assembly_load_references): Check that an assembly
29026         does not references itself.
29028         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
29029         domain manually, it asks the finalizer thread to do it, then waits for
29030         the result. Also added a timeout.
29032         * icall.c: Register the new icalls.
29034         * threads.h threads.c: Export the mono_gc_stop_world and 
29035         mono_gc_start_world functions.
29036         
29037         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
29038         function to fill out the mempool with 0x2a.
29040 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
29042         * reflection.h (MonoReflectionMethodAux): New structure to store
29043         information which is rarely used, thus is not in the MonoMethod
29044         structure.
29046         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
29047         store the aux info.
29049         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
29050         and marshalling info into the aux structure.
29052         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
29053         from the aux structure.
29055         * loader.c (mono_method_get_param_names): Retrieve the param names from
29056         the aux structure.
29057         
29058 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
29060         * exception.h exception.c: Add AppDomainUnloadedException && fix 
29061         warning.
29063 2003-10-21  Dick Porter  <dick@ximian.com>
29065         * socket-io.c
29066         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
29067         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
29069 2003-10-21  Martin Baulig  <martin@ximian.com>
29071         * reflection.c (mono_reflection_bind_generic_parameters):
29072         `klass->parent' is NULL for interfaces.
29074 2003-10-21  Martin Baulig  <martin@ximian.com>
29076         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29078 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
29080         * exception.c (mono_exception_from_name_msg): New helper function for
29081         creating exceptions and initializing their message field.
29083         * exception.c: Simplify functions using the new helper.
29085         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
29086         New function.
29088         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
29089         mono_raise_exception, since otherwise gcc doesn't generate the function
29090         epilog for raise_exception, confusing the stack unwinding in the JIT.
29091         Fixes #45043.
29093         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
29094         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
29095         Fixes #49499.
29097 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29099         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
29100         utf8.
29102 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
29104         * icall.c: Removed GetUninitializedObject method because
29105           AllocateUninitializedClassInstance does the same.
29107 2003-10-18  Martin Baulig  <martin@ximian.com>
29109         * class.c (inflate_generic_signature): Renamed to
29110         mono_class_inflate_generic_signature() and made it public.
29111         (my_mono_class_from_generic_parameter): New static function; if we
29112         don't already have the generic parameter's MonoClass, create a
29113         very simple one which is just used internally in the runtime and
29114         not passed back to managed code.
29116         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
29118         * metadata.h (MonoMethodSignature): Moved the
29119         `MonoGenericParam *gen_params' to the MonoMethodHeader.
29120         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
29122         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
29123         ves_icall_MonoMethod_GetGenericArguments(); this is now an
29124         interncall on the MonoMethod class, not on MethodInfo.
29125         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
29126         calling mono_reflection_bind_generic_method_parameters() directly.
29128         * loader.c (mono_method_get_signature): If this is a MethodSpec;
29129         return the already computed `method->signature'.
29130         (method_from_methodspec): New static function to load a method
29131         from a MethodSpec entry.
29132         (mono_get_method_from_token): Call the new method_from_methodspec()
29133         for MethodSpec tokens.  
29134         (mono_get_method_from_token): If we're a generic method, load the
29135         type parameters.
29137         * reflection.c (mono_image_get_memberref_token): Allow
29138         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
29139         table.
29140         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
29141         (mono_image_create_token): First check whether it's a generic
29142         method (so we'd need to create a MethodSpec), then do the other
29143         two alternatives.
29144         (mono_reflection_bind_generic_method_parameters): Return a
29145         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
29146         called directly from the interncall.
29148 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
29150         * reflection.c (load_public_key): Move loading of the public key
29151         into managed code.
29153         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
29155         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
29156         fields.
29158         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
29159         culture, hash_alg and public_key. Fixes #49555.
29161 2003-10-17  Martin Baulig  <martin@ximian.com>
29163         * class.h (MonoGenericInst): Moved this declaration here and added
29164         `MonoMethod *generic_method'.
29166         * icall.c
29167         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
29168         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
29170         * metadata.c (mono_metadata_type_equal): Two types of
29171         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
29172         index; ie. don't compare the address of the `MonoGenericParam'
29173         structure.
29174         (mono_metadata_load_generic_params): Removed the `MonoMethod
29175         *method' argument.
29177         * metadata.h (MonoGenericInst): Moved declaration to class.h.
29178         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
29180         * reflection.c (method_encode_signature): Encode the number of
29181         generic parameters.
29182         (encode_generic_method_sig): New static function.
29183         (method_encode_methodspec): New static function; creates an entry
29184         in the MethodSpec table for a generic method.
29185         (mono_image_get_methodspec_token): New static function.
29186         (mono_image_create_token): Call mono_image_get_methodspec_token()
29187         for generic methods.
29188         (mono_reflection_bind_generic_method_parameters): New public
29189         function.  Instantiates a generic method.
29191 2003-10-16  Martin Baulig  <martin@ximian.com>
29193         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
29194         *gen_params' here from MonoMethodHeader.
29196         * metadata.c (mono_metadata_parse_method_signature): If we have
29197         generic parameters, initialize `method->gen_params' and then set
29198         the correct `type->data.generic_param' in all the parameters.
29200 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
29202         * threads.c (mono_threads_get_default_stacksize): New function to 
29203         return the default stacksize.
29205         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
29206         termination of the finalizer thread, since the previous method had
29207         race conditions. Fixes #49628.
29209         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
29210         as for the other managed threads.
29212 2003-10-16  Martin Baulig  <martin@ximian.com>
29214         * class.c (inflate_generic_signature): Copy `generic_param_count'
29215         and `gen_params'.
29217         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
29218         New interncall.
29220         * metadata.c (mono_metadata_parse_method_signature): Actually set
29221         the `method->generic_param_count' here.
29222         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
29224 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
29226         * object.h: Add a new field to TypedRef to simplify the implementation
29227         of the REFANY opcodes in the JIT.
29229         * icall.c: Make use of the new field.
29231         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
29232         dynamically.
29234 2003-10-15  Martin Baulig  <martin@ximian.com>
29236         * class.c (mono_class_from_gen_param): Renamed to
29237         mono_class_from_generic_parameter() and moved most of the
29238         functionality from mono_reflection_define_generic_parameter()
29239         here; ie. we create a "real" class here.
29240         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
29241         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
29242         previously been called.
29244         * class.h (MonoGenericParam): Moved the declaration of this struct
29245         here from metadata.h and added `MonoMethod *method'.
29247         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
29248         interncall.
29250         * loader.c (mono_get_method_from_token): If we have any generic
29251         parameters, call mono_metadata_load_generic_params() to read them
29252         from the MONO_TABLE_GENERICPAR.
29254         * metadata.c (mono_metadata_load_generic_params): Added
29255         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
29257         * metadata.h (MonoMethodSignature): Replaced
29258         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
29259         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
29261         * reflection.c (mono_reflection_define_generic_parameter): Moved
29262         most of the functionality into the new
29263         mono_class_from_generic_parameter(); set the `method' field if
29264         we're a method parameter.       
29266 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
29268         * marshal.c (emit_struct_conv): if native size is 0
29269         emit no code.
29271 2003-10-14  Martin Baulig  <martin@ximian.com>
29273         * icall.c: The generics API has changed in the spec since it was
29274         added to System.Type; these modifications make it match the spec
29275         again.
29276         (ves_icall_Type_GetGenericParameters): Renamed to
29277         `ves_icall_Type_GetGenericArguments'.
29278         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
29279         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
29280         `ves_icall_MonoType_get_HasGenericArguments'.
29281         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
29282         `ves_icall_MonoType_get_IsGenericParameter'.
29283         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
29284         this is no interncall anymore.
29285         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
29286         `ves_icall_TypeBuilder_get_IsGenericParameter'.
29288 2003-10-14  Martin Baulig  <martin@ximian.com>
29290         * reflection.c (mono_reflection_bind_generic_parameters): Also
29291         inflate generic methods if we're reading the class from IL.
29293 2003-10-13  Martin Baulig  <martin@ximian.com>
29295         * reflection.c (mono_reflection_define_generic_parameter): This
29296         method isn't called directly from the icall anymore; take a
29297         `MonoReflectionAssemblyBuilder *' so we can use this for type and
29298         method generic parameters.
29299         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
29300         (method_builder_encode_signature): Encode generic parameters.
29301         (mono_image_get_method_info): Write generic params to the
29302         MONO_TABLE_GENERICPARAM table.
29304         * reflection.h (MonoReflectionMethodBuilder): Added
29305         `MonoArray *generic_params'.
29307         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
29309         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
29310         wrapper for mono_reflection_define_generic_parameter().
29311         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
29313 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
29315         * marshal.h: Add missing function to fix build.
29317         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
29318         the SetLastError pinvoke attribute.
29320         * marshal.c (mono_marshal_set_last_error): New helper function called
29321         by the generated code.
29322         
29323         * marshal.c (mono_mb_emit_branch): New helper function.
29325         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
29327         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
29328         classes as parameters and return values of delegates. Fixes #29256. 
29330 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
29332         * locales.c: use gint32 in non HAVE_ICU case
29334 2003-10-11  Martin Baulig  <martin@ximian.com>
29336         * mono-debug.c (mono_debug_add_method): Added a workaround for
29337         bug #48591.
29339 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
29341         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
29342         delegates passed to native code must use the STDCALL calling 
29343         convention. Fixes #35987.
29345 2003-10-10  Martin Baulig  <martin@ximian.com>
29347         * class.c (inflate_generic_type): If we're inflating for a generic
29348         type instance (and not for a generic method), return
29349         MONO_TYPE_MVAR unchanged.
29351 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29353         * string-icalls.c: Join ignores null strings in the source array.
29354         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
29355         * threads.c: GetAvailableTheads is slightly more accurate.
29357 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
29359         * threads.h threads.c : add mono_threads_set_default_stacksize
29360         and pass default to CreateThread calls.
29362 2003-10-09  Dick Porter  <dick@ximian.com>
29364         * icall.c:
29365         * locales.h:
29366         * locales.c: Internal calls for constructing CultureInfo and
29367         related objects from libicu (if its available.)
29369 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
29371         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
29373 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29375         * threadpool.c: added an argument to async_invoke_thread that is the
29376         item to process, pass the MonoAsyncResult to the thread start function
29377         when creating a new thread. This way we don't need to acquire any lock
29378         when we're creating a new thread. Readded a semaphore for faster
29379         response times (instead of that Sleep i added).
29381 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
29383         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
29384         get daylight change dates better on Windows, fix handling
29385         of platforms without tm_gmtoff.
29387 2003-10-06  Martin Baulig  <martin@ximian.com>
29389         * class.c (inflate_generic_method): Renamed to
29390         mono_class_inflate_generic_method() and made public.
29391         (mono_class_init): Don't inflate the generic methods here.
29392         (mono_class_from_generic): Added `gboolean inflate_methods'
29393         argument.  Inflate the methods here.
29395         * loader.c (mono_method_get_param_names): Ignore instances of
29396         generic types for the moment.
29398         * reflection.c (fixup_method): Added support for inflated methods.
29399         (mono_image_create_token): Use mono_image_get_methodref_token()
29400         for inflated methods.
29401         (mono_custom_attrs_from_param): Ignore instances of generic types
29402         for the moment.
29403         (mono_reflection_bind_generic_parameters): New public function.
29404         Moved all the functionality from
29405         ves_icall_Type_BindGenericParameters() here and added support for
29406         dynamic types.
29407         (mono_reflection_define_generic_parameter): Initialize
29408         `klass->methods' here.
29410         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
29411         functionality into mono_reflection_define_generic_parameter().
29412         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
29413         TypeBuilder, return that TypeBuilder.
29415 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29417         * appdomain.c: removed mono_delegate_semaphore.
29419         * threadpool.c:
29420         (mono_thread_pool_add): moved hash table creation inside and the thread 
29421         creation outside of the critical region.
29422         (mono_thread_pool_finish): removed obsolete code.
29423         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
29424         continue or exit the thread depending on the queue.
29426 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
29428         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
29429         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
29430         handle more bool marshalling options
29432 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
29434         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
29435         arrays of structs. Also add a more descriptive error message when
29436         a structure member is marshalled as LPArray.
29438 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
29440         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29441         marshalling arrays of complex types. Fixes #29098. Also remove an
29442         usused and incomplete function.
29444 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29446         * gc.c: report heap_size - free_bytes as total memory allocated
29447         (bug#49362).
29449 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
29451         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
29452         fix timezone handling problems on Windows.
29453         
29454         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
29455         asserts when the year is outside the range handled by ms the functions.
29457         * class.c (setup_interface_offsets): If the class is an interface,
29458         fill out its interface_offsets slot.
29460 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29462         * threadpool.c: mark threadpool threads as background.
29464 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
29466         * decimal.c - define DECINLINE to nothing if not using GCC
29468 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
29470         * assembly.c: More refcount fixes.
29472 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29474         * string-icalls.c: if we're not trimming, return the same string.
29475         When not splitting, don't create a new string.
29477 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29479         * image.c:
29480         (mono_image_open): increment the ref_count inside the critical section.
29482 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
29484         * image.c (mono_image_open): Fix reference counting bug.
29486 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
29488         * marshal.c (mono_marshal_type_size) struct alignment changed for 
29489         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
29490         64bits. Avoid leak in mono_marshal_get_native_wrapper when
29491         mono_lookup_pinvoke_call throws.        
29493 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
29495         * reflection.c (mono_reflection_parse_type): Fix #49114.
29497         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
29498         temporary workaround for cygwin header problem.
29500         * object.c (mono_object_isinst): Synchronize this with the code
29501         generated by the JIT for casts.
29503 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
29505         * reflection.c (encode_type): Fix #38332.
29507 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
29509         * marshal.c (mono_marshal_method_from_wrapper): New function to return
29510         the original method from the wrapper method.
29512 2003-09-25  Martin Baulig  <martin@ximian.com>
29514         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
29515         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
29516         (ves_icall_Type_get_IsGenericInstance): New interncall.
29518 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
29520         * object.c: fix cast warning in big endian code.
29522 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
29524         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
29525         
29526 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29528         * assembly.c: don't call check_env from mono_assembly_load. It's
29529         already done once in mono_assemblies_init and may cause headaches when
29530         multiple threads are loading assemblies.
29532 2003-09-19  Martin Baulig  <martin@ximian.com>
29534         * reflection.c (mono_reflection_define_generic_parameter): Don't
29535         allocate `klass->methods', set `klass->flags' to
29536         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
29538 2003-09-18  Martin Baulig  <martin@ximian.com>
29540         * class.c (mono_class_init): Don't create `class->methods' if it's
29541         already initialized.
29543         * metadata.c (mono_metadata_load_generic_params): Make this
29544         actually work.
29546         * reflection.c (mono_reflection_define_generic_parameter): Set
29547         parent class and interfaces from the constraints.
29549         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
29550         to keep this struct in sync with the declaration in TypeBuilder.cs.
29552 2003-09-17  Martin Baulig  <martin@ximian.com>
29554         * metadata.h (MonoType): Replaced the data's `int type_param'
29555         field with `MonoGenericParam *generic_param'.
29556         (MonoGenericParam): Added `MonoClass *klass'.
29558         * class.c (mono_class_from_gen_param): Removed the
29559         `MonoImage *image' and `int type_num' arguments.
29561         * metadata.c (mono_metadata_parse_generic_param): New static
29562         method; creates a MonoGenericParam which just contains the index.
29563         (do_mono_metadata_parse_type): Call
29564         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
29565         MONO_TYPE_MVAR.
29567         * reflection.c (mono_image_typedef_or_ref): Generic type
29568         parameters may be in the same assembly, but never use a typedef
29569         for them.
29570         (mono_reflection_define_generic_parameter): We're now creating a
29571         "real" class for the type parameter; it's now safe to call
29572         mono_class_from_mono_type() on the class'es type, it'll do the
29573         right thing.
29575 2003-09-16  Martin Baulig  <martin@ximian.com>
29577         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
29578         `symfile->range_entry_size' and `symfile->class_entry_size' here;
29579         the `symfile' data structure must be fully initialized before it
29580         gets added to the table.
29582 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
29584         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
29586         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
29587         class init trampolines.
29589 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
29591         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
29592         to the built-in profiler to turn off time and allocation profiling
29593         respectively.
29595 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
29597         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
29598         g_direct_equal.
29600         * debug-helpers.c (mono_method_full_name): Print the wrapper type
29601         in human readable form.
29603 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
29605         * reflection.c icall.c: Fixed warnings.
29607         * image.c (load_class_names): Use a temporary hash table to hold the
29608         namespaces in order to avoid doing many string comparisons.
29610         * image.h: Fix typo.
29612         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
29613         Pass NULL instead of g_direct_equal to the GHashTable constructor 
29614         since the NULL case is short-circuited inside g_hash_table_lookup, 
29615         leading to better performance.  
29617         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
29618         obtain the first custom attribute for a given index. Depends on the
29619         CustomAttribute table being sorted by the parent field.
29621         * reflection.c (mono_custom_attrs_from_index): Use the new function 
29622         for better performance.
29624 2003-09-07  Martin Baulig  <martin@ximian.com>
29626         * class.c (mono_class_init): If we're a generic instance, inflate
29627         all our methods instead of loading them from the image.
29628         (mono_class_from_generic): Set `class->methods = gklass->methods'.
29630 2003-09-07  Martin Baulig  <martin@ximian.com>
29632         * mono-debug-debugger.c: Added support for constructors.
29634 2003-09-06  Martin Baulig  <martin@ximian.com>
29636         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
29637         New interncall.
29639         * reflection.c (mono_reflection_setup_generic_class): Call
29640         ensure_runtime_vtable() to create the vtable.
29642 2003-09-05  Martin Baulig  <martin@ximian.com>
29644         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
29645         MONO_TYPE_MVAR.
29647 2003-09-04  Martin Baulig  <martin@ximian.com>
29649         * reflection.c (mono_reflection_define_generic_parameter): Generic
29650         parameters start with zero.
29652 2003-09-04  Martin Baulig  <martin@ximian.com>
29654         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29656         * reflection.h (MonoReflectionGenericParam): New typedef.
29657         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
29658         the generic parameters from the managed TypeBuilder.
29660         * reflection.c (mono_reflection_define_generic_parameter): New function.
29661         (mono_reflection_create_runtime_class): Encode generic parameters.
29662         (mono_reflection_setup_generic_class): New function; this is
29663         called after adding adding all generic params to the TypeBuilder.
29664         (encode_type): Added MONO_TYPE_VAR.
29666 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
29668         * class.h class.c (mono_class_needs_cctor_run): Moved this method
29669         here from the JIT.
29671         * assembly.h assembly.c: Moved the AOT loading code into an assembly
29672         load hook.
29674 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
29676         * reflection.h reflection.c class.h class.c: Delete duplicate 
29677         definition of mono_type_get_name () from reflection.c and export the
29678         one in class.c.
29680         * class.c: Class loading fixes from Bernie Solomon 
29681         (bernard@ugsolutions.com).
29683         * reflection.c: Endianness fixes from Bernie Solomon 
29684         (bernard@ugsolutions.com).
29685         
29686 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
29688         * assembly.h assembly.c: Define a file format version for AOT
29689         libraries.
29690         
29691         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
29693         * appdomain.h (MonoJitInfo): New field to determine whenever the
29694         code is domain neutral.
29695         
29696 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
29698         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
29700 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
29702         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
29703         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
29704         Avoid caching the result since strings must be domain specific. Fixes
29705         #48050.
29707 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
29709         * marshal.c (mono_marshal_init): Make this callable multiple times
29710         since it is hard to find a correct place to call it.
29712         * object.c (mono_runtime_class_init): Execute static constructors in
29713         the correct appdomain.
29715         * image.c (build_guid_table): Handle the case when multiple images have
29716         the same GUID.
29718 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29720         * icall.c: added a couple of icalls for System.Web.
29722 2003-08-28  Martin Baulig  <martin@ximian.com>
29724         * icall.c (ves_icall_Type_BindGenericParameters): Use
29725         `klass->generic_inst' instead of `&klass->byval_arg' in the
29726         mono_type_get_object() call.  The returned type must be
29727         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
29729 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
29731         * NOTES: New file.
29733         * object.c (mono_class_proxy_vtable): Make it thread safe.
29735         * pedump.c: Fix warning.
29737         * object.c appdomain.h: Get rid of metadata_section. 
29738         It is no longer needed and it was causing deadlocks with domain->lock.
29740         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
29742 2003-08-26  Martin Baulig  <martin@ximian.com>
29744         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
29746 2003-08-26  Martin Baulig  <martin@ximian.com>
29748         * pedump.c (main): Call mono_metadata_init(),
29749         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
29750         and mono_loader_init().
29752 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
29754         * loader.h: Add missing include to fix build.
29756         * image.h: mono_image_load_references is no more.
29758         * assembly.c: Reworked assembly loading to make it really thread safe.
29759         After these changes, the assembly returned by mono_assembly_open is
29760         fully initialized, i.e. all its references assemblies are loaded.
29762         * assembly.c (mono_image_load_references): Renamed to 
29763         mono_assembly_load_references, and made private, since clients no
29764         longer need to call it.
29766         * class.c: Removed calls to mono_assembly_load_references, since it was
29767         a source of deadlocks.
29769         * loader.h loader.c class.h class.c: Protect data structures using a 
29770         new lock, the loader lock.
29772         * class.c (mono_class_setup_vtable): Create temporary hash tables and
29773         GPtrArrays only when needed.
29775         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
29776         into empty structures by mcs. Fixes pinvoke7.cs.
29777         
29778         * domain.c (mono_init): Call a new initialization function.
29780         * appdomain.c (mono_runtime_init): Call the new initializer function
29781         of the marshal module.
29783         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
29784         inserted into empty structures by mcs. Fixes pinvoke7.cs.
29786         * marshal.h marshal.c: Added locks around the wrapper caches to make
29787         this module thread safe.
29789         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
29790         this argument. Fixes pinvoke1.exe.
29792 2003-08-25  Lluis Sanchez <lluis@ximian.com>
29794         * object.h: Added call_type field to MonoMethodMessage and the corresponding
29795         enumeration of values. Removed fields to store remote call output values in
29796         MonoAsyncResult. Not needed any more.
29797         * object.c: Initialize call_type and async_result fields in mono_message_init.
29798         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
29799         dispatching the message.
29800         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
29801         async call to finish. To do it use a message with EndInvoke call type.
29803 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
29805         * loader.h loader.c (mono_method_hash_marhal_info): New function which
29806         determines whenever a method has marshalling info.
29808 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29810         * assembly.c: fix the build on windows.
29812 2003-08-22 Lluis Sanchez <lluis@ximian.com>
29814         * object.cs: Fixed bug #47785.
29816 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
29818         * string-icalls.c (StringReplace): If their are no occurances of
29819         the old string found return a reference to the supplied
29820         string. This saves some memory and matches MS behavoir.
29821         
29822 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29824         * socket-io.c: fixed compilation for systems that define AF_INET6
29825         and don't define SOL_IP/SOL_IPV6.
29827 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
29829         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
29830         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
29832         * rawbuffer.c rawbuffer.h: Make this module thread safe.
29834         * domain.c: Make this module thread safe.
29836         * domain.c (mono_init): Call new initialization function.
29838         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
29839         reference types too. Fixes #38812.
29841         * image.c (mono_image_init): Fixed warnings.
29843         * class.c (mono_class_from_typeref): Handle assembly load failure
29844         correctly.
29846         * appdomain.c (add_assemblies_to_domain): Handle the case when
29847         the references of an assembly are not yet loaded.
29849         * metadata.c image.c assembly.c: Moved initialization of global
29850         variables to a separate function called at startup since lazy 
29851         initialization of these variables is not thread safe.
29852         
29853         * image.c assembly.c: Made this module thread safe by adding locks in 
29854         the appropriate places.
29856         * domain.c (mono_init): Call the new initialization functions of the
29857         three modules.
29859 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
29861         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
29862           make a direct call. It is proxy's work to make the call asynchronous.
29863           mono_delegate_end_invoke(): If the targe is a proxy, just collect
29864           the return values.
29865         * object.cs: mono_method_call_message_new(): read AsyncResult and
29866           state object from parameters list, if this info is requested.
29867         * object.h: Added fields to store remote call output values in
29868           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
29870 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29872         * object.h: add needed fields to MonoThread.
29873         * threads.c, threads.h: allow registering a function to cleanup data
29874         allocated per thread by the JIT.
29876 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29878         * loader.h: portability fix by Bernie Solomon
29879         * <bernard@ugsolutions.com>.
29881 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29883         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29884         return a MonoArray. This simplifies the code and also ensures that
29885         the cache allways contains an object reference as a value.
29887         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29888         function.
29890 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29892         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29893         fixes a problem with byte ordering when getting the address family for
29894         a socket.
29896 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29898         * .cvsignore: Added monosn.
29900         * reflection.h reflection.c loader.c: Added support for parameter
29901         marshalling to dynamically created types. Fixes #47295.
29903 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29905         * rand.c: remove useless warnings.
29907 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29909         * class.c: implemented ldtoken for methods and fieldrefs.
29911 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29913         * threadpool.c: when mono_async_invoke was called, no one took care of
29914         monitoring the queue. So if the method invoked took some time and we
29915         got new async invoke requests after 500 ms (the thread created waited
29916         that long in WaitForSingleObject), the new async invoke was not called
29917         until the previous one finished.
29919         This is fixed now. Thanks to Totte for helping with it.
29921 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29923         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29925 2003-08-11  Martin Baulig  <martin@ximian.com>
29927         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29929 2003-08-06  Martin Baulig  <martin@ximian.com>
29931         * mono-debug-debugger.c: Added support for static fields,
29932         properties and methods.
29934 2003-08-06  Martin Baulig  <martin@ximian.com>
29936         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29937         make this work for applications with multiple application domains.
29939 2003-08-04  Martin Baulig  <martin@ximian.com>
29941         * mono-debug-debugger.c: Completely reworked the type support; the
29942         most important thing is that we're now just using one single
29943         `MonoType' instance per type.
29945 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29947         * mono-endian.h, mono-endian.c, icall.c: Added icall
29948         ves_icall_System_Double_AssertEndianity to assert double word endianity
29949         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29951 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29953         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29954         support, icalls and fixes.
29956 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29958         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29959         classes that are a punctuation character in .NET is not the same a
29960         g_unichar_ispunct.
29962 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29964         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29966 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29968         * icall.c: Add new MemCopy internalcall.
29969         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29970         Simplified code; It is not necessary to handle all the cases here,
29971         as the C# code takes care of it.  Only handle the case of the name
29972         resource embedded into the assembly.
29974         Changed signature to return the data pointer and the size of the
29975         data. 
29977 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29979         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29980         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29982 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29984         * socket-io.c: ignore EINTR error in select.
29986 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29988         * class.h, class.c: removed unused subclasses field in MonoClass.
29990 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29992         * icall.c: improve fix of get_base_definition(). If the parent class
29993           doesn't have the mehod, look at the parent of the parent.
29994         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29995           to check if a parameter is an in or out parameter
29996           (PARAM_ATTRIBUTE_IN is not set by default).
29997           mono_method_return_message_restore(): Use mono_class_value_size to
29998           get the size of a value type. mono_type_stack_size (parameterType)
29999           does not return the correct value if parameterType is byRef.
30000           mono_load_remote_field(), mono_load_remote_field_new(),
30001           mono_store_remote_field(), mono_store_remote_field_new():
30002           raise exception if the remote call returns an exception.
30004 2003-07-28  Martin Baulig  <martin@ximian.com>
30006         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
30007         method.  This is a wrapper around mono_runtime_invoke() which
30008         boxes the instance object if neccessary.
30010 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30012         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
30013         metadata.h, row-indexes.h, verify.c: first cut of generics support.
30015 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30017         * icall.c: disable mcs bug workaround.
30019 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
30021         * object.c (mono_runtime_class_init): Take the metadata_section
30022         mutex before obtaining the domain mutex.
30024         * appdomain.h: Added definition of metadata_section mutex here. 
30026         * object.c: define metadata_mutex here.
30028 2003-07-24  Ravi Pratap  <ravi@ximian.com>
30030         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
30031         fixed.
30033 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
30035         * reflection.c: Fix bug #46669
30037 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30039         * exception.c:
30040         * exception.h:
30041         * icall.c:
30042         * object.h: fill in the type name for TypeLoadException.
30044 2003-07-23  Ravi Pratap  <ravi@ximian.com>
30046         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
30047         relationship between TypeBuilders while compiling corlib) and bug
30048         45993 (Array types returned from the runtime while compiling
30049         corlib were from the loaded corlib).
30051 2003-07-22  Martin Baulig  <martin@ximian.com>
30053         * mono-debug-debugger.c: Reworked the type support a bit more;
30054         distinguish between types and classes.
30056 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
30058         * icall.c: add IsArrayImpl icall.
30060 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
30062         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
30063         initializing real_size only once. Also fix bug #46602.
30065 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
30067         * object.c: Renamed mono_metadata_section to metadata_section.
30069 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
30071         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
30072           empty array if the type is an array. Fixed.
30073           ves_icall_MonoMethod_get_base_definition: if the base method
30074           is abstract, get the MethodInfo from the list of methods of
30075           the class.
30076         * reflection.c: ParameterInfo.PositionImpl should be zero-based
30077           and it was 1-based. Fixed in mono_param_get_objects.
30079 2003-07-20  Martin Baulig  <martin@ximian.com>
30081         * mono-debug.h: Set version number to 31.
30082         (mono_debug_init): Added `MonoDomain *' argument.
30084         * mono-debug-debugger.c: Reworked the type support; explicitly
30085         tell the debugger about builtin types; pass the `klass' address to
30086         the debugger.
30088 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
30090         * image.c: Allow new metadata tables to be loaded without a
30091         warning. Also update the warning message to give the new constant value.
30092                 
30093 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
30095         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
30096         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
30097         array type representation changes.
30099 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
30101         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
30102         on Environment.Exit () call.
30104 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30106         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
30107         requires a matching corlib.
30109 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30111         * Changelog: My editor decided to add a CR to each line. Sorry about that.
30112           Committed again without the CRs.
30113         
30114 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30116         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
30117           getting it from the "this" socket instance. Did not work
30118           if the socket is a subclass of Socket.
30119           Also fixed bug #35371.
30121 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30123         * metadata.c: fixed size for TypedByRef.
30124         * loader.c: when searching for a method, consider the vararg amrker.
30125         * unicode.c, decimal.c: constify some arrays.
30127 2003-07-15  Dick Porter  <dick@ximian.com>
30129         * socket-io.c: Fixed compilation for gcc < 3.2.
30131         Fixed compilation for machines that don't have AF_INET6 (thanks to
30132         Bernie Solomon <bernard@ugsolutions.com> for that part.)
30134         Fixed compile warnings.
30135         
30136         Fixed formatting and line endings.
30138 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
30140         * socket-io.h:
30141         * socket-io.c: Added IPv6 support.
30143 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
30145         * class.c (mono_class_is_assignable_from): New function to implement
30146         the is_assignable_from logic. Used by mono_object_isinst, 
30147         Type::IsAssignableFrom () and the interpreter.
30149         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
30150         Object, even interfaces.
30151         
30152         * object.c (mono_object_isinst): Implement in terms of 
30153         is_assignable_from.
30155         * icall.c (ves_icall_type_is_assignable_from): New icall.
30157 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
30159         * domain.c (foreach_domain): fix compiler warning.
30161 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
30163         * image.c (load_metadata_ptrs): use g_strndup because strndup is
30164         not available on all plattforms
30166 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
30168         * image.h image.c: Store the metadata version string in MonoImage.
30169         * icall.c: New icall to retrieve the image version.
30170         * reflection.c (create_dynamic_image): Fill in the image version field
30171         * reflection.c (build_compressed_metadata): Use the image version
30172         from the image structure.
30174 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30176         * appdomain.c: modified comment.
30177         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
30178         That will be its last iteration when mono_gc_cleanup is called from
30179         mono_runtime_cleanup and before the domain is unloaded.
30181         Fixes bug #45962.
30183 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
30185         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
30186         attributes.
30188 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30190         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
30191         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
30192         Bernie Solomon <bernard@ugsolutions.com>.
30194 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30196         * object.c, object.h: provide mono_object_new_fast() for faster
30197         allocation in some special cases.
30199 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
30201         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
30202         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
30204 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
30206         * threadpool.c: fix leaks.
30208 2003-07-01  Dick Porter  <dick@ximian.com>
30210         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
30211         using MonoGHashTables.  Fixes threadpool bug posted to list.
30213 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30215         * image.h, image.c: added support to load an assembly from a byte array.
30216         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
30217         assembly bundle support.
30219 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
30221         * threadpool.c (mono_thread_pool_add): keep a reference to the
30222         AsyncResult to prevent GC
30224 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30226         * class.c: leak fix.
30228 2003-06-25  Dick Porter  <dick@ximian.com>
30230         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
30231         for the async object, the WaitHandle object will close the handle.
30232         Fixes bug 45321.
30234 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30236         * class.c: in mono_array_class_get (), lookup from the hash with the
30237         same type we insert: this works around a bug in
30238         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
30239         lluis. The real fix will have to wait for after the release.
30241 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30243         * icall.c: fix memory leak when getting type members.
30245 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
30247         * reflection.c: added more pubtoken special cases.
30249 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
30251         * class.c: handle field offset correctly when class size
30252         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
30254 2003-06-20  Martin Baulig  <martin@ximian.com>
30256         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
30257         *image' field.
30259 2003-06-20  Martin Baulig  <martin@ximian.com>
30261         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
30263 2003-06-20  Martin Baulig  <martin@ximian.com>
30265         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
30266         just distinguish between variables in registers and variables at
30267         an offset relative to a register.
30269 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30271         * icall.c: #ifdef out latest changes until mcs is fixed.
30273 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30275         * icall.c: return members in metadata order.
30277 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
30279         * icall.c: avoid infinite loop in GetTimeZoneData.
30281 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
30283         * icall.c: added Marshal.Prelink/All icalls.
30285 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
30287         * object.c, object.h: fix warnings and do some overflow checking
30288         when creating arrays.
30290 2003-06-17  Dick Porter  <dick@ximian.com>
30292         * file-io.h:
30293         * file-io.c: File attributes need to be tweaked slightly when
30294         passed from the managed to the w32 world.
30296 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
30297         * profiler.h profiler-private.h profiler.c: Rework last patch
30298         based on suggestion by Paolo.
30299         
30300 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
30302         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
30303         instruction level coverage data collection.
30304         * profiler.h profiler.c (: Added new callback function which can be
30305         used by the profiler to limit which functions should have coverage
30306         instrumentation.
30307         * profiler.c (mono_profiler_load): Call g_module_build_path to
30308         generate the file name of the profiler library.
30310 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30312         * profiler.c, profiler.h, profiler-private.h: added basic block 
30313         coverage profiling API.
30315 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
30317         * reflection.c (mono_reflection_create_runtime_class): Add support
30318         for events in dynamically generated code.
30320         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
30321         not allocated.
30323 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30325         * icall.c: when getting timezone info, return reasonable values if we
30326         can't get the actual data.
30328 2003-06-14  Dick Porter  <dick@ximian.com>
30330         * threads.c (start_wrapper): Remove the reference to the thread
30331         object in the TLS data, so the thread object can be finalized.
30332         This won't be reached if the thread threw an uncaught exception,
30333         so those thread handles will stay referenced :-( (This is due to
30334         missing support for scanning thread-specific data in the Boehm GC
30335         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
30337 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
30339         * reflection.c: ensure streams and tables are first allocated with
30340         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
30342 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30344         * icall.c: fixed GetElementType for byrefs (bug# 44792).
30346 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
30348         * reflection.c (mono_reflection_create_runtime_class): Add support for
30349         properties to dynamically created classes.
30350         * reflection.c: Fix a few places where non-MonoObjects were inserted
30351         into the tokens hashtable.
30353 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30355         * object.c: some support to handle out of memory exceptions.
30357 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
30359         * marshal.c (mono_marshal_get_native_wrapper): support reference
30360         return types
30362 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30364         * object.h, object.c: more portability stuff from Bernie Solomon.
30365         Unexport mono_object_allocate(). Added mono_object_unbox ().
30366         Set exitcode when an unhandled exception is thrown.
30368 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
30370         * marshal.c (mono_marshal_get_native_wrapper): use custom
30371         marshaler for return types.
30373 2003-06-10  Dick Porter  <dick@ximian.com>
30375         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
30376         ip_mreq is available
30378 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
30380         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
30381         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
30382         by Bernie Solomon <bernard@ugsolutions.com>.
30384 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
30386         * gc.c (mono_gc_init): Avoid error message on shutdown when
30387         GC_DONT_GC=1 is used.
30389         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
30390         New icall to return the GUID of a module.
30392 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30394         * class.c: ensure instance size always includes the parent's size
30395         even whem class size is set explicitly (fixes bug#44294).
30397 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30399         * profiler.h, profiler.c: made the simple profiler thread-safe,
30400         get more accurate timing info. Allow the loading of an
30401         externally-developed profiler module.
30403 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
30405         * marshal.c (mono_marshal_get_native_wrapper): improved
30406         class/byref arguments.
30407         (mono_marshal_get_native_wrapper): better string marshaling support.
30409 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
30411         * class.c: ensure .pack and .size are handled correctly and
30412         simplified layout of static fields.
30414 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
30416         * appdomain.c
30417         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
30419         * loader.c (mono_lookup_pinvoke_call): look for modules in the
30420         current directory (fix bug 44008)
30422 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
30424         * marshal.c (mono_marshal_get_native_wrapper): started support for
30425         custom marshalers.
30426         (mono_delegate_to_ftnptr): consider marshalling specifications
30428 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
30430         * reflection.c, reflection.h: emit custom marshal info.
30432 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30434         * object.c: free the GError.
30435         * icall.c: added CloseEvent_internal.
30436         * threads.[ch]:
30437         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
30438         call.
30440 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
30442         * loader.c (mono_method_get_signature): Add support for dynamic
30443         assemblies.
30445 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
30447         * reflection.c: fixed bug #43905.
30449 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30451         * class.c, domain.c, icall.c, metadata.h, object.h: support for
30452         handling TypedReference and ArgIterator.
30453         * loader.c, loader.h: added function to get signature at call site.
30455 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30457         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
30458         data readonly. Buglets and warning fixes. Some MethodSpec support.
30460 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30462         * class.h, class.c, object.c: remove relative numbering support.
30464 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
30466         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
30467         free the string, until we get a chance to fix Gtk#
30469 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30471         * marshal.c: revert last patch.
30473 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
30475         * icall.c: updates for new mono_class_vtable() not calling
30476         the type constructor anymore.
30478 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30480         * object.h, object.c: separate vtable creation from type
30481         initialization. Make running the .cctor thread safe.
30483 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
30485         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
30487 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
30489         * loader.c (mono_get_method): consider calling convention
30491 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
30493         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
30494         to return the invisible global type for a module.
30496         * reflection.c (mono_image_build_metadata): Emit global fields too.
30498 2003-05-20  Peter Williams  <peterw@ximian.com>
30500         * loader.c (mono_lookup_internal_call): Add a few newlines.
30502 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
30504         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
30505         literal strings.
30507         * appdomain.c (set_domain_search_path): Recalculate search path when
30508         AppDomainSetup.PrivateBinPath changes.
30510         * object.c (mono_class_compute_gc_descriptor): It turns out some
30511         parts of the class libs (like System.Thread) holds pointers to
30512         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
30513         to treat native int a pointer type here.
30514         
30515 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
30517         * appdomain.h, domain.c: add hashtable for jump target resolution.
30519 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
30521         * reflection.h reflection.c icall.c: Added new icalls 
30522         GetManifestResourceInfoInternal, GetModulesInternal and support
30523         infrastructure.
30525 2003-05-16  Dick Porter  <dick@ximian.com>
30527         * icall.c:
30528         * file-io.h:
30529         * file-io.c: Implement System.IO.MonoIO::GetTempPath
30531 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
30533         * object.c: mono_store_remote_field: little fix to previous patch.
30535 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30537         * class.c: add constructors to array classes.
30538         * icall.c: special case array construction for InternalInvoke (),
30540 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
30542         * class.h class.c reflection.c object.c: Added support for field
30543         defaults in dynamically generated classes.
30545 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
30547         * reflection.c: properly encode charset for ddlimport.
30549 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
30551         * threads.c: allow compiling without GC.
30553 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30555         * appdomain.h, object.c, object.h, threads.c, threads.h: added
30556         handling of thread static data.
30558 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30560         * reflection.h, reflection.c: added mono_custom_attrs_free ().
30562 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
30564         * class.c (mono_array_class_get): always set the serializable flags
30565         (mono_array_class_get): always set the SEALED attribute for array types
30567 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
30569         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
30570         attributes (fix for bug 42021).
30572 2003-05-12  Dick Porter  <dick@ximian.com>
30574         * gc.c: Don't run finalizers when the finalizer thread is
30575         finishing up, because the default domain has already been
30576         destroyed.
30578 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
30580         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
30581         value is null, we should throw an exception.   This is slightly
30582         different than the other conventions used for the constructor.
30584 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30586         * socket-io.c: fixed windows build.
30588 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30590         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
30592 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
30594         * object.c (mono_string_new_wrapper): Compatibility fix for MS
30595         compilers.
30597 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
30599         * class.c (mono_class_layout_fields): Add experimental GC aware
30600         auto layout facility. Requires class library changes to work correctly.
30602         (mono_class_setup_vtable): Avoid overriding explicit interface
30603         method implementations. Fixes iface3.exe test.
30605         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
30606         object reference.
30607         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
30608         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
30610         * metadata.h: Add new type classification macro which determines
30611         whenever the type holds an object reference.
30613 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
30615         * marshal.c (mono_marshal_get_native_wrapper): cleanups
30617 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
30619         * gc.c (finalizer_thread): Work around a GC bug.
30621 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
30623         * marshal.c (emit_struct_conv): allow unions
30625         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
30627 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
30629         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
30631 2003-05-06  Martin Baulig  <martin@ximian.com>
30633         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
30635 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30637         * socket-io.c:
30638         (Select_internal): allow NULLs, don't create arrays if not needed.
30639         Coupled with Socket.cs changes.
30641         * threadpool.c:
30642         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
30643         register a finalizer for it that will close the semaphore handle. This
30644         fixes the leak and make Lupus' test run with > 4080 loops.
30646 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
30648         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
30649         Jerome Laban (bug #42287)
30651 2003-05-02  Martin Baulig  <martin@ximian.com>
30653         * debug-mono-symfile.h
30654         (MonoSymbolFile): Moved declaration into mono-debug.h.
30655         (MonoDebugMethodJitInfo): Likewise.
30656         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
30657         argument.
30658         (_mono_debug_address_from_il_offset): Take a
30659         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
30661         * mono-debug.h
30662         (MonoDebugDomainData): New struct.
30663         (mono_debug_get_domain_data): New function.
30664         (mono_debug_add_method): Take an additional `MonoDomain *'
30665         argument.
30666         (mono_debug_source_location_from_address): Likewise.
30667         (mono_debug_il_offset_from_address): Likewise.
30668         (mono_debug_address_from_il_offset): Likewise.
30670 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
30672         * reflection.c: one more check for null type in custom attrs.
30674 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30676         * reflection.c: avoid warning (comparison is always false due to limited
30677         range of data type).
30679 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30681         * icall.c: throw an exception in Type.GetField if the argument 'name'
30682         is NULL.
30684 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
30686         * reflection.c: fixed handling of enums in named arguments to custom
30687         attributes (bug #42123).
30689 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
30691         * reflection.c: use the right array element type and handle
30692         a null for a Type argument, too.
30694 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
30696         * reflection.c: handle arrays as arguments to custom attributes.
30698 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30700         * reflection.c: handle a string value in a custom attr
30701         ctor that takes an object.
30703 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
30705         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
30706         (fix bug #42063)
30708 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
30710         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
30712 2003-04-27  Martin Baulig  <martin@ximian.com>
30714         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
30715         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
30716         MONO_DEBUGGER_EVENT_BREAKPOINT.
30717         (mono_breakpoint_trampoline_code): Removed.
30718         (mono_debugger_event_handler): The last argument is now a
30719         `guint32'.
30720         (mono_debugger_insert_breakpoint_full): Removed the
30721         `use_trampoline' argument.
30722         (mono_debugger_method_has_breakpoint): Likewise.
30723         (mono_debugger_trampoline_breakpoint_callback): Renamed to
30724         mono_debugger_breakpoint_callback(); take the method and
30725         breakpoint number as arguments.
30727 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
30729         * metadata.c: fix off by one when loading parameters attributes.
30731 2003-04-24  Martin Baulig  <martin@ximian.com>
30733         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
30735 2003-04-24  Martin Baulig  <martin@ximian.com>
30737         * mono-debug-debugger.c: Moved all code which interacts with the
30738         Mono Debugger here.
30740         * debug-mono-symfile.c: This code now just deals with the symbol
30741         file itself, the debugger code is now in mono-debug-debugger.c.
30743 2003-04-23  Martin Baulig  <martin@ximian.com>
30745         * mono-debug.c (mono_debug_source_location_from_il_offset):
30746         New method; like mono_debug_source_location_from_address(), but
30747         takes an IL offset instead of a machine address.
30749 2003-04-23  Martin Baulig  <martin@ximian.com>
30751         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
30752         `line' field; this is now computed by the debugger.
30754 2003-04-23  Martin Baulig  <martin@ximian.com>
30756         * mono-debug.[ch]: New files.  This is the new debugging interface.
30758         * mono-debug-debugger.[ch]: New files.  Moved all code which
30759         interacts with the Mono Debugger here.
30761 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
30763         * domain.c (mono_init): initialize mono_defaults.monitor_class
30765 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
30767         * reflection.c (method_encode_code): Add a spicy exception to help
30768         future compiler authors.
30770 2003-04-21  Martin Baulig  <martin@ximian.com>
30772         * icall.c
30773         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30774         Make this work with relative pathnames; g_filename_to_uri() needs
30775         an absolute filename.
30777 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
30779         * icall.c: Track name changes in Object and ValueType.
30781 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
30783         * metadata.c (mono_type_stack_size): size should be a multiple of
30784         sizeof (gpointer)
30786 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30788         * gc.c:
30789         (internal_domain_finalize): moved into mono_domain_finalize. No need
30790         to create another thread because the finalizers will be run in the
30791         finalizer thread.
30792         
30793         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
30794         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
30795         to be run (MS does this too).
30797 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
30799         * object.c (mono_class_compute_gc_descriptor): Update comment.
30801         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
30803         * image.h: Add synchronized wrapper cache.
30805         * image.c (do_mono_image_open): Initialize cache.
30807         * reflection.c (create_dynamic_mono_image): Initialize cache.
30809 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30811         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
30812         ves_icall_System_Buffer_ByteLengthInternal.
30814 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30816         * reflection.c: setup klass->nested_in earlier. Allow
30817         a dash in the assembly name.
30819 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
30821         * metadata.c (mono_type_to_unmanaged): dont access
30822         type->data.klass for MONO_TYPE_OBJECT
30823         (mono_type_to_unmanaged): consider System.Delegate class
30825 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
30827         * class.c: just setup supertypes in the proper place instead of
30828         initializing the full element class for arrays.
30830 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30832         * class.c: ensure the element class of arrays is initialized.
30833         Setup the supertype info for array classes, too.
30835 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
30837         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
30839 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30841         * Makefile.am: re-added -m option when running cygpath. This way,
30842         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
30843         separator.
30844         * mono-config.c: same codepath for locating mono config file for WIN32
30845         and the rest.
30846         * assembly.c: if mono_assembly_setrootdir is called, don't override
30847         the value set.
30849 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30851         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
30852         MONO_ASSEMBLIES variable.
30854 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
30856         * icall.c: added Assembly::GetNamespaces() icall.
30858 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30860         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
30862 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
30864         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
30865         * object.c: fixed bug in the construction of vtable for proxies
30867 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
30869         * object.c (mono_array_new): Mark mono_array_new as an icall.
30871 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30873         * class.c: fixed test for public method when overriding interfaces.
30874         Closes bug #40970.
30876 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30878         * appdomain.h, domain.c: added mono_domain_foreach() to
30879         be able to access the currently loaded appdomains.
30880         * object.c: make string interning work across sppdomains.
30881         Mark some functions for use as icalls.
30883 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30885         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30887         * reflection.h reflection.c: Allocate long living data using 
30888         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30890         * reflection.c: Double the allocation size in streams instead of
30891         increasing it, to prevent unneccesary copying on large assemblies.
30892         
30893         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30894         creation if the assembly does not have the Run flag set.
30896 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30898         * class.h: avoid the C++ keywords in header files (Jerome Laban
30899         spotted and fixed this).
30901 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30903         * object.c:
30904         (mono_unhandled_exception): fill in the arguments for the
30905         UnhandledException event. Only trigger that event for the default
30906         domain (as MS does).
30908 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30910         * object.c: Improve typed allocation stuff based on suggestions from
30911         Paolo. Also turn it on if the GC library supports it.
30913 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30915         * object.c object.h class.h: Added experimental typed allocation
30916         facility using the interfaces in gc_gcj.h.
30918         * os/gc_wrapper.h: Added new include files.
30919         
30920 2003-04-03  Martin Baulig  <martin@ximian.com>
30922         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30923         which is not yet enabled by default.
30925         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30926         functions.
30927         (mono_gc_lock, mono_gc_unlock): New static functions.
30929         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30930         functions; stop/start the world for the garbage collector.  This
30931         is using the windows API; we need to complete the SuspendThread()/
30932         ResumeThread() implementation in the io-layer to make this work on Unix.
30933         (mono_gc_push_all_stacks): New public function; tells the garbage
30934         collector about the stack pointers from all managed threads.
30936 2003-04-03  Martin Baulig  <martin@ximian.com>
30938         * object.h (MonoThread): Added `gpointer stack_ptr'.
30940         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30942 2003-04-03  Martin Baulig  <martin@ximian.com>
30944         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30946 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30948         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30949         field.last.
30951 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30953         * loader.c (mono_lookup_internal_call): Report the corlib that is
30954         out of sync.
30956 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30958         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30959         System.DBNull (it's class not valuetype).
30961 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30963         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30964         if the array method was already assigned a token (fixes bug#40646).
30966 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30968         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30969         if no assembly is given.
30971 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30973         * metadata.h: Added the new tables.
30975         * row-indexes.h: Added definitions for new tables.
30977         * metadata.c: Add schemas for new tables, and add support for
30978         computing the sizes of them.
30980         * class.c: Update for handling the new type cases.
30982 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30984         * metadata.h (MONO_TYPE_IS_VOID): new macro
30986 2003-03-31  Martin Baulig  <martin@ximian.com>
30988         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30990         * threads.c (mono_thread_new_init): Call `thread_created' in the
30991         mono_thread_callbacks.
30993 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30995         * loader.h: added marshalbyrefobject_class to mono_defaults
30996         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30997         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30998           generation of output parameters.
30999           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
31000         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
31001           contextbound and the target object belongs to the context of the caller.
31002         * object.h: added context and unwrapped_server variables in MonoRealProxy.
31003         * object.c: Implemented support for interfaces and abstract classes
31004           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
31005           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
31007 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
31009         * class.h class.c (mono_class_is_subclass_of): New function.
31010         
31011         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
31012         routines for most common case (calls from ArrayList::ToArray).
31014         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
31015         routine so programs which call Environment::Exit() can be profiled.
31017         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
31018         Added MONO_ARCH_SAVE_REGS.
31020         * icall.c (ves_icall_type_is_subtype_of): Use new function.
31022 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
31024         * blob.h: Add a couple of new MonoType types definitions.
31026         * tabledefs.h: Add a couple of new call convs.
31028 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
31030         * reflection.h (MonoReflectionDynamicAssembly): track changes in
31031         the layout of the class.
31033         * reflection.c (alloc_table): double the size on overflow to avoid
31034         unnecessary copying.
31036         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
31037         avoid filling out metadata tables and blobs. Also set mb->ilgen to
31038         null so it can be garbage collected.
31039         
31040 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
31042         * reflection.c (mono_reflection_get_type): Return the resolved type
31043         only if it is in the assembly we searched.
31045         * reflection.c (ensure_runtime_vtable): Initialize method slots.
31047         * class.c (mono_class_setup_vtable): Set the slot of the overriding
31048         method.
31050 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31052         * appdomain.c:
31053         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
31054         the right one is 'file:///blah', but MS allows it.
31055         * assembly.c:
31056         (mono_assembly_open): allow 'file://blah'
31058         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
31060 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
31062         * socket-io.c: fixes bug #40310.
31064 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
31066         * reflection.c (mono_reflection_parse_type): handle deeply nested
31067         types correctly.
31069         * reflection.c (mono_image_create_token): Use unique token values
31070         since they will be put into a hash table.
31072         * class.c (mono_class_setup_vtable): If a method occurs in more than
31073         one place in the vtable, and it gets overriden, then change the
31074         other occurances too.
31076         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31077         object as return type.
31079 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31081         * icall.c: Deleted "ToString" implementation for double and float
31082         because they are full implemented in managed code.
31084 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31086         * reflection.c, reflection.h: implemented and exported functions
31087         to retrieve info about custom attributes.
31089 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31091         * appdomain.c: moved Uri handling to assembly.c
31092         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
31093         work when using a file Uri in *nix and windows.
31095         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
31096         GetReferencedAssemblies.
31098 2003-03-18  Dick Porter  <dick@ximian.com>
31100         * icall.c: Rename a couple of internal calls
31102         * threads.c: Set the thread state to Stopped when a thread exits.
31103         Fixes bug 39377.
31105 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
31107         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
31108         New icall.
31110         * object.c (mono_class_vtable): fix warning.
31112 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
31114         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
31116         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
31117         memory.
31118         (method_encode_clauses): Create exception info structures in the right
31119         order.
31120         (mono_reflection_setup_internal_class): Initialize supertypes field.
31122         * class.c object.c: Handle interfaces which implement other interfaces 
31123         correctly.
31125         * class.h class.c: Move the supertypes array initialization code into 
31126         a separate function so it can be used for dynamic types too. Also call
31127         it earlier, in mono_class_init(), since it can be used before the
31128         type is initialized.
31130 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31132         * Makefile.am:
31133         * assembly.c:
31134         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
31136         * appdomain.c:
31137         * appdomain.h:
31138         * marshal.c:
31139         * object.c: remove warnings.
31141 2003-03-13  Martin Baulig  <martin@ximian.com>
31143         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
31144         (MonoDebugLexicalBlockEntry): New types.
31146         * debug-mono-symfile.c
31147         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
31149 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31151         * process.c: ret can be any non-zero value accroding to MS doc.
31153 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
31155         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
31156         fixing a warning for a miss-used prototype, would have cause
31157         random memory corruption.
31159 2003-03-07  Martin Baulig  <martin@ximian.com>
31161         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
31162         getting really annoying ....
31164 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
31166         * reflection.c (fixup_method): added support for array methods.
31168 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
31170         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
31171         (pointed out by Michael Adams).
31173 2003-03-04  Dick Porter  <dick@ximian.com>
31175         * icall.c: Temporarily reverted the Double and Single ToString()
31176         change, because it broke nunit.
31178 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
31180         * object.h, threads.h: make include files compatible with C++
31181         (patch by Jerome Laban <jlaban@wanadoo.fr>).
31183 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31185         * icall.c: Erased ToString helper functions for Double and Single.
31186         Now, that implementations ar all in managed code (Double and Single
31187         Formatters).
31189 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
31191         * appdomain.c: Added method for initializing the default context of
31192         a domain. Added internal call for getting the default context.
31193         * appdomain.h: Added context variable in MonoDomain struct.
31194         * domain.c: mono_domain_set also sets the default context of the domain
31195         * icall.c: Mapped internal method InternalGetDefaultContext.
31196         * object.c: mono_object_get_virtual_method returns always a remoting
31197         wrapper if the object is a transparent proxy.
31198         mono_runtime_invoke_array: when creating an object by calling the
31199         constructor, if the created object is a proxy, then the constructor should
31200         be called using the a remoting wrapper.
31202 2003-03-03  Dick Porter  <dick@ximian.com>
31204         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
31205         variable so it compiles on solaris.  Problem spotted by
31206         Christopher Taylor <ct@cs.clemson.edu>
31208 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31210         * appdomain.c:
31211         (get_info_from_assembly_name): don't leak value.
31213         * icall.c:
31214         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
31215         result.
31217 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
31219         * assembly.c: export mono_image_load_references ().
31220         * class.c: handle function pointers. mono_class_from_name() now
31221         supports nested type names directly.
31223 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
31225         * reflection.h reflection.c: Encode already created dynamic methods 
31226         and fields correctly as a DEF instead of a REF.
31228         * reflection.c: Get rid of the force_ref argument to 
31229         mono_image_typedef_or_ref since it was wrong in the first place.
31231         * string-icalls.c: add error checking to string constructors according
31232         to the MSDN docs.
31234         * reflection.c: Emit types in the order their TypeBuilders were 
31235         created. Previously, a new table index was assigned to each type before
31236         the tables were emitted. This was wrong because the signature blob
31237         might already refer to a type by its original table index.
31239 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
31241         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
31242         change.
31243         
31244 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31246         * Makefile.am: make assemblies dir have \ instead of / on windows.
31248 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
31250         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
31251         iterate over the NESTEDCLASS table using a linear search since the
31252         table is not guaranteed to be sorted by the secondary key.
31254         * class.c (mono_class_create_from_typedef): fixed up call to
31255         mono_metadata_nesting_typedef.
31256         
31257 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
31259         * marshal.c (mono_string_to_byvalstr): clear the memory as
31260         suggested by Jerome Laban <jlaban@wanadoo.fr>
31262 2003-02-26  Dick Porter  <dick@ximian.com>
31264         * process.c: Cope with padding in .rsrc blocks
31266 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
31268         * metadata.h: reverted the filter_len change, it breaks reflection
31269         
31270 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
31272         * metadata.h: added a new field to store the filter_len
31273         
31275 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
31277         * reflection.c: handle custom attributes for types and members
31278         created with Reflection.Emit (bug#38422).
31280 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
31282         * reflection.c: define RTSpecialName automatically for constructors for
31283         compatibility with MS.NET.
31285         * reflection.c (mono_reflection_create_runtime_class): initialize
31286         nested_in field of dynamically created classes.
31288 2003-02-22  Martin Baulig  <martin@ximian.com>
31290         * debug-mono-symfile.h: Incremented version number.
31292 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
31294         * object.h icall.c process.c: fix warnings.
31296 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
31298         * appdomain.h appdomain.c:
31299         (mono_domain_try_type_resolve): split the 
31300         name_or_tb argument into a name and a tb argument.
31301         (mono_domain_has_type_resolve): new function to check whenever the
31302         application has registered a TypeResolve event handler.
31303         
31304         * icall.c reflection.h reflection.c: move the type resolve logic into
31305         mono_reflection_get_type () so it will be invoked when 
31306         Assembly::GetType () is called.
31308         * reflection.c:
31309         (mono_reflection_get_type): renamed to get_type_internal.
31310         (mono_reflection_get_type): fixed type name generation so it works 
31311         for nested types too.
31312         (mono_reflection_get_type): call has_type_resolve () to avoid the 
31313         costly type name generation if there is no resolve event handler.
31315 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31317         * class.c, image.c: load exported types from file references.
31319 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
31321         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
31322           used to cache the managed methods used to create proxies and make 
31323           remote invocation of methods.
31324         * class.h: Added in MonoVTable a flag to indicate that a class needs 
31325           to be remotely created.
31326         * object.c: Modified the method mono_class_vtable(). It now initializes 
31327           the remote flag of the vtable. Modified mono_object_new_specific(), 
31328           so now it checks the remote flag.
31329         * icall.c: Added a couple of internal methods, one for enabling instance 
31330           creation interception for a type, and one for creating objects bypassing
31331           the remote check.
31333 2003-02-18  Martin Baulig  <martin@ximian.com>
31335         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
31336         New interncall to get a method's metadata token.
31338         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
31339         New interncall for the debugger.
31341 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
31343         * class.c (mono_class_setup_vtable): allocate supertype array
31345 2003-02-18  Martin Baulig  <martin@ximian.com>
31347         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
31349 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31351         * reflection.c:
31352         (assembly_name_to_aname): jump over unknown properties (i've found
31353         something like: 'type, assembly, version=xxx, custom=null, public...',
31354         so now will ignore custom=null and still get the rest of the values).
31356 2003-02-17  Dick Porter  <dick@ximian.com>
31358         * threads.c: Have Thread.Start() wait for a semaphore to signal
31359         that the thread has set up all its local data.  This fixes bug
31360         34323, where Abort() raced the new thread's TLS data.
31362         Also removes the handle_store() call from start_wrapper, because
31363         threads are now always created suspended and there is no longer a
31364         race between the parent and child threads to store the info.
31366 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
31368         * image.c: explain the #- heap issue in a message, hopefully
31369         avoiding FAQs on mono-list.
31371 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31373         * icall.c:
31374         (GetEntryAssembly): if the domain has not invoked
31375         AppDomain.ExecuteAssembly yet, return the assembly of the default
31376         AppDomain.
31378 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
31380         * class.c (mono_ldtoken): make it work in dynamic assemblies.
31382 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
31384         * metadata.c, reflection.c: simple speedup to type hash
31385         and equals code.
31387 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
31389         * image.c, image.h, class.c, assembly.c: move module loading
31390         to MonoImage. When loading metadata, consider alignemnet from
31391         the start of metadata, not from the metadata address in memory.
31393 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
31395         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
31396         AssemblyBuilder objects. Factored out custom attribute creation into
31397         a separate function.
31398         (create_custom_attr): new function to create custom attributes.
31400 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
31402         * Makefile.am: Got tired of typing the full pathname to pedump.
31403         Until there is another option, am installing this.
31405 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
31407         * class.c (class_compute_field_layout): always set field->parent 
31408         (mono_ldtoken): use mono_defaults.fieldhandle_class;
31410 2003-02-11  Dick Porter  <dick@ximian.com>
31412         * threads-types.h:
31413         * monitor.c: Rewrote Monitor, making lock much faster and
31414         Pulse/Wait work as specified.  Also uses much fewer handles, and only
31415         creates them as needed.
31417         * exception.c: Added SynchronizationLockException
31419         * threads.c: Deleted old Monitor implementation.  The new one is
31420         in a new file.
31422 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
31424         * class.c: handled TypedReference type code. Set the correct size for
31425         class data. Setup interface_offsets for interface classes, too.
31427 2003-02-09  Martin Baulig  <martin@ximian.com>
31429         * debug-mono-symfile.h: Reflect latest symbol writer changes.
31431 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
31433         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
31434         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
31435         * object.c: fixed mono_object_get_virtual_method () for interfaces.
31436         * verify.c: check for code that runs after the end of the method.
31438 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31440         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
31441         "System.Math::Round2".
31442         * sysmath.h: Added Floor, Round and Round2 definitions.
31443         * sysmath.c: Modified certain functions that were not 100% compliant
31444         with MS.NET (math precision) and added the implementation of Floor,
31445         Round and Round2.
31447 2003-02-07  Martin Baulig  <martin@ximian.com>
31449         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
31451 2003-02-07  Martin Baulig  <martin@ximian.com>
31453         * debug-mono-symfile.c: Reflected latest symwriter changes.
31454         (mono_debug_create_mono_symbol_file): Removed.
31455         (mono_debug_open_mono_symbol_file): Take an argument which
31456         specifies whether to create a dynamic symbol file.
31458 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
31460         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
31462 2003-02-05  Martin Baulig  <martin@ximian.com>
31464         * reflection.c (mono_image_build_metadata): Make this public,
31465         protect it against being called multiple times, don't create
31466         resources and don't build the compressed metadata here.
31467         (mono_image_create_pefile): Do this here.
31469         * icall.c
31470         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
31472 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31474         * socket-io.c: fixed bug #36322.
31476 2003-02-06  Piers Haken <piersh@friskit.com>
31478         * appdomain.[ch]:
31479         * class.h:
31480         * debug-mono-symfile.c:
31481         * icall.c:
31482         * loader.c:
31483         * mono-config.c:
31484         * monosn.c:
31485         * reflection.c:
31486         * socket-io.c: warning cleanups
31488 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
31490         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
31491         function. works like remoting invoke, but does a check for the Proxy first.
31493 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
31495         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
31497 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
31499         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
31500         array of pointers.
31501         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
31502         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
31504         * object.c (mono_store_remote_field_new): used by the new jit
31505         instead of mono_store_remote_field
31506         (mono_load_remote_field_new): used by the new jit
31507         instead of mono_load_remote_field
31509 2003-02-05  Patrik Torstensson
31511         * appdomain.c: changed unload to take the domain id instead
31512         of domain
31513         
31514         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
31517 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31519         * appdomain.c: don't look for assemblies in ApplicationBase if
31520         PrivateBinPathProbe is set.
31522 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31524         * object.c: make the first argument in main_args contain the absolute
31525         path to the assembly. Fixes bug #37511.
31527 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31529         * icall.c: get correct UTC offset for countries not using daylight
31530         time saving. Fixes bug #30030.
31532 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31534         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
31535         and 1 are the family).
31537 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
31539         * icall.c (ves_icall_InternalExecute): removed wrong assertion
31541         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
31543 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
31545         * reflection.c: added support for SignatureHelper tokens, which is
31546         needed by the Calli opcode.
31548         * reflection.h: track changes to SignatureHelper class.
31550         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
31552 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31554         * appdomain.c: fixed loading assemblies from PrivateBinPath.
31556 2003-02-03  Patrik Torstensson
31557         * appdomain.[c|h], domain.c : 
31558          - Added support for getting a domain via domain id
31559          - Support for setting and getting domain from System.AppDomain 
31560            (used in cross appdomain channel)
31561          - Added support for get/set for a MonoAppContext on a thread 
31562            (Context class in System.Runtime.Remoting.Contexts),
31563          - Removed hack in Get/SetData and ExecuteAssembly.
31564         
31565         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
31566         the managed world to get control when a proxy is created.
31568         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
31569         
31570 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
31572         * icall.c
31573         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31574         Populate the codebase field as well.
31576 2003-02-02  Martin Baulig  <martin@ximian.com>
31578         * debug-mono-symfile.c
31579         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
31580         (mono_debug_symfile_add_method): Allow interncalls.
31582 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31584         * icall.c: throw parse exception if strtod fails or the string is empty.
31586 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
31588         * marshal.c: handle object type separately from defined
31589         class types.
31591 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
31593         * marshal.c: handle NATIVE_LPSTR for strings when it's
31594         explicitly specified.
31596 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
31598         * reflection.c, reflection.h, icall.c: setup the reflection
31599         handle cache for ModuleBuilders and AssemblyBuilders.
31601 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
31603         * reflection.c (reflection_methodbuilder_to_mono_method): set
31604         pinvoke flag
31606 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31608         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
31610 2003-01-29  Dick Porter  <dick@ximian.com>
31612         * threads.c: No need for the fake_thread kludge now that Thread
31613         doesn't run a class constructor
31614         
31615 2003-01-29  Dick Porter  <dick@ximian.com>
31617         * threads.c: Use g_direct_hash instead of the rather bogus
31618         g_int_hash
31620 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
31622         * marshal.c (mono_marshal_get_native_wrapper): add check for null
31623         (fix pinvoke12.exe)
31624         (mono_marshal_get_struct_to_ptr): generate valid IL code
31625         (mono_marshal_get_ptr_to_struct): generate valid IL code
31626         (*): correctly set sig->pinvoke, we need to memdup the signature
31627         to do that
31629 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31631         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
31632         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
31634 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31636         * profiler.c: provide more callers information.
31638 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
31640         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
31642         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
31644         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
31646 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31648         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
31649         exception instead of going into an infinite loop on dates which it 
31650         can't yet handle.
31652         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
31653         out-of-range exception if needed.
31655         * class.c (mono_class_setup_vtable): allow a virtual method to provide
31656         an implementation for an interface method and to override an inherited
31657         method at the same time. 
31658         Imagine a scenario when a virtual method is used to override a
31659         virtual abstract method in a parent class, and this same method 
31660         provides an implementation for an method inherited from an interface. 
31661         In this case, the interface resolution code will set im->slot, which 
31662         means that the virtual method override pass will skip this method 
31663         which means a pointer to the abstract method inherited from the parent
31664         will remain in the vtable of this non-abstract class.
31666         * class.c: (mono_class_setup_vtable): continue search for a real 
31667         method if only an abstract method is found.     
31669 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31671         * reflection.c: add size to encoding for ByValStr and ByValArray
31672         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
31674 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31676         * class.c (mono_class_setup_vtable): pass the override info as an
31677         argument.
31679         * class.c (mono_class_setup_vtable): set the slot of overriding methods
31680         correctly.
31681         
31682         * reflection.c (ensure_runtime_vtable); add support for method 
31683         overrides.
31684         
31685 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31687         * reflection.c (resolution_scope_from_image): Hack to work to work with
31688         dynamic assemblies.
31690         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
31691         added a 'force_ref' argument to force this function to allways return 
31692         a TypeRef. This is needed by mono_image_get_memberref_token ().
31693         
31694 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31696         * reflection.c (mono_image_get_type_info): interfaces really don't have
31697         a parent.
31699         * reflection.c (mono_image_basic_init): fill out missing fields of
31700         image structure.
31702         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
31703         dynamic assemblies. This is required so dynamic assemblies show up in
31704         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
31705         Type::GetType() etc. This is consistent with MS behaviour.
31707         * image.c image.h reflection.c: add newly created classes to the name 
31708         cache so mono_class_get () will find them.      
31710 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31712         First part of changes to get IKVM.NET running under mono.
31713         
31714         * appdomain.h, appdomain.c: added new function 
31715         mono_domain_try_type_resolve() which will emit TypeResolve events. 
31716         This function will call AppDomain::DoTypeResolve to do the actual work.
31718         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
31719         moved existing code dealing with dynamic tokens to a new function 
31720         called mono_reflection_lookup_dynamic_token (). This function will 
31721         raise TypeResolve events when appropriate. Since reflection.c is not 
31722         part of libmetadata, a new hook function called 
31723         mono_lookup_dynamic_token() is added to class.c which will call this.
31725         * assembly.h assembly.c: make the invoke_load_hook function public,
31726         so it can be called for dynamic assemblies.
31728         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
31730         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
31731         type isn't found.
31733         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
31734         MonoGHashTable, since it contains pointers to objects which the GC 
31735         needs to track.
31737         * assembly.c (search_loaded): remove unused variable.
31738         
31739 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
31741         * object.c: fixed issue exposed by gcc-generated IL programs
31742         that use RVA data for pointers.
31744 2003-01-25  Martin Baulig  <martin@ximian.com>
31746         * threads.c (start_wrapper): Moved the initialization of
31747         `start_func' above the mono_new_thread_init() call to which we
31748         pass it as argument.
31750 2003-01-24  Martin Baulig  <martin@ximian.com>
31752         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
31753         the MonoThread pointer.
31755 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
31757         * icall.c: Rename `PowImpl' to Pow.
31759 2003-01-23  Dick Porter  <dick@ximian.com>
31761         * threads.c (start_wrapper): Create a Thread object if needed, so
31762         the Main() thread can do the class initialisation in a subthread
31763         that has been set up to allow managed code execution.
31765         Pass the thread ID instead of the MonoThread pointer to the thread
31766         start and attach callbacks.  This change is required, because the
31767         jit thread start callback must be called _before_ the Thread
31768         object can be created.
31769         
31770         (mono_thread_init): Removed much object creation code that is no
31771         longer needed.  No managed code is called from here now.
31773         * object.c (mono_runtime_exec_managed_code): Create a subthread
31774         for Main, and call back to the runtime to use it.
31775         Set the exit code when Main exits.
31777         * gc.c: Make sure domain finalisation happens in a subthread.
31778         Re-enable threaded GC, fixing bug 31333 (again).
31780         * environment.c: System.Environment internall calls (so far just
31781         ExitCode is here, the others are still in icall.c)
31783         * appdomain.c (mono_runtime_cleanup): All threads running managed
31784         code should have finished before mono_runtime_cleanup() is
31785         reached, so no need to clean up threads.
31787 2003-01-22  Martin Baulig  <martin@ximian.com>
31789         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
31790         `gpointer func' arguments.      
31791         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
31792         but added `MonoThread *thread' argument.
31793         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
31795         * threads.c (mono_new_thread_init): Added `gpointer func' argument
31796         and pass it to the mono_thread_start_cb callback.
31797         (mono_install_thread_callbacks): New public function to install a
31798         set of callbacks which are set by the debugger.
31799         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
31801 2003-01-22  Martin Baulig  <martin@ximian.com>
31803         * Makefile.am: Install debug-mono-symfile.h.
31805 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
31807         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
31809 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
31811         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
31812         * class.c (mono_ptr_class_get): correctly set access levels of pointers
31813         (mono_array_class_get): correctly set access levels of arrays
31815 2003-01-20      Patrik Torstensson
31816         * image.h (MonoAssemblyName): changed major, minor, build, revision
31817         from signed to unsigned.
31819 2003-01-20  sean kasun <skasun@azstarnet.com>
31821         * reflection.c (load_cattr_value): Now this handles
31822         MONO_TYPE_SZARRAY.  Fixes bug #35629
31824 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
31826         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
31827         integer value
31829 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31831         * decimal.c: fixed bug #26056.
31833 2003-01-17  Martin Baulig  <martin@ximian.com>
31835         * gc.c: Raise an ExecutionEngineException instead of using g_error().
31837 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31839         * exception.[ch]:
31840         (mono_get_exception_type_initialization): new function.
31842         * object.c: throw a TypeInitializationException when an exception is
31843         thrown invoking the class constructor.
31845 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31847         * reflection.c: fixed attribute reading.
31849 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31851         * icall.c:
31852         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
31853         provided, look for the type in the calling assembly and then in
31854         mscorlib; if the assembly name is provided, only try that one.
31856 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
31858         * object.c: register the vtable before there is a chance it's
31859         queried again recursively.
31861 2003-01-13  Duncan Mak  <duncan@ximian.com>
31863         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
31864         gc-internal.h. 
31865         
31866 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
31868         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
31870 2003-01-11  Martin Baulig  <martin@ximian.com>
31872         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31873         this to 20 for the release.
31875 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31877         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31879         * loader.c (mono_method_get_marshal_info): bug fix
31881         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31882         structures with explicit layout
31884 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31886         * profiler.c: made the output more readable (and sorted). 
31887         Added caller information for the allocation profiler.
31889 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31891         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31893 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31895         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31896         to get value types.
31897         
31898 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31900         * object.c, profiler.h, profiler.c, profiler-private.h:
31901         Added object allocation profiler.
31903 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31905         * reflection.h, reflection.c: handle global methods.
31906         Compress blob entries.
31908 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31910         * marshal.c: fix compilation.
31912 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31914         * loader.c (mono_method_get_marshal_info): impl.
31916         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31918 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31920         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31921         for reference types.
31923 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31925         * loader.c: fixed off by one error in loaded parameter names.
31927 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31929         * marshal.c (mono_marshal_get_icall_wrapper): like
31930         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31931         instead of a MonoMethod.
31933 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31935         * decimal.c: fixed bug #36537.
31937 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31939         * marshal.c: throw a missing method exception if a
31940         P/Invoke method is not found.
31942 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31944         * icall.c: allow a null this for constructors.
31946 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31948         * icall.c: raise the proper exceptions if the arguments to the
31949         internal Invoke are incorrect.
31951 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31953         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31955 2003-01-03  Martin Baulig  <martin@ximian.com>
31957         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31959 2002-12-31  Martin Baulig  <martin@ximian.com>
31961         * debug-mono-symfile.c: Completely rewrote the type section.
31962         Instead of using individual malloc()ed fields, we use one big
31963         continuous memory area and offsets into this area.
31964         See the comments in the source code for details.
31966 2002-12-30  Martin Baulig  <martin@ximian.com>
31968         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31970 2002-12-30  Martin Baulig  <martin@ximian.com>
31972         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31973         line number table in this data blob instead of using an external
31974         pointer.
31976 2002-12-28  Martin Baulig  <martin@ximian.com>
31978         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31980 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31982         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31983         as a boxed return type.
31985 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31987         * appdomain.c
31988         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31989         g_build_filename to properly get separators on the filename created.
31991         * object.h: Small change, introduce MonoMarshalByRefObject to
31992         track the layout of that structure in the C# universe as we make
31993         changes there.
31995 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31997         * object.c: removed assert to allow static fields on interfaces.
31998         * loader.c: a TypeSpec may be used for any type, not just arrays.
32000 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32002         * class.c, class.h: added mono_class_array_element_size ().
32003         Ignore static methods in interfaces.
32005 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32007         * threads.c: fixed the build under cygwin.
32009 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
32011         * reflection.c: handle nullref constants. Allocate keys for
32012         reflection handles with the GC.
32014 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32016         * threads.c, threads.h: added mono_thread_get_abort_signal()
32017         to get a suitable signal for thread abort.
32019 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32021         * metadata.c: fix handling of ExportedType table.
32023 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32025         * icall.c: added WriteWindowsDebugString internal call.
32027 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32029         * reflection.h: added fields to match C# implementation.
32031 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32033         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
32035 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
32037         * gc.h, gc-internal.h: Rename header for GC internal calls to
32038         gc-internal.h from gc.h as to not clash with Boehm GC having its
32039         header installed as <gc.h> in outside include paths.
32040         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
32041         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
32043 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32045         * icall.c: assign minor, build and revision in FillName.
32047 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
32049         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
32050         Added support for running code generated by Reflection.Emit.
32052 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32054         * appdomain.c: check for NULL argument in LoadFrom.
32056 2002-12-10  Dick Porter  <dick@ximian.com>
32058         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
32060 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32062         * appdomain.c: fix buglet when building exe file name.  Handle full
32063         assembly name (needed after latest changes to AssemblyName).
32064         * image.c:
32065         (mono_image_close): free some hashtables.
32067 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
32069         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
32070         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
32071         on some systems (redhat 7.3) 
32073 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
32075         * threads.c: delete the critical section of a sync block,
32076         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
32078 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
32080         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
32082 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32084         * appdomain.[ch]: handle the assembly preload event to try loading the
32085         assemblies using the paths we have in the current domain.
32087         * assembly.[ch]: created an assembly preload hook that is called to try
32088         loading the assembly by other means that the ones provided here.
32090         * domain.c: initialize the domain search path.
32092         From now on, assemblies (TODO: except corlib and System) are loaded
32093         according to these rules when using mono_assembly_load ():
32095                 1. It tries to load the assembly from the ApplicationBase
32096                 of the current domain appending .dll and .exe (TODO: have to
32097                 try loading from name/name.dll and name/name.exe).
32099                 2. It tries the search path specified in PrivateBinPath for the
32100                 current domain (if any).
32102                 3. Previous behavior.
32104 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
32106         * icall.c: implemented GetInterfaceMap() related icall.
32107         * domain.c, loader.h: load MethodInfo in mono_defaults.
32109 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
32111         * gc.c: disable the finalizer thread for now, untill all the issues
32112         with it are resolved.
32114 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32116         * string-icalls.c: handle embedded nulls in string ctor when the
32117         length is specified.
32119 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
32121         * class.c: look for explicit interface implementation in parent
32122         classes, too.
32124 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
32126         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
32128 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
32130         * gc.c: protect handles with a critical section.
32132 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32134         * icall.c:
32135         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
32136         parameters. If no assembly specified, try getting the type from all
32137         the assemblies in the current domain, else, load the assembly and get
32138         the type from it.
32140 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32142         * marshal.c: applied patch from Aleksey Demakov that fixes
32143         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
32145 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32147         * icall.c: fixed get_location.
32149 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
32151         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
32152         declarations to make it work with older gcc. 
32154         * loader.c (mono_get_method): set signature->pinvoke for native calls
32156 2002-11-20  Dick Porter  <dick@ximian.com>
32158         * threads.c (mono_thread_init): Set the main thread's handle
32160 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
32162         * gc.c: allow compilation without GC support. Changed to match the
32163         mono coding style.
32165 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
32167         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
32169 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
32171         * reflection.c: set a public key token on the core assemblies.
32173 2002-11-18  Dick Porter  <dick@ximian.com>
32175         * threads.c: Split out some thread initialisation so that other
32176         files can set the start callback function.
32178         * gc.c: Run finalisers in a separate thread, to avoid stack
32179         overflow.  Fixes bug 31333.
32181         * appdomain.c: Set up GC finalisation thread.
32183         * reflection.c: 
32184         * object.c: 
32185         * domain.c: Use gc.h macros for GC_malloc
32186         
32187 2002-11-15  Dick Porter  <dick@ximian.com>
32189         * threadpool.c: 
32190         * threads.c:
32191         * appdomain.c: Removed mono_runtime_init_with_attach(),
32192         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
32193         merging the extra parameter with the existing function.  Removed
32194         unneeded code in mono_thread_attach().
32196 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
32198         * image.c (mono_image_loaded_by_guid): a method to get loaded
32199         images by guid. 
32200         (load_metadata_ptrs): we store the guid as string.
32202 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
32204         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
32206         * metadata.c (mono_guid_to_string): imported method form Zoltan
32207         Varga (slightly modified)
32209         * assembly.c (mono_assembly_open): load precompiled code
32211         * loader.h (MonoMethod): we store the method token for use in the
32212         aot compiler. 
32214 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32216         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
32217         the hook function called when an assembly is loaded.
32218         
32219         * domain.c: Modified file.
32220         (mono_domain_assembly_load): removed hash table insertion of assemblies.
32222         Fixes bug #33196.
32224 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
32226         * reflection.c: Map PEFileKind to the value expected by the WinNT
32227         image loader. 
32229 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32231         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
32232         Read until the buffer is filled completely.
32234 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32236         * icall.c: implemented MonoType.InternalGetEvent ().
32238 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32240         * appdomain.c: implemented InitAppDomainSetup. Delayed
32241         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
32242         the entry_assembly.
32244         * assembly.c: base_dir is now an absolute path ending with
32245         G_DIR_SEPARATOR.
32247         * icall.c: modified get_location according to the above changes.
32249         * object.c: init AppDomain.SetupInformation for the default domain after
32250         we have the entry assembly.
32252         * domain.c: when unloading a domain, setup = NULL.
32254 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
32256         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
32258 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
32260         * object.h, object.c: introduced mono_object_get_virtual_method ()
32261         to lookup the method invoked on an object when a callvirt is done on
32262         a method.
32263         * icall.c: make MethodInfo::Invoke() always do a virtual call.
32265 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32267         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
32268         current domain when loaded an assembly and failed to load it.
32270         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
32272 2002-10-31  Dick Porter  <dick@ximian.com>
32274         * icall.c: 
32275         * file-io.h: 
32276         * file-io.c: Return the error status in a parameter, as the
32277         GetLastError() value has long since been blown away if we try and
32278         look it up in a subsequent internal call invocation.  Delete the
32279         GetLastError() internal call, because it's useless.
32281 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
32283         * class.[ch]: added cast_class to fix bug 29517
32285 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
32287         * marshal.c: create valid IL code in the filter clause:
32288         the new JIT is less forgiving:-)
32290 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32292         * icall.c: removed get_property internal call.
32294 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
32296         * appdomain.h domain.c: Added an ID to appdomains.
32297         
32298         * threads.c threads.h icall.c: Implement icall
32299         Thread:GetDomainID(), and remove unused icall 
32300         CurrentThreadDomain_internal.
32302 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32304         * icall.c: Don't recurse through the base types in GetConstructor.
32305         Fixes bug #32063. 
32307 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32309         * mempool.h, mempool.c: added mono_mempool_empty() and
32310         mono_mempool_stats().
32312 2002-10-23  Dick Porter  <dick@ximian.com>
32314         * file-io.c: 
32315         * file-io.h: 
32316         * icall.c: Added MonoIO.GetFileType internal call
32318 2002-10-17  Dick Porter  <dick@ximian.com>
32320         * appdomain.c (mono_runtime_cleanup): Don't signal the async
32321         delegate semaphore before waiting for all threads to finish,
32322         because new threads can also call async delegates.  Fixes bug
32323         32004.
32325         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
32326         of 3 seconds, in case another async job is queued.  (This part is
32327         needed because the bug fix reintroduced the 3s exit lag.)  This
32328         makes the mono_runtime_shutdown flag superfluous.
32330 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
32332         * reflection.c: include ehader size in method section headers.
32333         Really check for suplicated modules entries.
32335 2002-10-17  Martin Baulig  <martin@gnome.org>
32337         * debug-mono-symfile.c: Added back support for locals.
32339 2002-10-14  Martin Baulig  <martin@gnome.org>
32341         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
32342         MONO_TYPE_VOID.
32344 2002-10-14  Martin Baulig  <martin@gnome.org>
32346         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
32347         mono_class_get() instead of looking in the class cache. 
32349 2002-10-13  Martin Baulig  <martin@gnome.org>
32351         * debug-mono-symfile.c: Set version number to 28, include the
32352         signature in method names.
32354 2002-10-13  Martin Baulig  <martin@gnome.org>
32356         * debug-mono-symfile.h: Set version number to 27.
32358 2002-10-11  Martin Baulig  <martin@gnome.org>
32360         * gc.c: Don't register/unregister NULL pointers as disappearing links.
32362 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32364         * metadata.c, metadata.h: added helper function to allocate signatures.
32366 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32368         * icall.c: added internal call to get the location of machine.config.
32370 2002-10-08  Martin Baulig  <martin@gnome.org>
32372         * debug-mono-symfile.c: Ignore classes with a pending init for the
32373         moment.
32375 2002-10-03  Dick Porter  <dick@ximian.com>
32377         * threads.c: Freebsd pthread_t is a pointer
32379 2002-10-03  Dick Porter  <dick@ximian.com>
32381         * socket-io.c: Implemented GetHostName_internal
32383 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32385         * mono-config.c:
32386         (mono_config_parse_file): don't leak the text.
32388 2002-10-02  Martin Baulig  <martin@gnome.org>
32390         * debug-mono-symfile.c: Added support for methods.
32392 2002-10-01  Martin Baulig  <martin@gnome.org>
32394         * debug-mono-symfile.c: Don't emit methods and line numbers for
32395         the dynamic symbol file, just write the type table.  We can easily
32396         have an external helper program which creates a symbol file for an
32397         IL file.        
32399 2002-10-01  Dick Porter  <dick@ximian.com>
32401         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
32402         Only add the handle to the cleanup array when we're about to
32403         launch the thread.  Bug 31425 deadlocked when the test was run on
32404         mono under w32.
32406 2002-10-01  Martin Baulig  <martin@gnome.org>
32408         * debug-mono-symfile.c: Added support for properties.
32410 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32412         * reflection.c: unaligned store fix from Mark Crichton
32413         <crichton@gimp.org>.
32415 2002-09-27  Martin Baulig  <martin@gnome.org>
32417         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
32418         New interncall.
32420 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32422         * assembly.h, assembly.c: use a sane API to hook into the assembly
32423         loading process instead of a useless special-purpouse hack
32424         (ngen needs a hook, too, for example).
32426 2002-09-27  Dick Porter  <dick@ximian.com>
32428         * threads.c (mono_thread_init): Call GetCurrentProcess() so
32429         io-layer can set up some process handle info.  Not needed on w32,
32430         but doesn't hurt either.
32432         * process.c: Pass the program name in the second parameter to
32433         CreateProcess, so the path is searched.  Include the working
32434         directory. Implemented process name, process enumeration, and some
32435         process detail internal calls.
32436         
32437         * icall.c: Added internal calls for process lookup, and some
32438         process details
32440 2002-09-26  Martin Baulig  <martin@gnome.org>
32442         * assembly.c (mono_install_open_assembly_hook): New global
32443         function to install a function to be invoked each time a new
32444         assembly is loaded.
32445         (mono_assembly_open): Run this callback function if set.
32447         * debug-mono-symfile.c: Put back line numbers for the dynamic
32448         symbol file and also record the .il file as source file.  This
32449         allows us to install the temporary symbol file as `file.dbg' just
32450         like a compiler-generated one.
32452 2002-09-26  Nick Zigarovich <nick@chemlab.org>
32454         * Corrected typo in gc.c (BOHEM vs BOEHM).
32456 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32458         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
32459         GetProperties. Also avoid calling g_slist_length in GetProperties and
32460         GetMethods.
32462 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32464         * reflection.c: avoid unaligned stores (bug spotted by
32465         Mark Crichton  <crichton@gimp.org>).
32467 2002-09-25  Martin Baulig  <martin@gnome.org>
32469         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
32470         instead of guint64 for addresses and added prologue/epilogue info.
32472 2002-09-25  Martin Baulig  <martin@gnome.org>
32474         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
32475         store line number info.  For the dynamic symbol file, we only need
32476         to provide the JIT generated dynamic line number info for the dynamic
32477         symbol file.
32479 2002-09-25  Martin Baulig  <martin@gnome.org>
32481         * debug-mono-symfile.h: Incremented version number.
32483 2002-09-24  Martin Baulig  <martin@gnome.org>
32485         * class.c (mono_debugger_class_init_func): New global function
32486         pointer variable.
32487         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
32488         call it.
32490         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
32491         function.  This is called via the mono_debugger_class_init_func
32492         hook to add all types to the dynamic type table.
32493         (ves_icall_MonoDebugger_GetType): New interncall to get a class
32494         from its metadata token.
32496         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
32497         New interncall for the debugger.
32499 2002-09-24  Nick Drochak <ndrochak@gol.com>
32501         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
32502         before using it in case it is null.
32503         
32504 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32506         * metadata.c: allow custom modifiers in local var signatures
32507         (bug spotted by Zoltan Varga).
32509 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32511         * class.c: deal with the <Module> class that may have a NULL vtable.
32512         Eliminate warnings.
32514 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32516         * image.c, image.h: more strong name helpers.
32517         * monosn.c: more work: convert pem keys to cryptoapi format.
32519 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32521         * string-icalls.c: speedup IndexOf.
32523 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32525         * icall.c: updates from Zoltan.2.Varga@nokia.com.
32527 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32529         * icall.c: cleanup: use mono_object_domain ().
32531 2002-09-23  Martin Baulig  <martin@gnome.org>
32533         * debug-mono-symfile.c: Improved type support.
32535 2002-09-22  Martin Baulig  <martin@gnome.org>
32537         * debug-mono-symfile.c: Added support for reference types and strings.
32539 2002-09-22  Martin Baulig  <martin@gnome.org>
32541         * debug-mono-symfile.c: Started to work on the type table.
32543 2002-09-21  Martin Baulig  <martin@gnome.org>
32545         * debug-mono-symfile.c: Largely reworked the symbol table format.
32546         The symbol table is now incrementally updated each time a new
32547         method is added.  We're now also using our own magic and version
32548         so that you don't need to recompile all your classes if the
32549         dynamic table changes.
32550         (mono_debug_update_mono_symbol_file): Removed.
32551         (mono_debug_symfile_add_method): New function to add a method.
32553 2002-09-21  Martin Baulig  <martin@gnome.org>
32555         * icall.c
32556         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
32557         New interncall.
32559         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
32560         New interncall to get a method from its metadata token.
32562 2002-09-21  Martin Baulig  <martin@gnome.org>
32564         * debug-mono-symfile.c: Create type table.
32566 2002-09-20  Martin Baulig  <martin@gnome.org>
32568         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
32570 2002-09-20  Martin Baulig  <martin@gnome.org>
32572         * debug-mono-symfile.c: Provide information about params and locals.
32574 2002-09-20  Martin Baulig  <martin@gnome.org>
32576         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
32577         New interncall.
32579         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
32580         interncall to get a method from its metadata token.
32582 2002-09-20  Martin Baulig  <martin@gnome.org>
32584         * debug-mono-symfile.c: Added a few checks for method->header
32585         being non-NULL.  This should never happen, but for the moment
32586         let's use a g_warning() rather than a g_assert().
32588 2002-09-19  Mark Crichton  <crichton@gimp.org>
32590         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
32591         even if support for it isn't present.  Added an #ifdef to fix this.
32593         * socket-io.c: Added checks back for Solaris support.
32595 2002-09-19  Martin Baulig  <martin@gnome.org>
32597         * debug-mono-symfile.c (read_string, write_string): Reflect latest
32598         changes in the symbol file format.
32600 2002-09-18  Martin Baulig  <martin@gnome.org>
32602         * debug-mono-symfile.c: Set version number to 21.
32604 2002-09-18  Dick Porter  <dick@ximian.com>
32606         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
32607         on netbsd.  Fixes bug 30051.
32609 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32611         * reflection.c:
32612         (set_version_from_string): little fix.
32614 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32616         * monosn.c, Makefile.am: added strong name utility.
32617         * reflection.h, reflection.c: implemented delayed signing,
32618         locale, version and hash id assembly attributes.
32620 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32622         * loader.c, metadata.c: load param attributes in signatures.
32624 2002-09-16  Martin Baulig  <martin@gnome.org>
32626         * debug-mono-symfile.c: Added string table with all method names.
32628 2002-09-14  Martin Baulig  <martin@gnome.org>
32630         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
32631         fast method lookup.
32633 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32635         * reflection.c: record the public key token of referenced assemblies.
32637 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32639         * image.c, image.h: added functions to get the strong name and the
32640         public key of an assembly.
32641         * pedump.c: use them.
32643 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
32645         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
32647 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
32649         * marshal.c (mono_marshal_get_managed_wrapper): Added
32650         MONO_TYPE_BOOLEAN 
32652 2002-09-11  Martin Baulig  <martin@gnome.org>
32654         * gc.c: Call GC_unregister_disappearing_link() on all links when
32655         finalizing them, this is necessary to aviod a crash in boehm's
32656         finalize handler.
32658 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32660         * gc.c: handle GetTarget for finalized objects spotted and fixed by
32661         nick@chemlab.org.
32663 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32665         * icall.c: implemented MonoType::Module.
32666         * reflection.c, reflection.h: mono_module_get_object () from
32667         Tomi Pakarinen <tomi.pakarinen@welho.com>.
32669 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32671         * icall.c: ignore overridden methods in GetMethods ().
32672         Fix for FieldInfo::SetValue().
32673         * object.c: handle float/double in runtime invoke.
32675 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32677         * object.c: allow a constructor to be called again on an object.
32679 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32681         * class.h, class.c: move field layout code to it's own function and
32682         export it. Get an interface id earlier. Move fields in MonoClass
32683         so they are more cache friendly and align the bitfields.
32684         * loader.c: temporary handle get_param_names() for a runtime method.
32685         * reflection.c, reflection.h: more code to handle runtime creation of
32686         types.
32688 2002-09-09  Martin Baulig  <martin@gnome.org>
32690         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
32691         signature with the pinvoke field being set for the actual call.
32693 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32695         * icall.c: removed some unused icalls. Start of map of glib charsets
32696         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
32698 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32700         * debug-helpers.c: break infinite loop (found and fixed by
32701         Holger Arnold <harnold@gmx.de>).
32703 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32705         * icall.c: target may be null in create_delegate.
32707 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32709         * marshal.c: handle a boolean return type.
32711 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32713         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
32715 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32717         * gc.c: fix weakreferences.
32719 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32721         * icall.c: added icall to get default codepage.
32723 2002-09-03  Dick Porter  <dick@ximian.com>
32725         * threads.h: 
32726         * threads.c: Use MonoThread instead of MonoObject where
32727         apropriate.
32729         Store running thread objects in a hash table, so that we have all
32730         the info to hand when waiting for them to finish
32731         (means we don't need OpenThread() any more, so mingw builds should
32732         be fully functional again.)
32734         * verify.c:
32735         * object.h: Added thread ID to MonoThread
32737 2002-09-03  Martin Baulig  <martin@gnome.org>
32739         * icall.c (System.Reflection.Assembly::get_location): New interncall.
32741 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32743         * icall.c: fixed leak in get_temp_path. Thanks lupus.
32745 2002-09-03  Martin Baulig  <martin@gnome.org>
32747         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
32748         argument to store the end address of the disassembled instruction.
32750         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
32751         here from debug-symfile.h.
32752         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
32753         JIT into this struct.
32754         (MonoSymbolFile): Added `char *image_file' field.
32755         (MonoDebugGetMethodFunc): Removed.
32756         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
32757         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
32758         (mono_debug_find_method): New method.
32760         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
32761         create a full symbol file.
32762         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
32763         and static symbol files.
32764         (mono_debug_find_method): The symbol file keeps an internal method hash,
32765         call this to get a MonoDebugMethodInfo from a MonoMethod.
32767         * debug-symfile.[ch]: Removed.
32769 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
32771         * image.c (do_mono_image_open): Remove linker version check.
32773 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
32775         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
32776         wrappers for instance methods.
32777         
32778 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32780         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
32782 2002-08-28  Dick Porter  <dick@ximian.com>
32784         * Makefile.am: Export HOST_CC for w32 builds
32786 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32788         * file-io.c process.c: MonoString are null terminated, no
32789         need for mono_string_to_utf16() anymore.
32791 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32793         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
32795 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
32797         * icall.c, reflection.h: speedup System.MonoType.
32799 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32801         * reflection.c: allow null as the value of a string argument in
32802         custom attributes constructors.
32804 2002-08-27  Martin Baulig  <martin@gnome.org>
32806         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
32807         `trampoline_address' field.
32809 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
32811         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
32812         check (fixes bug #29486) 
32814 2002-08-27  Martin Baulig  <martin@gnome.org>
32816         * debug-mono-symfile.c: Changed the file format in a way that allows us
32817         open it read-only and to use a specially malloced area for all the
32818         dynamic data.  We can now also generate a symbol file on-the-fly if we're
32819         debugging IL code and there is no MCS generated symbol file for it.
32821 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32823         * object.c: added a define for a good string and array
32824         creation speedup (not enabled by default because we need to deal with
32825         the synch stuff).
32827 2002-08-26  Martin Baulig  <martin@gnome.org>
32829         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
32830         function to create a dynamic symbol file.  This is used by the
32831         debugger to create a symbol file for IL code on-the-fly.
32833 2002-08-26  Martin Baulig  <martin@gnome.org>
32835         * loader.c (mono_lookup_pinvoke_call): Include the error message
32836         from g_module_error() in the error message.
32838 2002-08-24  Martin Baulig  <martin@gnome.org>
32840         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
32841         function to update the symbol file.  The symbol file is mmap()ed
32842         writable, but private.  This allows us to install the symbol file
32843         together with the assembly.
32845 2002-08-24  Martin Baulig  <martin@gnome.org>
32847         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
32848         but they can read the new symbol file format which mcs is now creating.
32850         * debug-symfile.c (mono_debug_find_source_location): Moved to
32851         debug-mono-symfile.c; this is now operating on the new symbol file.
32853 2002-08-23  Martin Baulig  <martin@gnome.org>
32855         * debug-helpers.c (mono_method_desc_from_method): New function to get
32856         a MonoMethodDesc from a MonoMethod.
32858 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32860         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
32861         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
32863 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32865         * string-icalls.[ch]: make helper methods static.
32867 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32869         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
32870         types to it and to SetValueInternal.
32872         * object.c: Moved handle_enum label to its proper place. This was the
32873         f... bug! ;-)
32875         This time i compiled mcs and gtk-sharp and they both work.
32877 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32879         * icall.c: reverted partially my previous patch until 
32880         object.c:set_value handles enums correcly.
32882 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32884         * icall.c:
32885         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32886         (ves_icall_System_Environment_get_MachineName): removed warning when
32887         compiling under cygwin.
32889 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32891         * object.c: fixed field_get_value() for reference types.
32893 2002-08-22  Dick Porter  <dick@ximian.com>
32895         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32896         Don't free a buffer while it's still needed.  Patch from Jonathan
32897         Liger <Jonathan.liger@wanadoo.fr>
32899 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32901         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32902         internal call.
32904 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32906         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32907         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32909         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32910         we call unmanaged code which throws exceptions.
32912 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32914         * appdomain.h: added per-domain entry_assembly.
32915         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32916         arguments.
32917         * icall.c: Assembly::GetEntryAssembly icall.
32918         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32919         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32921 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32923         * appdomain.h, gc.c: added mono_domain_finalize ().
32925 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32927         * object.c:
32928         (mono_print_unhandled_exception): changed g_warning by g_printerr
32929         because g_log has a 1024 characters limit (yeah, i got a big stack
32930         trace). Don't print exception name, that should be in ToString 
32931         returned string.
32933 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32935         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32936         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32938 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32940         * object.c:
32941         (mono_print_unhandled_exception): after previous commit, i realized
32942         that MS calls ToString on the exception. I changed this function to
32943         do that. This way we get stack_trace for free.
32945 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32947         * object.c:
32948         (mono_print_unhandled_exception): invoke Message property instead of
32949         getting 'message' field from Exception. Don't allocate memory for
32950         'trace' and 'message' if not needed.
32952 2002-08-18  Dick Porter  <dick@ximian.com>
32954         * unicode.c: Fix asserts to match Encoder.cs checks
32956 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32958         * marshal.c: fix unaligned store issue and a few wrong
32959         opcode argument types.
32961 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32963         * icall.c: added GetUninitializedObjectInternal internal call.
32965 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32967         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32968         to the right domain.
32970 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32972         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32974         * class.c (class_compute_field_layout): set blittable to false for Strings
32976         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32978 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32980         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32981         first chunk of code to create types at runtime. Code to
32982         handle ReflectedType/DeclaringType. Make reflection handles
32983         domain specific.
32985 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32987         * class.c: set correct name in arrays.
32989 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32991         * appdomain.c (mono_domain_transfer_object): make it work with
32992         valuetypes. bug fixes.
32994 2002-08-12  Dick Porter  <dick@ximian.com>
32996         * object.h: Rename some parameters to avoid c++ keywords (Patch
32997         from Joseph Wenninger <kde@jowenn.at>)
32999 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
33001         * icall.c: added icall to implement Assembly.GetFile*.
33003 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33005         * reflection.h, reflection.c: code to embed managed resources.
33007 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33009         * class.c: move all the type size stuff into
33010         class_compute_field_layout().
33012 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33014         * class.c: ensure enums have always the correct instance size.
33015         * unicode.c: remove wrong assert.
33017 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33019         * assembly.c: fix mem corruption issue.
33020         * image.h, image.c: added mono_image_get_resource () to access
33021         managed resources.
33022         * icall.c: implemented Assembly.EntryPoint property and some
33023         Managed Resources related internalcalls.
33026 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33028         * image.c, image.h: impemented mono_image_get_entry_point ().
33029         * appdomain.c: use mono_image_get_entry_point.
33031 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33033         * reflection.c: support the object type argument when loading
33034         custom attributes.
33036 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
33038         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
33039         String as return type.
33041 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
33043         * reflection.c: fix encoding of named args for custom attrs to match
33044         the ms implementation. Read them back when instantiating custom
33045         attributes.
33047 2002-08-02  Radek Doulik  <rodo@ximian.com>
33049         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
33050         by Dietmar as quick fix
33051         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
33052         16 as stack size, used on more places as quick fix before Dietmar
33053         will fix it properly
33055 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33057         * object.h, object.c: added accessors for fields and properties.
33059 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33061         * class.c, class.h: made mono_class_get_field_from_name ()
33062         loop on parent types.
33063         Added mono_class_get_property_from_name ().
33065 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33067         * class.c, class.h: move the code to setup the type vtable in its own
33068         function so that it can be reused also for types created at runtime.
33069         Eliminate the "class" identifier from the header file.
33070         * reflection.c: setup the vtable for enums so that we can create
33071         objects for use in SetConstant ().
33073 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
33075         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
33076         instead of the delegate itself as this pointer (bug #28383)
33078 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
33080         * marshal.c (mono_marshal_get_managed_wrapper): added return type
33081         conversions.
33083 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33085         * loader.c: don't set the pinvoke bit on icalls.
33087 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
33089         * debug-helpers.c (mono_method_full_name): only print a number to
33090         indicate wrapper type (so that the output is more readable in traces).
33092 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
33094         * class.c (mono_class_init): include method override patch from Paolo
33096 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
33098         * icall.c: fixed GetTypeCode().
33100 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
33102         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
33103         use real delegate invoke function to make it work with multicast
33104         delegates (fix bug# 28291).
33106 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33108         * object.c: load constant strings.
33110 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33112         * reflection.c: no magic numbers.
33113         * tabledefs.h: security action enum.
33115 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33117         * assembly.c: fix possible memory corruption.
33119 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33121         * reflection.h, reflection.c: added support for linking resources.
33122         * verify.c: check we have an updated corlib.
33124 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
33126         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
33127         string arrays.
33128         (mono_marshal_string_array): null terminate unmanaged string arrays.
33129         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
33131 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33133         * icall.c: Type.GetType () can now return also types from the
33134         calling assembly.
33136 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
33138         * loader.h, loader.c: stack walking support.
33139         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
33140         GetCallingAssembly.
33142 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
33144         * marshal.c: added optimisations for blittable types 
33146         * class.c (mono_array_class_get): do not set blittable attribute on arrays
33147         (mono_class_setup_mono_type): set blittable attribute for single
33148         and double.
33150         * marshal.c (mono_string_utf8_to_builder): impl.
33151         (mono_string_builder_to_utf8): impl.
33152         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
33154 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
33156         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
33157         (mono_marshal_get_managed_wrapper): impl. byref types
33159 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33161         * icall.c:
33162         (search_method): don't display debug message. 
33164 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
33166         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
33168 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
33170         * appdomain.c: set the missing filename when throwing exception.
33172 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
33174         * metadata.c (mono_type_size): code cleanup
33175         (mono_type_stack_size): removed some test code
33177 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
33179         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
33180         mono_get_exception_file_not_found now.
33182         * exception.c (mono_exception_from_name_two_strings): New version
33183         that will call a constructor with two string arguments. 
33184         (mono_get_exception_file_not_found): New helper routine, used to
33185         report file-not-found errors.
33187 2002-07-20  Dick Porter  <dick@ximian.com>
33189         * process.h:
33190         * process.c: Pass file handles to CreateProcess
33191         
33192         * icall.c:
33193         * file-io.h:
33194         * file-io.c: Implemented CreatePipe
33196 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
33198         * metadata.c (mono_get_param_info): set alignment for value types
33200 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33202         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
33203         Constify mono_domain_assembly_open().
33204         * loader.c: handle null namespace in icalls.
33206 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
33208         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
33209         (emit_str_to_ptr_conv): marshal object as structs
33211         * metadata.c (mono_type_to_unmanaged): marshal object as structs
33213         * marshal.c (mono_marshal_get_runtime_invoke): support value types
33215 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
33217         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
33218         (mono_marshal_get_native_wrapper): we an now return value types
33220 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33222         * verify.c: more checks implemented.
33224 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
33226         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
33227         (fix bug #27695)
33228         (mono_marshal_get_native_wrapper): allow byref arguments
33229         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
33230         impl. PtrToStringXXX methods
33231         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
33232         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
33233         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
33234         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
33235         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
33237 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33239         * reflection.c: fix buglet in parsing an assembly name.
33241 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
33243         * marshal.c (emit_ptr_to_str_conv): first impl.
33245 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33247         * object.c, class.h: cache the vtable in the class as suggested by
33248         vargaz@freemail.hu (Zoltan Varga).
33250 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33252         * class.h, loader.c: added mono_field_from_token().
33253         * verify.c: first cut of type checking code.
33255 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
33257         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
33259 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
33261         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
33262         (fix bug #27782)
33263         (mono_marshal_get_remoting_invoke): impl.
33264         (mono_delegate_begin_invoke): impl.
33265         (mono_mb_emit_save_args): impl.
33266         (mono_delegate_end_invoke): impl.
33267         (mono_marshal_get_delegate_begin_invoke):
33268         (mono_marshal_get_delegate_end_invoke):
33269         (mono_marshal_get_delegate_invoke): generate a special name for
33270         those methods (including the signature) and associate them whith
33271         the delegate class. 
33273 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
33275         * reflection.[ch]: 
33276         (mono_reflection_type_from_name): now it has a MonoImage parameter
33277         which is used as the default image to search the type in. If the image
33278         is NULL or getting the type from it fails, it defaults to corlib.
33280         * icall.c: changed 1 call to mono_reflection_type_from_name to match
33281         new parameter.
33283 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33285         * reflection.c: update the parameter table index.
33287 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33289         * domain.c: don't include the mark byte in the string hash.
33291 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33293         * icall.cs: icall for Type.GetTypeCode ().
33294         * verify: a couple of fixes and disabled local initialization checks.
33296 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
33298         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
33300         * debug-helpers.c (mono_method_full_name): print the type of the
33301         runtime wrapper
33303         * metadata.c (mono_signature_hash): a hash function for signatures
33304         (mono_signature_hash): better hash algorithm
33306         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
33308         * debug-helpers.c (mono_method_full_name): this can now generate
33309         method names with signatures
33311         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
33312         method dont have this pointers.
33314 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33316         * reflection.c: fixup typebuilder tokens.
33317         * image.c: fix buglet.
33318         * marshal.h: remove whitespace.
33319         * metadata.h, metadata.c: reinstate code that was removed.
33320         * verify.c: handle catch directives and fix another couple of bugs.
33322 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
33324         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
33325         (mono_marshal_get_native_wrapper): make it comp. with the old code
33326         (mono_marshal_get_native_wrapper): support boolean
33327         (mono_marshal_get_managed_wrapper): support more types
33329 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
33331         * class.c (class_compute_field_layout): compute class->blittable attribute.
33333 2002-07-09  Dick Porter  <dick@ximian.com>
33335         * threads.c: Make the thread cleaning up cope with threads that
33336         call ExitThread()
33338 2002-07-08  Radek Doulik  <rodo@ximian.com>
33340         * reflection.c (method_encode_code): use non-translated values to
33341         compute finally_start, this fixes exception handling on ppc, yay!
33343         * decimal.h (struct signscale): fix endianess
33345 2002-07-07  Radek Doulik  <rodo@ximian.com>
33347         * reflection.c: swap box_val and not val
33349 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33351         * reflection.c, reflection.h: handle full assembly info in type name.
33352         Handle Type arguments when loading custom attributes.
33353         * icall.c: updated to use new mono_reflection_type_from_name () method.
33355 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33357         * loader.c:
33358         (method_from_memberref): also print assembly name when method not found.
33360 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33362         * icall.c:
33363         (ves_icall_TypeGetProperties): fixed bug #27473. 
33365 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33367         * reflection.c: display image name and token when cannot find the
33368         .ctor for an attribute.
33370 2002-07-05  Martin Baulig  <martin@gnome.org>
33372         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33374 2002-07-04  Dick Porter  <dick@ximian.com>
33376         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
33377         compile on mingw.  This will cause mingw builds to not wait for
33378         subthreads to terminate after the main thread does.  I've lodged a
33379         bug with the mingw developers for them to wrap OpenThread().
33381 2002-07-03  Dick Porter  <dick@ximian.com>
33383         * threads.c: Store thread IDs instead of handles, because
33384         GetCurrentThread() returns a pseudohandle and therefore stores
33385         useless values.  mono_thread_cleanup() continues checking the
33386         array of threads until it is empty, to cope with subthreads
33387         spawning new threads after the main thread has finished.
33389         * profiler.h:
33390         * profiler.c:
33391         * profiler-private.h: Pass the thread ID to thread profiler
33392         functions, instead of a handle
33394 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33396         * verify.c: fixes to make it more usable.
33397         * pedump.c: added --verify code to verify IL code in an assembly.
33399 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33401         * reflection.c: turn errors into warnings to allow compiling corlib.
33403 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33405         * reflection.c: add special cases to compile corlib.
33407 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33409         * reflection.c: handle properties with only a set method.
33411 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33413         * opcodes.h: add enum with opcodes in opval order.
33415 2002-07-01  Dick Porter  <dick@ximian.com>
33416         
33417         * object.h:
33418         * object.c (mono_runtime_run_main): Removed unneeded argument
33420 2002-06-28  Martin Baulig  <martin@gnome.org>
33422         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33424 2002-06-27  Dick Porter  <dick@ximian.com>
33426         * threads.c: Store the handle in both the parent thread and in the
33427         subthread, to minimise the time between starting a new thread and
33428         storing its ID.
33430 2002-06-26  Dick Porter  <dick@ximian.com>
33432         * appdomain.c (mono_runtime_cleanup): Close the socket library
33433         after all the threads have finished, not before
33435 2002-06-26  Martin Baulig  <martin@gnome.org>
33437         * debug-symfile.c (mono_debug_find_source_location): Added
33438         `guint32 *line_number' argument.  If it's not NULL, store the line number
33439         there and return the file name without the line number.
33441 2002-06-25  Dick Porter  <dick@ximian.com>
33443         * icall.c:
33444         * process.h:
33445         * process.c: Process forking and other support functions
33447 2002-06-25  Dick Porter  <dick@ximian.com>
33449         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
33450         things dont happen when the image is closed.
33451         (mono_image_lookup_resource): Walk the resource section looking
33452         for a particular entry
33454         * cil-coff.h: PE resource section decoding
33456 2002-06-25  Dick Porter  <dick@ximian.com>
33457         
33458         * assembly.h:
33459         * assembly.c: 
33460         (mono_assembly_foreach): Accessor functions to walk the list of
33461         loaded assemblies
33462         (mono_assembly_set_main):
33463         (mono_assembly_get_main): Process methods need to know which
33464         assembly is the "main" one
33466         * object.c (mono_runtime_run_main): Record the main assembly
33468         * debug-helpers.c: Fix typo
33470 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
33472         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
33473         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
33475 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33477         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
33479 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
33481         * image.c (do_mono_image_open): Initialize reference count,
33482         otherwise we leak the MonoImage.
33484 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33486         * reflection.c: small tweak to handle self-hosting.
33488 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33490         * reflection.c: fix type name parse code.
33492 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33494         * reflection.c: break out of the loop.
33495         * image.c: special case corlib.
33497 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33499         * reflection.c: add all the custom attrs at the end to ensure the
33500         ctors have been properly initialized when the attributes are defined
33501         in the current assembly.
33503 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33505         * reflection.c: handle correctly multiple-nested types.
33507 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33509         * row-indexes.h: fix typos.
33510         * reflection.c: adjust for typos and fix method_def_or_ref
33511         encoding in MethodImpl table.
33513 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33515         * reflection.c: fix entry point patching (thanks Serge!).
33517 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
33519         * verify.c: add check for System.Exception
33521 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33523         * image.c, class.c: minifix for code just c&p'ed.
33524         * reflection.c: warning fix.
33525         * object.h, loader.h, domain.c: load also StringBuilder.
33527 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33529         * marshal.h, marshal.c: some support code to handle complex marshaling.
33531 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33533         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
33534         Better signatures with vtable error dump.
33536 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
33538         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
33540 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
33542         * icall.c (ves_icall_Type_GetField): impl.
33544 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33546         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
33547         to retrieve a marshal description blob for a field or param.
33549 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33551         * reflection.h, reflection.c: change order of nested type emission
33552         to avoid table corruption. The NestedTypes table is sorted.
33553         * icall.c: change order of GetConstructor results to workaround mcs bug.
33555 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33557         * reflection.h, reflection.c: handle field and param marshal
33558         information.
33560 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33562         * icall.c, marshal.c marshal.h: more Marshal class implementation.
33564 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33566         * reflection.c: fix call convention.
33568 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33570         * reflection.h, reflection.c: mono_image_get_memberref_token()
33571         takes a type instead of a class, now. Added
33572         mono_image_get_array_token() to create tokens for the special
33573         multi-dim array methods.
33575 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33577         * assembly.c: handle modules (no assembly table). Split
33578         loading references in its own function.
33579         * class.c: handle moduleref resolution scope.
33580         * image.c, image.h: cache module name in image.
33582 2002-06-07  Martin Baulig  <martin@gnome.org>
33584         * reflection.c (mono_image_get_type_info): Only add a class layout entry
33585         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
33587 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33589         * icall.c: more signature fixes that used uint instead of int.
33591 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33593         * reflection.c: fixed signature of field refs.
33595 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33597         * class.c, reflection.c: handle typerefs of nested types
33598         (both on read and when writing files).
33600 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33602         * icall.c: fix method signatures that tried to workaround the previous
33603         typo, d'oh!
33605 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33607         * debug-helpers.c: fix typo.
33609 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33611         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
33612         rewrote the PE/COFF writing code (our programs are understood by the
33613         ms runtime, now).
33615 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33617         * gc.c, gc.h, icall.c: weakreference support.
33619 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33621         * Makefile.am, mono-config.c: use $(sysconfdir).
33623 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33625         * icall.c: changed default precision of Double.ToString() to 15.
33626         Fixed memory leak. Unified with Single.ToString.
33628 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33630         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
33632 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33634         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
33635         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
33636         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
33637         and myself.
33639 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33641         * debug-symfile.c, sysmath.c: yet more compilation fixes.
33643 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33645         * reflection.c, socket-io.c: more compilation fixes.
33647 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33649         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
33650         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
33651         unicode.c: warning and compiler compatibility fixes.
33653 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33655         * class.h, metadata.c: fixed warnings/compilation errors.
33657 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33659         * Makefile.am, mono-config.c, mono-config.h: configuration file
33660         support routines.
33661         * loader.c, loader.h: make Dll mapping configurable at runtime in the
33662         config file. Export methods to insert and lookup mappings.
33664 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33666         * reflection.c: handle types and boxed objects in custom attr
33667         constructors.
33669 2002-05-30  Martin Baulig  <martin@gnome.org>
33671         * debug-symfile.c
33672         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
33674 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
33676         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
33677         to lookup the implmap row for a P/Invoke method.
33678         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
33679         P/Invoke method from the runtime on an as needed basis.
33681 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
33683         * metadata.c (mono_metadata_parse_signature): impl.
33685 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33687         * class.c: handle .pack directive.
33689 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33691         * object.c: initialize static fields with RVA data.
33693 2002-05-25  Martin Baulig  <martin@gnome.org>
33695         * debug-symfile.c
33696         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
33698 2002-05-24  Martin Baulig  <martin@gnome.org>
33700         * debug-symfile.c
33701         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
33702         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
33703         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
33705 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33707         * object.c: special case string ctros in invoke.
33708         * gc.c: silly whitespace changes.
33710 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
33712         * threadpool.[ch]: impl. a threadpool that can
33713         be used by mint and mono.
33715 2002-05-22  Martin Baulig  <martin@gnome.org>
33717         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
33718         The first argument is now a `MonoReflectionModuleBuilder *', the return
33719         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
33720         `methods' field to get the method builder.  The `token' argument is the
33721         unfixed token.
33723         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
33724         invalid characters instead of g_assert_not_reached()ing.  This seems
33725         to be the behaviour of mscorlib.
33727 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
33729         * object.c (mono_runtime_invoke_array): applied patch from Rachel
33730         Hestilow to fix bug #25104
33732 2002-05-21  Martin Baulig  <martin@gnome.org>
33734         * debug-symfile.c (mono_debug_find_source_location): New function.
33735         Looks up an IL offset in the line number table and returns the source
33736         location as a string.
33738 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33740         * icall.c:
33741         (mono_double_ToStringImpl): changed %f by %g until we have something
33742         better.
33744 2002-05-21  Nick Drochak  <ndrochak@gol.com>
33746         * icall.c : Use different name for Math.Pow's icall.  Needed to check
33747         parameters first in C#.
33749 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33751         * icall.c, reflection.h: added icall to get info about an event.
33753 2002-05-20  Radek Doulik  <rodo@ximian.com>
33755         * object.c (mono_value_box): don't use memcpy for boxing on BIG
33756         endian
33757         (mono_value_box): don't use memcpy for small sizes on
33758         architectures with unaligned access
33760 2002-05-20  Martin Baulig  <martin@gnome.org>
33762         * reflection.c (mono_reflection_setup_internal_class): Don't crash
33763         if `tb->parent == NULL'.
33764         (mono_reflection_create_internal_class): New function.  This is
33765         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
33766         for enum types.
33768         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
33769         New interncall.
33771 2002-05-19  Martin Baulig  <martin@gnome.org>
33773         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
33774         argument to get the length, don't default to the array length.
33776 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
33778         * assembly.c (mono_assembly_setrootdir): New function used to
33779         override the MONO_ASSEMBLIES directory.
33781 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33783         * icall.c: ValueType_GetHashCode() initialize local var.
33785 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33787         * reflection.c: sort custom attributes table.
33789 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33791         * reflection.c: support named args in custom attributes (write support).
33793 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33795         * reflection.c: fix finally position calculation.
33797 2002-05-15  Radek Doulik  <rodo@ximian.com>
33799         * reflection.c: fixed endianess at many places
33801         * icall.c (ves_icall_InitializeArray): comment out debug msg
33803 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
33805         * object.c (mono_unhandled_exception): new function to handle
33806         unhandled exceptions.
33807         (mono_unhandled_exception): call the UnhandledException event.
33808         (mono_runtime_delegate_invoke): impl.
33810 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
33812         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
33813         returns the RVA, not the direct pointer to the data. Handle the case
33814         when the class size is fixed.
33816 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33818         * reflection.c: fix some endianess issues.
33820 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
33822         * object.c (mono_runtime_invoke): is now able to catch exceptions.
33824         * threads.c (mono_thread_init): added a callback which is invoked
33825         at thread start.
33827 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33828         
33829         * icall.c: make GetHashCode return non-negative values.
33831 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33833         * object.c, icall.c, gc.c: revert to address-based hashcode.
33835 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
33837         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
33839 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33841         * icall.c, class.c: special case <Module>.
33843 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
33845         * icall.c: fix bug in GetNow().
33847 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
33849         * object.c (mono_runtime_class_init): make sure that we call all
33850         static class constructors.
33852 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33854         * reflection.c: sort methodsemantics table.
33856 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33858         * reflection.h, reflection.c: honour init locals setting.
33860 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
33862         * icall.c: copied Double ToStringImpl for Single ToStringImpl
33864 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33866         * reflection.c: support ContructorBuilders in attribute blob creation.
33868 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33870         * reflection.c: some changes to build a binary that can be run
33871         directly in windows.
33873 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33875         * loader.c: print a big message when an icall can't be found.
33877 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33879         * string-icalls.c: fix bug 24248.
33881 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33883         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33884         icall.c, reflection.h: separate assembly loading by pathname and by
33885         assembly name. Use the MONO_PATH env var to search for assemblies.
33887 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33889         * assembly.c, image.h: add some support for assemblies
33890         with multiple modules.
33891         * class.c, class.h: export mono_class_from_typeref().
33892         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33893         instead.
33895 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33897         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33898         documentation says (the ECMA one is correct).
33900 2002-05-02  Dick Porter  <dick@ximian.com>
33902         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33903         Don't name the synchronisation mutex.
33905 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33907         * rand.c
33908         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33909         Make the prototypes match.
33910         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33911         Same.
33913         * icall.c
33914         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33915         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33916         all systems have tm.tm_zone, so use strftime() with %Z to print
33917         the timezone abreviation into a temp string.
33919         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33920         rather than mono_array_addr() on a MonoString on Big Endian
33921         machines.
33923 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33925         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33926         fix bug 24041
33928 2002-04-30  Dick Porter  <dick@ximian.com>
33930         * socket-io.c: Cope with SOCKET being an integer rather than a
33931         pointer now.
33933         * threads.c: Added Thread_free_internal, to deal with thread
33934         handle cleanup.  Moved calls to handle_store() and handle_remove()
33935         to start_wrapper(), so each can only be called once.  Allocate
33936         synchronisation blocks with GC_malloc(), and use GC finalisation
33937         to close the handles.
33939         * icall.c: added System.Threading.Thread::Thread_free_internal
33941 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33943         * icall.c: support Environment.Exit, CommandLineArgs().
33945 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33947         * object.c, object.h: added mono_runtime_run_main () and
33948         mono_runtime_get_main_args () for use in System.Environment.
33950 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33952         * gc.c: fix thinko, enable actual finalization since the jit is now
33953         fixed.
33955 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33957         * gc.c, object.c: take into account that an object may be offset wrt the address
33958         returned by GC_malloc().
33960 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33962         * image.c: handle files without entries in the assembly table (modules).
33964 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33966         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33967         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33968         allowed to be null when it's System.Object class setup.
33970 2002-04-27  Martin Baulig  <martin@gnome.org>
33972         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33973         if `tb->parent == NULL' rather than crashing.
33975 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33977         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33978         calling acos() where asin() should have been called.
33980 2002-04-26  Martin Baulig  <martin@gnome.org>
33982         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33983         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33984         there's a subdirectory called `System', but we don't want to read that
33985         subdirectory as an assembly.
33987 2002-04-25  Martin Baulig  <martin@gnome.org>
33989         * debug-symfile.c: Reflect latest MonoString changes.
33991 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33993         * rand.c, rand.h: instance method icalls need to have an explicit
33994         this pointer as first argument in the C implementation.
33996 2002-04-25  Nick Drochak <ndrochak@gol.com>
33998         * icall.c: Fix typo in map for GetNonZeroBytes
34000 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34002         * string-icalls.c : String does now passes unit tests without any 
34003         errors, the following changes has been made:
34004         
34005         Implemented replace methods.
34006         Renaming of methods to (try) follow the standard.
34007         Fixed compare ordinal
34008         Made all memory allocated directly to function instead of via icall function.
34009         Small performance fix in is_in_array function
34010                         
34011  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
34013         c (mono_string_Internal_ctor_charp_int_int):
34014         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
34015         sindex < 0, throw ArgumentOutOfRangeException instead of
34016         ArgumentNullException.
34018         Added new check for length == 0, however
34019         I need to make it return String.Empty from the C code.
34020         
34021         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
34022         that calculate the length for us here.
34023         
34024         (mono_string_Internal_ctor_sbytep_int_int): Replaced
34025         mono_string_new_utf16 with mono_string_new, since value is utf8.
34027 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34029         * object.c: register the object for finalization if needed.
34030         Allocate one more char in the string for the terminating 0 char.
34032 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34034         * class.c, class.h, image.c: check if a type implemenst a destructor.
34035         Use the proper key for array class lookups.
34036         * icall.c: register the icalls in the System.GC class.
34037         * gc.c, gc.h: GC-related functions and icalls.
34039 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34041         * icall.c:
34042         * socket-io.c:
34043         * unicode.c: free some strings gotten from mono_string_to_utf8 and
34044         changed a couple of free () by g_free ().
34046         * decimal.c: one-liner in the comments for decimal2string ().
34048 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34050         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
34052 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34054         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
34055         * object.c (mono_runtime_invoke_array) : handle null in params
34057 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34059         * string-icalls.c: fixed bug in split (one off bug)
34061 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34063         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
34064         * icalls.c: added String::Equals as internal method
34066 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34068         * threads.c: fixed bug in the double interlocked functions
34070 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
34072         * threads.c: implemented all of the new interlocked icalls.
34073         * string-icalls.c: fix a bug in insert.
34074         * icalls.c: added the icalls for interlocked, removed old string functions.
34075         
34076 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34078         * loader.c: fix off-by-one error when reading argument names.
34080 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34082         * profiler.c: win32 counter implementation (untested).
34083         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
34084         (the latter needs testing and more complete impl. from win32 folks).
34086 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
34088         * object.c: mono_array_new_full workaround mono_array_class_get
34089         problem.
34091 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34093         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
34094         * object.h (mono_string_chars): Changed casting type.
34096 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34098         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
34099                            method signatures to use gunichar2 instead of gint16.
34101 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
34103         * object.h, object.c: domain-specific versions of mono_object_new and
34104         mono_array_new.
34106 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
34108         * object.c: changed String layout
34110         * string-icalls.c (mono_string_Internal_ctor_chara): added
34111         internal string constructors.
34113 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
34115         * threads.c: pass 'this' to the thread start routine.
34117 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34119         * string-icalls.c: fix IndexOf and LastIndexOf. Now
34120         InternalCompareStr don't call twice mono_string_cmp_char for the last
34121         character. Improved performance in mono_string_cmp_char.
34123 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34125         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
34126         code into its own library: libmonoruntime.
34128 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
34130         * object.h, object.c: changed array format so that szarrays do not
34131         require a bounds structure.
34132         * icall.c, appdomain.c: support for new szarray format.
34134 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34136         * metadata.c: compare also the retuns type when comparing signatures:
34137         we didn't do this as an optimization since really overloaded methods
34138         must differ also in the arguments, but this doesn't work with
34139         low-level IL code (or when using explicit conversion operators: see
34140         bug#23498 for an example).
34142 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34144         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
34146 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34148         * icall.c: make MonoType::GetElementType its own icall.
34150 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34152         * icall.c: remove MonoMethod_get_Name().
34153         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
34154         object.
34156 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34158         * string-icalls.c: optimized a few methods.
34160 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34162         * icall.c: added all new string internal calls
34163         * string-icalls.c: added, new string internal call implementation.
34164         * object.c: added mono_string_new_size for allocating a string a size
34166 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
34168         * object.c (mono_object_isinst): use the same code as in the
34169         optimized x86 version.
34171 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34173         * profiler.c: TSC-based timer code (faster and more accurate).
34174         Not hooked up in configure, yet (set USE_X86TSC to 1).
34176 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
34178         * profiler.c, profiler.h: track time spent compiling methods.
34179         * threads.c: track thread creation/destruction.
34181 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
34183         * profiler.c, profiler.h, profiler-private.h: profiling interface
34184         and sample implementation. Moved here so that it can be used also by
34185         the jit.
34187 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
34189         * reflection.c, reflection.h: keep types and other handles separate in
34190         the hash tables for referred tokens. Add guid for modules.
34192 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34194         * assembly.c: fix bugs found with valgrind.
34195         * metadata.h, metadata.c: added mono_metadata_guid_heap().
34197 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
34199         * threads: added icall support for getting current domain for
34200                    the thread.
34202 2002-04-13  Martin Baulig  <martin@gnome.org>
34204         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
34205         (MonoDebugVarInfo): Added `index' field for register based addresses.
34206         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
34207         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
34208         `MonoDebugVarInfo *params' and `guint32 this_offset' with
34209         `MonoDebugVarInfo *this_var'.
34211         * debug-symfile.c (relocate_variable): New static function to write
34212         a location description for a local variable or method parameter.
34214 2002-04-12  Martin Baulig  <martin@gnome.org>
34216         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
34217         stack offset and begin/end scope address of a local variable.
34218         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
34219         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
34220         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
34222         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
34223         Added new relocation types for start/end scope of a local variable.
34225 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34227         * object.h: add mono_object_domain() macro.
34228         * reflection.c: handle typespecs.
34229         * icall.c: MonoMethod::get_Name() implementation.
34231 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34233         * icall.c: String::GetHashCode() icall implementation.
34235 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34237         * icall.c: String::IndexOfAny icall.
34238         * object.c, object.h: make array->max_length more useful.
34239         Intrduced mono_object_class() and mono_string_length() macros.
34241 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34243         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
34244         instead of g_unichar_isdigit.
34246 2002-04-11  Nick Drochak  <ndrochak@gol.com>
34248         * icall.c: Implement a simple Double.ToString().
34250 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34252         * appdomain.h: only io-layer.h is supposed to be included.
34253         * icall.c: explicitly import environ. Fix warning.
34255 2002-04-10  Nick Drochak  <ndrochak@gol.com>
34257         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
34258                 return true even if it's not Daylight Savings time.
34259                 Only return false for the case where the function isn't
34260                 implemented for a plaform (read Windows).
34262 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34264         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
34265         data with a mutex.
34267 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
34269         * mempool.c (mono_mempool_alloc): only use g_malloc when
34270         absolutely necessary.
34272 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
34274         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
34276         * class.c (mono_class_vtable): use domain mempool to allocate vtable
34277         (mono_class_proxy_vtable): use domain mempool
34279 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34281         * appdomain.h, appdomain.c: split initialization that requires the
34282         execution engine support into mono_runtime_init().
34284 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
34286         * class.c (mono_class_init): don't include vtable inside MonoClass
34287         to save some memory, gather some statistics.
34288         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
34290 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34292         * icall.c: internalcall implementation for ValueType.Equals().
34294 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
34296         * object.c (mono_message_init): moved 
34297         (mono_runtime_exec_main): new arch. independent impl.
34298         (mono_runtime_invoke_array): new method - like
34299         mono_runtime_invoke, but you can pass an array of objects.
34300         (mono_remoting_invoke): new arch. independent impl.
34301         (mono_message_invoke): new arch. independent impl.
34302         (mono_runtime_class_init): new arch. independent impl.
34303         (mono_runtime_object_init): new arch. independent impl.
34305 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34307         * metadata.c, object.c, reflection.c: documented the exported
34308         functions.
34310 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34312         * icall.c: simpler code to pass the assembly builder data to corlib.
34313         Implement GetNestedTypes() internalcall.
34315 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34317         * class.c: warn if a type can't be loaded.
34319 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
34321         * image.h: typedef MonoImageOpenStatus
34322         * types.h: removed unused file
34323         
34324 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
34326         * icall.c: Enum_ToObject accepts enum value arguments.
34328 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34330         * class.c: move initialization of properties, events and nested
34331         classes, so that they happen for interfaces, too.
34333 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34335         * icall.c: cleanup some ugly casts in Array_SetValue*.
34337 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34339         * icall.c: the values array fro enums is of the correct type, now.
34340         Implement (correctly) getFullName instead of assQualifiedName for
34341         MonoType.
34342         * reflection.h, reflection.c: added mono_type_get_name ().
34344 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34346         * assembly.c, image.h: for each MonoImage, record from wich assembly
34347         it was loaded.
34348         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
34349         Make Type.Assembly work.
34351 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
34353         * debug-symfile.h: use char* instead of gpointer to avoid
34354         unnecessary casts.
34356         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
34358         * icall.c (ves_icall_InternalExecute): impl. FielSetter
34359         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
34361 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
34363         * icall.c (mono_message_init): impl. (code cleanup)
34364         (ves_icall_InternalExecute): impl. FieldGetter
34366         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
34367         defined we call all (non-static)methods through the vtable. 
34369 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
34371         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
34372         finalizer even though the memory is still referenced (and the chunk of
34373         memory is not freed).
34375 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34377         * assembly.c: fix brokeness.
34379 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
34381         * class.c: kill some warnings. Check explicit interface method
34382         implementation also without considering the namespace.
34383         Load also literal strings in static class data.
34385 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
34387         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
34388         (default_assembly_name_resolver): Make the resolver take the
34389         "base" directory where the assembly was originally defined, so we
34390         can load DLLs that are in the same directory as the assembly that
34391         is being referenced.
34393 2002-03-28  Dick Porter  <dick@ximian.com>
34395         * file-io.h: 
34396         * file-io.c:
34397         * socket-io.c: 
34398         * unicode.h: 
34399         * unicode.c: Warning cleanups
34401 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
34403         * object.h, reflection.h: use the correct type instead of MonoObject.
34405 2002-03-28  Martin Baulig  <martin@gnome.org>
34407         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
34408         (mono_debug_update_symbol_file): Initialize classes if necessary.
34410 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34412         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
34413         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
34415 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
34417         * assembly.h: fix function prototype.
34418         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
34419         * mono-endian.h: use const cast.
34421 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34423         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
34425 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34427         * loader.c: don't assert when a typeref can't be loaded, give
34428         a chance to the runtime to trow an exception instead.
34429         * loader.h: fix warning.
34431 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34433         * class.c (mono_class_proxy_vtable): added proxy support
34435 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
34437         * icall.c: removed last of PAL calls, added System.Environment
34438         * file-io.h, file-io.c: MonoIO implementation
34439         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
34441 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34443         * appdomain.c: do not use the byte marker in ldstr table lookup.
34444         * debug-helpers.c: allow two ':' to separate class and method name.
34445         * object.c: allocate arrays bounds with the GC, too.
34446         * verify: add a few more checks.
34448 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
34450         * reflection.c: output also literal strings. Allocate parameter data
34451         with GC_malloc() (thanks, Martin, for catching this!).
34453 2002-03-26  Martin Baulig  <martin@gnome.org>
34455         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
34456         include the `this' offset in the `param_offsets'.
34458 2002-03-25  Martin Baulig  <martin@gnome.org>
34460         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
34461         mono_debug_get_class() function to get the classes. Added new
34462         relocation types for arrays and strings.
34463         (mono_debug_get_class): New static function to search in all
34464         referenced assemblies for a metadata token.
34466         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
34468 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34470         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
34471         hold gc-allocated objects. Make the string heap a stream like the
34472         others. Removed duplicated code when writing stream info.
34473         Added asserts to catch possible buffer overflows. Set the sorted map
34474         for tables that need sorting. Added some documentation.
34476 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
34478         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
34479         for interned strings and vtables.
34481 2002-03-24  Martin Baulig  <martin@gnome.org>
34483         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
34484         it in the array since it was created with g_slist_prepend().
34486 2002-03-24  Martin Baulig  <martin@gnome.org>
34488         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
34489         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
34490         (mono_debug_method_from_token): Renamed to
34491         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
34492         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
34494         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
34495         relocation types.
34497         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
34499 2002-03-24  Martin Baulig  <martin@gnome.org>
34501         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
34502         (mono_debug_method_from_token): New func.
34504         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
34505         New interncall, calls mono_debug_local_type_from_signature().
34506         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
34507         calls mono_debug_method_from_token().
34509 2002-03-23  Martin Baulig  <martin@gnome.org>
34511         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
34512         specifies the number of bytes to be converted, not the array size.
34513         Return the number of chars, not the number of bytes.
34514         (ves_icall_iconv_get_chars): The `byteCount' argument
34515         specifies the number of bytes to be converted, not the array size.
34517 2002-03-23  Martin Baulig  <martin@gnome.org>
34519         * reflection.h (MonoReflectionSigHelper): New type.
34521         * reflection.c (mono_reflection_sighelper_get_signature_local),
34522         (mono_reflection_sighelper_get_signature_local): New functions.
34524         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
34525         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
34526         interncalls.
34528 2002-03-23  Martin Baulig  <martin@gnome.org>
34530         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
34531         is_writeable is set.
34532         (mono_raw_buffer_update): New function to write the modified map
34533         back to disk.
34535         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
34537         * debug-symfile.c (mono_debug_update_symbol_file): Call
34538         mono_raw_buffer_update() when done writing.
34540 2002-03-23  Martin Baulig  <martin@gnome.org>
34542         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
34544         * debug-symfile.c: Added support for arguments and local variables.
34546 2002-03-23  Dick Porter  <dick@ximian.com>
34548         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
34549         protected by ifdefs, hence breaking the w32 build.
34551 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34553         * object.c: implement is_interned() the right way.
34555 2002-03-21  Martin Baulig  <martin@gnome.org>
34557         * debug-symfile.[ch]: New files to handle debugging information
34558         files. There's also support to dynamically update these symbol
34559         files to include machine dependent information.
34561 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
34563         * threads.c (mono_thread_create): new function to create thread
34564         from C
34566 2002-03-20  Martin Baulig  <martin@gnome.org>
34568         * icall.c (ves_icall_InternalInvoke): Create a new object if the
34569         method is a constructor.
34570         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
34571         points to ves_icall_InternalInvoke().
34573 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
34575         * file-io.c: Flush shouldn't throw exceptions.
34577 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
34579         * file-io.c: FileStream flush support; FileSetLength now
34580         restores file pointer.
34582 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34584         * class.c: set image for pointer classes.
34586 2002/03/19  Nick Drochak <ndrochak@gol.com>
34588         * sysmath.c: Forgot one.
34590 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
34592         * sysmath.c: Avoid redefining existing names.
34594 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
34596         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
34597         handled by runtime as icall rather than dllimport from libm.so
34598         * file-io.c, file-io.h: fixed handle argument type.
34600 2002-03-18  Dick Porter  <dick@ximian.com>
34602         * reflection.c (mono_image_get_type_info): rename interface to
34603         iface, because of "#define interface struct" on windows.
34605 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
34607         * class.c, class.h: rename and export mono_ptr_class_get().
34608         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
34609         * reflection.c, reflection.h, icall.c: better/saner type name
34610         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
34611         method signatures.
34613 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
34615         * class.c (mono_class_init): removed hardcoded GHC_SLOT
34617         * icall.c (ves_icall_InternalInvoke): impl.
34619 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34621         * reflection.c: output the interface map table, too.
34623 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34625         * class.c (class_compute_field_layout): separate computation of 
34626         static field layout
34628 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
34630         * icall.c: added System.Buffer support.
34631         * file-io.c: moved file icalls from PAL to FileStream.
34633 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34635         * icall.c (ves_icall_System_Object_GetHashCode): impl.
34637 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
34639         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
34641 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34643         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
34645 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34647         * debug-helpers.{c,h}: moved here from monograph some useful functions
34648         to locate a method by name/signature in a class or image. Included
34649         also a small and flexible IL disassembler.
34651 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34653         * reflection.c: fixup tokens in methods with small header size, too.
34655 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
34657         * object.c (mono_string_to_utf8): remove assert(!error), instead
34658         print a warning. 
34660 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
34662         * icall.c: update to the new mono_Array_class_get interface.
34664 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34666         * appdomain.c, object.c: Boehm-GC enable.
34667         * icall.c: make get_data_chunk() support split data requests.
34668         Ensure a class is initialized in more cases. Return only the first
34669         property found in GetProperties() or the compiler gets confused. 
34670         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
34671         * reflection.h, reflection.c: add fixup mechanism for field and method
34672         tokens. Initialize assembly->typeref in a single place. Output
34673         properties after events. Support custom attributes for events, too.
34674         Typo fix for paramter custom attrs.
34676 2002-03-07  Martin Baulig  <martin@gnome.org>
34678         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
34680 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
34682         * class.c (mono_array_class_get): fix. for multi. dim. arrays
34684 2002-03-06  Martin Baulig  <martin@gnome.org>
34686         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
34687         non-zero lower bounds. See testcases #F10-#F13.
34689 2002-03-05  Martin Baulig  <martin@gnome.org>
34691         * exception.c (mono_get_exception_argument_out_of_range): New exception.
34693         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
34694         ves_icall_System_Array_GetValue(), only calculate the absolute array position
34695         here.
34696         (ves_icall_System_Array_SetValue): Likewise.
34697         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
34698         as argument and does the actual work. This function is used when copying a
34699         multi-dimensional array.
34700         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
34701         now do all the widening conversions of value types.
34702         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
34704 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34706         * class.c: remove some magic numbers and use the smbolic names,
34707         instead. Added init_events() to load event info at class init time.
34708         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
34709         and mono_metadata_methods_from_event().
34710         * reflection.h, reflection.c: added support for writing out the evnets
34711         related information.
34713 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34715         * reflection.h, icall.c: use a different method (GetInterfaces)
34716         to gather interface info and add isbyref, isprimitive and
34717         ispointer to the ves_icall_get_type_info() return value.
34719 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34721         * class.h: stared adding support for events.
34722         * icall.c: split find_members implementation. Added debug icall to get
34723         the address of an object.
34724         * reflection.c: handle TypeBuilders in mono_type_get_object().
34726 2002-03-01  Martin Baulig  <martin@gnome.org>
34728         * icall.c (ves_icall_System_Array_GetLength): This must throw an
34729         ArgumentOutOfRangeException(), not an ArgumentException().
34730         (ves_icall_System_Array_GetLowerBound): Likewise.
34731         (ves_icall_System_Array_GetValue): Improved argument checking.
34732         (ves_icall_System_Array_SetValue): Improved argument checking.
34734 2002-03-01  Martin Baulig  <martin@gnome.org>
34736         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
34737         called with invalid arguments rather than just dying with g_assert().
34738         (ves_icall_System_Array_SetValue): Likewise.
34739         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
34740         raise a NotImplementedException instead.
34741         (ves_icall_System_Array_GetLength): Added argument checking.
34742         (ves_icall_System_Array_GetLowerBound): Added argument checking.
34744 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
34746         * object.h (mono_assert): new macros mono_assert and
34747         mono_assert_not_reached
34749 2002-02-28  Martin Baulig  <martin@gnome.org>
34751         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
34752         and "System::String::IsInterned" to "System::String::_IsInterned".
34754 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
34756         * icall.c: remove hacks for typebuilder. Added icall to create a
34757         modified type from a tybebuilder.
34758         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
34759         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
34760         to create a backing MonoClass for a TypeBuilder.
34762 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34764         * class.c, class.h: more refactoring of class init.
34765         Export mono_class_setup_mono_type() and mono_class_setup_parent().
34767 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
34769         * marshal.c, marshal.h: start of marshaling interface.
34771 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34773         * icall.c: fix order in assembly qualified name icall.
34775 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34777         * class.c: do not free str, since we store it in the hash table.
34778         * reflection.h: add label field to MonoILExceptionInfo.
34779         * reflection.c: handle references to more than one assembly. Handle
34780         case when there isn't a module created in the assembly.
34782 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34784         * class.c: Fix typo. Start refactoring of class init code.
34786 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34788         * appdomain.c: exit with 1 on error.
34789         * class.c: we already have the name in MonoClassField.
34790         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
34791         MonoStreamHeader instead of an offset of image->raw_metadata.
34793 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
34795         * appdomain.c (mono_init): Be even more descriptive about the error.
34797 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
34799         * appdomain.c: give the user an informative message when corlib can't
34800         be loaded.
34802 2002-02-26  Martin Baulig  <martin@gnome.org>
34804         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
34805         New icall to get the time zone data.
34807 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34809         * reflection.c: set virtual and raw size of section correctly.
34810         * threads.c: transfer domain information to newly created threads.
34812 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34814         * class.c: when instancing a class in a domain, load the default
34815         vaules for static fields from the constant table. Fix System.Enum to
34816         not be an enum.
34817         * icall.c: implement Object::GetType() internalcall. Implemented
34818         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
34819         Fixed checking of binding flags in find_members().
34820         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
34821         * reflection.c: handle enumerations when writing to the constant
34822         table. Use a different object cache for types.
34825 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
34827         * object.c (mono_object_isinst): fix for arrays
34829         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
34831 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34833         * object.c: don't use mprotect ()  and fix intern pool hash table
34834         lookup for big endian systems.
34836 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34838         * icall.c: change type_is_subtype_of () signature.
34840 2002-02-21  Mark Crichton  <crichton@gimp.org>
34842         * rand.c, rand.h: Added random number generator for
34843         System.Security.Cryptography classes.
34845         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
34847         * icall.c: Added System.Security.Cryptography calls.
34849 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34851         * class.c, icall.c, metadata.c: better support for pointer types.
34852         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
34853         * reflection.c: Add support for getting custom attrs for properties
34854         and simplify some code.
34856 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34858         * icall.c: change getToken () and add custom attribute GetBlob()helper
34859         method.
34860         * reflection.h: add custom attrs array to the reflection builder structures.
34861         * reflection.c: encode and emit custom attributes for all the relevant
34862         reflection objects. Cache fieldref and methodref tokens. Change
34863         mono_image_create_token() interface to take a MonoDynamicAssembly.
34864         More complete custom attributes decoder. Load custom attributes for
34865         Assembly, Field, Method and Constructor objects, too. Make the
34866         returned array an Attribute[] one, not object[]. Added
34867         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
34868         custom attribute constructor.
34870 2002-02-20  Dick Porter  <dick@ximian.com>
34872         * icall.c:
34873         * rawbuffer.c:
34874         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34875         problem code out for now).
34877 2002-02-19  Radek Doulik  <rodo@ximian.com>
34879         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34881 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34883         * icall.c: register the GetCustomAttributes method.
34884         * object.c, object.h: add mono_string_new_len ().
34885         * reflection.h, reflection.c: added mono_runtime_invoke(),
34886         mono_install_runtime_invoke(). Added
34887         mono_reflection_get_custom_attrs () to load custom attributes and
34888         create the attribute objects.
34890 2002-02-19  Dick Porter  <dick@ximian.com>
34891         * threads-dummy-types.c:
34892         * threads-dummy-types.h:
34893         * threads-dummy.c:
34894         * threads-dummy.h:
34895         * threads-pthread-types.c:
34896         * threads-pthread-types.h:
34897         * threads-pthread.c:
34898         * threads-pthread.h:  Deleted obsolete files
34900 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34902         * class.c (mono_class_vtable): runtime init the class when we
34903         allocate static class data.
34905         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34907         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34908         and String - but we will need generic marshalling support in the
34909         future. 
34910         (mono_init): set the domain name in a ms compatible way
34912         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34913         String[].
34915 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34917         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34918         for sizes
34920         * appdomain.c (mono_domain_unload): impl.
34922 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34924         * appdomain.c, object.c: fix intern pool implementation.
34925         * class.c: fix alignment code.
34927 2002-02-16  Radek Doulik  <rodo@ximian.com>
34929         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34930         and s2 > s1, just copy lower bytes to be compatible with little
34931         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34932         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34934         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34935         force big_endian to be 1 for big endian machines 
34936         (ves_icall_iconv_new_decoder): ditto
34938 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34940         * socket-io.c (convert_sockopt_level_and_name): If the system
34941         doesn't define SOL_IP or SOL_TCP, get them by hand using
34942         getprotobyname() and caching the values (because this could be a
34943         slow operation).
34944         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34945         Use the appropriate struct when the system does support it. Ie,
34946         not all systems have struct ip_mreqn so use struct ip_mreq when
34947         appropriate.
34949 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34951         * reflection.c: handle finally clauses.
34953 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34955         * socket-io.c: use g_snprintf() instead of snprintf.
34957 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34959         * reflection.c (mono_param_get_objects): Cast second argument to
34960         mono_method_get_param_names to a const char** to silence the
34961         compiler warning.
34963         * appdomain.c (mono_domain_assembly_open): Put parens around the
34964         truth statement in the for-loop.
34966         * unicode.c (iconv_convert): Got rid of a compiler warning about
34967         int i being unused when the system has a new iconv.
34968         (iconv_get_length): Same.
34970         * image.c (load_class_names): Cast the second argument to
34971         g_hash_table_insert() to char* to hush compiler warnings about the
34972         arg being a const.
34973         (mono_image_open): Same here.
34975         * socket-io.c: Don't conditionally include sys/filio.h or
34976         sys/sockio.h here anymore since we now get them from
34977         io-layer/io-layer.h
34978         (inet_pton): If the system doesn't support inet_aton, implement
34979         using inet_addr and also #define INADDR_NONE if it isn't defined
34980         by the system.
34982 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34984         * metadata.c, metadata.h: added function to get packing and size info
34985         of a typedef.
34986         * reflection.h, reflection.c: handle field RVA data. Save info about
34987         the table layout if needed. Assign typedef indexes to all the types
34988         before dumping the info about them to avoid forward reference problems.
34990 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34992         * socket-io.c (convert_sockopt_level_and_name): ifdef
34993         SO_ACCEPTCONN because it is not defined on my system (old debian)
34995 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34997         * opcode.c: use stddef.h to get NULL.
34999 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35001         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
35002         for FIONBIO, FIONREAD and SIOCATMARK.
35003         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
35004         define INADDR_NONE and besides, inet_addr() is deprecated and
35005         should not be used. Use inet_pton() instead - it also has the
35006         added bonus that it can easily handle IPv6 addresses as well.
35007         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
35009 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35011         * decimal.c: remove _MSC_VER conditional.
35013 2002-02-13  Dick Porter  <dick@ximian.com>
35015         * socket-io.c: 
35016         * icall.c: Internal calls for Blocking, Select, Shutdown,
35017         GetSocketOption and SetSocketOption
35019 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35021         * assembly.cs: better resolver: use it instead of some kludgy
35022         code.
35024 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
35026         * reflection.c: the best way to speed-up the compiler is to avoid
35027         infinite loops.
35029 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
35031         * class.c (mono_class_vtable): changed the object layout
35032         (obj->vtable->class). 
35033         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
35035 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35037         * assembly.c: look for assemblies in the assembly dir, too.
35039 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35041         * class.c: fix thinko in mono_class_from_type().
35043 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35045         * exception.h, exception.c: added TypeLoadException.
35046         * object.h, object.c: added mono_array_clone ().
35047         * icall.c: handle throwOnError in AssemblyGetType().
35048         Added Array.Clone().
35049         * opcode.h, opcode.c: use a single value for the opcode val.
35050         Compile fix for non-gcc compilers.
35052 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
35054         * opcodes.c, opcodes.h: export interesting info about opcodes.
35056 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
35058         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
35059         icalls. 
35061         * class.c (class_compute_field_layout): set element_class for enums
35062         (mono_class_create_from_typedef): set element_class for normal classes
35064         * icall.c (ves_icall_System_Enum_get_value): impl.
35066         * class.c (mono_class_create_from_typedef): do not set valuetype
35067         flag for System.ValueType and System.Enum
35069 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
35071         * unicode.c (iconv_convert): fix big endian problem.
35073 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35075         * class.c: add asserts if we are ever going to scribble over memory.
35076         * socket-io.c: not all systems have AF_IRDA defined.
35078 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
35080         * class.c (class_compute_field_layout): do not consider static
35081         fields to compute alignment
35083 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
35085         * appdomain.c (mono_appdomain_get): impl.
35086         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
35088 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35090         * icall.c: ignore "file://" prefix when loading an assembly.
35092 2002-01-23  Dick Porter  <dick@ximian.com>
35094         * socket-io.c:
35095         * icall.c:
35096         * Makefile.am: Added socket support
35098 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35100         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
35101         code back.  This should return the assemblies that are loaded by
35102         the runtime on behalf of an application domain. 
35104         The current implementation is still broken, it just returns every
35105         assembly loaded, but until we get real applications domain this
35106         will do.
35108 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
35110         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
35111         AppDomain object.
35113 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35115         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
35116         the mono_class_from_name lookup.
35117         (ves_icall_get_parameter_info): ditto.
35118         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
35119         method.
35120         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
35122 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
35124         * class.c: load also nested classes on class init.
35125         System.ValueType instance methods gets passed boxed
35126         values, unless methods in derived classed that get a pointer to the
35127         data.
35128         * icall.c: use better name parsing code in GetType().
35129         * image.c, image.h: add mono_image_loaded ().
35130         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
35131         * reflection.c, reflection.h: added mono_reflection_parse_type().
35133 2002-01-22  Veronica De Santis <veron78@interfree.it>
35135         * icall.c : Added mapping of internal calls for Manual and Auto reset events
35136         * threads.c : Added the implementation of internal calls for events
35137         * threads.h : Added prototypes of internal calls for events
35138         
35139 2002-01-21  Radek Doulik  <rodo@ximian.com>
35141         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
35143 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
35145         * class.c (mono_class_init): set min_align to 1 (instead of 0)
35146         (mono_class_value_size): use min_align
35148 2002-01-20  Dick Porter  <dick@ximian.com>
35150         * threads.h:
35151         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
35152         so it compiles on w32.
35154 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
35156         * metadata.c (mono_type_stack_size): impl.
35158         * class.c (mono_class_get_field): impl. memberref token
35160 2002-01-16 Veronica De Santis <veron78@@interfree.it>
35162         * icall.h : Added the internal calls mapping for CreateMutex_internal
35163                     and ReleaseMutex_internal.
35164         * threads.h : Added the prototype of mutexes internal calls.
35165         * threads.c : Added the implementations of mutexes internal calls.
35167 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35169         * metaparse.h: removed unused file.
35170         * reflection.c, reflection.h: added stream_data_align () function 
35171         to align data in streams and keep stream aligned. Add support for
35172         exception support in method headers.
35174 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
35176         * unicode.c: make iconv_convert () return the number of bytess written
35177         in the output buffer.
35179 2002-01-15  Dick Porter  <dick@ximian.com>
35180         * threads.c: Make the runtime's idea of infinite timeouts coincide
35181         with the class library's
35183         Fix a particularly egregious bug in mono_thread_cleanup(). That
35184         code was so utterly bogus it must have been written on a Monday.
35186 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35188         * reflection.h: add subtypes field to TypeBuilder.
35189         * reflection.c: encode constants for literal fields.
35190         Handle subtypes. Fix user string token (and add a zero byte)
35191         at the end.
35192         
35193 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
35195         * class.c (mono_class_init): bug fix: assign slot numbers for
35196         abstract methods.
35198 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35200         * reflection.c: don't try to output a code RVA for abstract methods.
35201         Small fixes for method header format. Output parameter info to the
35202         ParamDef table. Save method overriding info to MethodImpl table.
35203         Fix property support. Allow typedef.extends to be a type in the
35204         building assembly.
35205         * verify.c: fix off-by-one error.
35207 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
35209         * class.c: fix mono_class_from_mono_type () for szarray types.
35210         Remove unused cache check in mono_class_from_type_spec().
35211         * icall.c: *type_from_name () functions handle simple arrays and byref.
35212         * reflection.c: handle byref and szarray types. Handle methods without
35213         body (gets P/Invoke compilation working). Handle types and fields in
35214         get_token ().
35215         * reflection.h: add rank to MonoTypeInfo.
35217 2002-01-10  Dick Porter  <dick@ximian.com>
35219         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
35220         internal calls
35222 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35224         * icall.c: initialize class in type_from_handle ().
35225         Loop also in parent classes for get_method ().
35226         * reflection.c: properly encode class and valuetype types.
35227         Start on encoding TypeBuilder types. Handle fieldrefs.
35228         Use correct length when registering a user string.
35229         Handle ConstructorBuilder and MonoMethod in get_token ().
35230         Make mono_type_get_object () aware of cached types.
35231         * object.c: back out change to mono_string_new ().
35233 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
35234         * object.c: mono_string_new should return a NULL when the string 
35235         passed in is NULL -- not try to deference it.
35236         
35237 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35239         * icall.c: hack to make IsSubType work for TypeBuilders.
35240         * reflection.c: emit constructors before methods.
35241         Retrieve param names in mono_param_get_objects().
35243 2002/01/05  Nick Drochak  <ndrochak@gol.com>
35245         * Makefile.am: fix list of headers and sources so automake 1.5
35246         doesn't complain. Removed \# at end of list.
35248 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35250         * reflection.c: get token for a method ref. Set return type of
35251         constructor to void.
35252         * loader.c: debug message.
35253         * class.c: typo fix.
35255 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
35257         * icall.c: fix array init with rank > 1. FindMembers
35258         loops in parent class as well.
35259         * image.c: do not insert nested types in name cache.
35260         * reflection.c: warning fix.
35261         * reflection.h: add override method (for interface impl).
35263 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
35265         * metadata.c: fix customattr decoding.
35267 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
35269         * rawbuffer.cs: Added native Win32 implementation, avoids using
35270         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
35272 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
35274         * class.c: make the low-level routines handle the cache.
35276 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
35278         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
35280 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
35282         * class.c: fix mono_array_element_size() for objects.
35283         * class.h, class.c: add properties to MonoClass and load them
35284         at init time.
35285         * icall.c: check with isinst() when assigning a value to an array
35286         instead of requiring the classes to match exactly.
35287         Implemented icall for System.Type::GetType().
35288         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
35289         enums. Handle bindingflags when looking for methods and fields.
35290         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
35291         and mono_metadata_methods_from_property().
35292         * reflection.h, reflection.c: added structures for propreties,
35293         parameters and enums. Implemented mono_property_get_object() and
35294         mono_param_get_objects().
35296 2001-12-18  Dick Porter  <dick@ximian.com>
35298         * file-io.c: Use mono_string_to_utf16() instead of
35299         mono_string_chars()
35301         * object.c: Added mono_string_to_utf16(), which copies the non
35302         NULL-terminated MonoString into a new double-null-terminated
35303         buffer.
35305 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
35307         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
35309 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
35311         * file-io.c: raise exceptions if handle is invalid.
35313 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
35315         * assembly.c: yet another check for mscorlib.
35316         * class.c, class.h: load nesting info for classes.
35317         * icall.c: many new functions to support the Reflection classes.
35318         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
35319         * reflection.h, reflection.c: mono_image_create_token(),
35320         mono_assembly_get_object(), mono_type_get_object(),
35321         mono_method_get_object(), mono_field_get_object(): methods to return
35322         objects that parallel the C representation of assemblies, types,
35323         methods, fields.
35325 2001-12-11  Dick Porter  <dick@ximian.com>
35327         * icall.c:
35328         * file-io.c: Internal calls for file IO.
35330 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
35332         * tabledefs.h: missing FileAttributes.
35333         * verify.h, verify.c: use is_valid_string () to simplify and check for
35334         valid strings more correctly. Fix warnings and speeling.
35335         Check more tables: Filed, File, ModuleRef, StandAloneSig.
35336         Check code: branches, maxstack, method calls.
35338 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
35340         * object.c (mono_object_allocate): removed static, so that the jit
35341         can allocate value types.
35343         * icall.c (ves_icall_System_DateTime_GetNow): impl.
35345 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35347         * class.c: init enum types right away and register the
35348         token->MonoClass map in mono_class_create_from_typedef ().
35349         * verify.h, verify.c: first cut of the verifier.
35350         * pedump.c: add --verify switch to verify metadata tables.
35351         * tabledefs.h: add some missing enums.
35353 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
35355         * class.c (mono_install_runtime_class_init): impl.
35356         (mono_class_init): renamed mono_class_metadata_init to
35357         mono_class_init, also removed the metadata_inited flag
35359         * object.c (mono_object_isinst): use faster algorithm
35361 2001-11-30  Radek Doulik  <rodo@ximian.com>
35363         * mono-endian.h: reverted last change
35364         added function prototypes
35366         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
35367         add mono-endian.c back
35369         * mono-endian.c: returned back, as Paolo pointed out, it's needed
35370         for unaligned access, I've mistaked it with endianess. I am
35371         sorry.
35372         (mono_read16): fix reverted endianess
35373         (mono_read64): ditto
35374         (mono_read32): ditto
35376 2001-11-30  Dick Porter  <dick@ximian.com>
35378         * exception.c: Implement mono_exception_from_name()
35380 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35382         * metadata.h, metadata.c: remove params_size and locals_size and their
35383         calculation from the metadata code: they are only usefult to the
35384         interp.
35386 2001-11-29  Radek Doulik  <rodo@ximian.com>
35388         * object.c (mono_ldstr): swap bytes here, it's probably not the
35389         best place, but works for me now, I'll redo it once I know mono
35390         better, also note that I add PROT_WRITE and don't reset back, also
35391         note that it's only affects big endians, so x86 should be OK
35393         * mono-endian.h (read16): use just glib macros for both endians
35395         * mono-endian.c: removed as glib macros are used in in
35396         mono-endian.h so we don't need to care about endianess for read
35397         macros as glib does that for us already
35399 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
35401         * class.h, class.h: take minimum alignment into consideration so
35402         that the fields of a class remain aligned also when in an array.
35404 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35406         * loader.h, loader.c: add mono_method_get_param_names().
35407         * class.c: 0-init class fields.
35409 2001-11-26  Dick Porter  <dick@ximian.com>
35411         * icall.c:
35412         * threads-types.h:
35413         * threads.c: New file that handles System.Threading on all platforms
35415         * object.c: 
35416         * object.h: Remove the synchronisation struct from MonoObject,
35417         replace it with a pointer that gets initialised on demand
35419         * Makefile.am: Replace all the system-specific threading code with
35420         a single file that uses the new wrapper library
35422 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
35424         * class.c, class.h: add mono_install_trampoline() so that the runtime
35425         can register a function to create a trampoline: removes the ugly
35426         requirement that a runtime needed to export arch_create_jit_trampoline.
35427         * object.h, object.c: added mono_install_handler() so that the runtime
35428         can install an handler for exceptions generated in C code (with
35429         mono_raise_exception()). Added C struct for System.Delegate.
35430         * pedump.c: removed arch_create_jit_trampoline.
35431         * reflection.c: some cleanups to allow registering user strings and
35432         later getting a token for methodrefs and fieldrefs before the assembly
35433         is built.
35434         * row-indexes.h: updates and fixes from the new ECMA specs.
35436 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
35438         * class.h, class.c: add enum_basetype field to MonoClass.
35439         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
35440         to get index in the constant table reated to a field, param or
35441         property.
35442         * reflection.h, reflection.c: handle constructors. Set public-key and
35443         version number of the built assembly to 0.
35444         * row-indexes.h: update from new ECMA spec.
35446 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35448         * class.h, class.c: add a max_interface_id to MonoClass.
35449         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
35450         since it's used to do that. Added mono_type_type_from_obj().
35451         Make GetType() return NULL instead of segfaulting if the type was not
35452         found. Handle simple arrays in assQualifiedName.
35453         * object.h: add a struct to represent an Exception.
35454         * reflection.c: output call convention in method signature.
35455         Add code to support P/Invoke methods and fixed offsets for fields.
35457 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
35459         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
35460         the value.
35461         * icall.c: use mono_array_addr instead of array->vector: fixes the
35462         reflection image writing.
35463         * reflection.c: init call convention byte to 0 in method signature.
35464         Encode the property signature. Don't output property-related methods
35465         twice. Really process the properties for a type (don't cast a field to
35466         a property, my mom always told me that).
35467         Fix 64 bit issues in pointer alignment in a different and more
35468         readable way.
35470 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
35472         * loader.h: Removed type class from MonoDefaults, added monotype
35474         * loader.c: Loaded MonoType, removed loading of Type
35476         * icall.c (my_mono_new_object): Now returns a System.MonoType,
35477         and fills in System.Type._impl with a RuntimeTypeHandle rather
35478         than the actual MonoClass *
35480         (ves_icall_type_from_handle): change from type_class to
35481         monotype_class
35483         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
35484         implemented
35486         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
35487         implemented
35489         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
35491         (ves_icall_System_Reflection_Assembly_GetType): implemented
35493         (ves_icall_System_MonoType_assQualifiedName): implemented
35495         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
35497 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
35499         * assembly.c (mono_assembly_open): Implement a cache for the
35500         assemblies. 
35502         (mono_assembly_close): only destroy the assembly when the last
35503         reference is gone.
35504         
35505 2001-11-09  Dick Porter  <dick@ximian.com>
35507         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
35509 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
35511         * class.c (mono_class_metadata_init): bug fix: compute the right slot
35513 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35515         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
35516         from Martin Weindel.
35517         * object.h: add mono_string_chars ().
35519 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
35521         * reflection.c (build_compressed_metadata): Eliminates warnings
35522         and uses 64-bit clean code.
35524         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
35525         (mono_type_equal): Change signature to eliminate warnings.
35527 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35529         * icall.c, loader.c: remove the internalcall array constructors.
35530         Changes to match the new MonoArray structure.
35531         * object.h, object.c: an array object doesn't allocate an extra
35532         vector. Add mono_array_new_full () to create jagged arrays easily.
35534 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35536         * metadata.h, metadata.c: add mono_metadata_field_info () to
35537         retreive all the info about a field from vairous tables.
35538         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
35539         * class.h, class.c: augment MonoClassField with more info.
35540         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
35541         policy and load a field's RVA if needed.
35543 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
35545         * class.c (mono_class_metadata_init): create a trampoline for all
35546         virtual functions instead of actually compiling them.
35548 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
35550         * class.h, class.c: include name in MonoClassField.
35551         * class.c: fix fundamental type of System.Object and System.String.
35552         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
35553         tokens in ldtoken.
35554         * icall.c: remove internalcalls for the Reflection stuff that is now
35555         done in C# code.
35556         * loader.c: mono_field_from_memberref () implementation.
35557         * mono-endian.c: thinko (s/struct/union/g).
35558         * object.c, object.h: make the mono_string_* prototypes actually use
35559         MonoString instead of MonoObject.
35560         * reflection.c, reflection.h: updates for changes in the reflection
35561         code in corlib: we use C structures that map to the actual C# classes.
35562         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
35563         fat method header if needed and use the info from the ILGenerator for
35564         methods. Handle fields in types. Misc fixes.
35566 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
35568         * class.c (mono_class_metadata_init): bug fix: always allocate
35569         space for static class data
35571 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
35573         * class.c (mono_compute_relative_numbering): use relative
35574         numbering to support fast runtime type checks.
35576 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
35578         * class.c (mono_class_create_from_typeref): added debugging output
35579         to print class name when MonoDummy is returned instead of real class
35581 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
35583         * class.c (mono_class_metadata_init): interface offset table now
35584         contains pointers into the vtable - this is more efficient for the jit
35586 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
35588         * class.c (mono_class_metadata_init): use a temporary vtable (the
35589         old algorithm only worked for the interpreter, but not for the jit)
35591 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
35593         * loader.c (method_from_memberref): use mono_class_get to get the
35594         class of an array instead of using System.Array directly.
35595         (mono_get_method): also add MEMBERREF methods to the method cache
35596         which usefull for arrays.
35598 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
35600         * pedump.c (arch_compile_method): added to compute vtable entry
35602         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
35603         number of interfaces.
35604         
35605         * class.h: merged MonoArrayClass into MonoClass
35607         * class.c (mono_class_create_from_typedef): compute the vtable size and
35608         allocate space to include the vtable inside MonoClass
35609         (mono_class_metadata_init): initialize the vtable
35611 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
35613         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
35614         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
35615         * image.c: endian fixes by Laurent Rioux.
35616         * object.h, object.c: rename MonoStringObject to MonoString and
35617         MonoArrayObject to MonoArray. Change some function names to conform to
35618         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
35619         guint16* as first argument, so don't use char*.
35620         Provide macros to do the interesting things on arrays in a portable way.
35621         * threads-pthread.c: updates for the API changes and #include <sched.h>
35622         (required for sched_yield()).
35623         * icall.c: updates for the API changes above.
35624         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
35625         platforms that need them.
35627 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35629         * class.c: set the correct type for all the fundamental
35630         type when loading the class.
35632 2001-10-05  Dick Porter  <dick@ximian.com>
35634         * threads-pthread.c (pthread_mutex_timedlock): Simple
35635         compatibility version for C libraries that lack this call.
35637 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35639         * class.c: MonoTypes stored in MonoClass are stored as
35640         fundamental MonoTypes when the class represents a
35641         fundamental type (System.Int32, ...).
35642         The TypeHandle return by ldtoken is a MonoType*.
35643         * icall.c: ves_icall_get_data_chunk () write out all the
35644         PE/COFF stuff. Implement ves_icall_define_method (),
35645         ves_icall_set_method_body (), ves_icall_type_from_handle ().
35646         * image.c: properly skip unknown streams.
35647         * loader.h, loader.c: add type_class to mono_defaults.
35648         * metadata.c, metadata.h: export compute_size () as
35649         mono_metadata_compute_size () with a better interface.
35650         Typo and C&P fixes.
35651         * pedump.c: don't try to print the entry point RVA if there is no entry point.
35652         * reflection.c, reflection.h: many cleanups, fixes, output method
35653         signatures and headers, typedef and typeref info, compress the metadata
35654         tables, output all the heap streams, cli header etc.
35655         * row-indexes.h: typo fixes.
35657 2001-10-04  Dick Porter  <dick@ximian.com>
35659         * object.h: Add a synchronisation mutex struct to MonoObject
35661         * object.c (mono_new_object): Initialise the object
35662         synchronisation mutexes
35664         * icall.c: System.Threading.Monitor internal calls
35665         
35666         * threads-pthread.h:
35667         * threads-pthread.c: System.Threading.Monitor internal calls
35669         * threads-types.h: New file, includes the system-specific thread
35670         structures
35671         
35672         * threads-pthread-types.h:
35673         * threads-pthread-types.c: New files, handle pthread-specific
35674         synchronisation types
35676         * threads-dummy-types.h: 
35677         * threads-dummy-types.c: New files of dummy support for
35678         thread-specific types
35680         * metadata.c:
35681         * image.c:
35682         * pedump.c: include mono-endian.h not endian.h
35683         
35684         * Makefile.am: More threads files.
35685         Name mono-endian.h not endian.h
35687 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
35689         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
35690         stuff and implement a few more bits.
35691         * icall.c: a field needs to be dereferenced twice. Do not use the same
35692         name for two variables in the same scope.
35693         * image.c, image.h: cleanups.
35695 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
35697         * class.c (mono_class_metadata_init): bug fix: compute the right size
35699 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
35701         * icall.c: implemented some of the Reflection internalcalls.
35702         * image.c, image.h: start writing out the PE/COFF image.
35703         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
35704         that does the reverse than decode_blob_size ().
35705         * object.c: use mono_metadata_encode_value (). Move here
35706         temporary implementation of mono_string_to_utf8 ().
35707         * rawbuffer.c: make malloc_map static.
35709 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35711         * metadata.c: fix type comparison for arrays.
35712         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
35713         Added a couple of new classes to monodefaults.
35714         * icall.c: added a couple of Reflection-related internalcalls.
35715         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
35716         Added a byval_arg MonoType to MonoClass.
35718 2001-09-28  Dick Porter  <dick@ximian.com>
35720         * icall.c:
35721         * threads-pthread.h: 
35722         * threads-pthread.c: Implemented internal calls for
35723         LocalDataStoreSlot operations.  Applied mutexes around all shared
35724         data.  Reworked the thread creation and Start() operations to
35725         avoid a race condition.
35726         
35727         * threads-dummy.h:
35728         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
35730 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
35732         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
35734 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
35736         * class.c, loader.c: warn and return NULL instead of erroring out.
35737         * icall.c: added System.AppDomain::getCurDomain().
35738         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
35740 2001-09-25  Dick Porter  <dick@ximian.com>
35742         * threads-pthread.h:
35743         * threads-pthread.c: Implemented timed thread joining and added
35744         System.Threading.Thread::Join_internal internal call
35746         * icall.c: Added System.Threading.Thread::Join_internal internal call
35748         * threads-dummy.h:
35749         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
35751 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
35753         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
35754         mono_string_intern () to implement the semantics of the ldstr opcode
35755         and the interning of System.Strings.
35756         * icall.c: provide hooks to make String::IsIntern and String::Intern
35757         internalcalls.
35759 2001-09-23  Dick Porter  <dick@ximian.com>
35761         * threads-dummy.c: 
35762         * threads-dummy.h: New files of dummy threading routines
35764         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
35765         support code based on system specifics
35767         Rename PTHREAD_LIBS to THREAD_LIBS
35768         
35769 2001-09-23  Dick Porter  <dick@ximian.com>
35771         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
35772         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
35773         internal calls.
35774         (mono_thread_init): Set up a Thread object instance to return when
35775         the main thread calls Thread.CurrentThread
35776         (mono_thread_cleanup): Wait for all subthreads to exit
35778         * icall.c: New internal calls for System.Threading.Thread::Sleep
35779         (including Schedule) and CurrentThread
35781         * threads.h: New file, to insulate thread-specific stuff from the
35782         rest of the code
35784 2001-09-21  Dick Porter  <dick@ximian.com>
35786         * threads-pthread.h: 
35787         * threads-pthread.c: New file, for handling pthreads-style
35788         threading support.  Start() now starts a new thread and executes
35789         the ThreadStart delegate instance.
35791         * icall.c: Added the internalcall for
35792         System.Threading.Thread::Start_internal
35794         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
35796 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
35798         * loader.c: work around the different signatures for delegates
35799         constructors csc generates in compiled code vs the ones compiled in mscorlib.
35801 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35803         * class.h, class.c: add mono_class_get_field_from_name ().
35804         * *: Fix C comments and other ANSI C issues.
35806 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
35808         * endian.h, assembly.c: fix some endianness issues.
35810 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
35812         * loader.h, load.c: add delegate_class to mono_defaults.
35813         Handle runtime provided methods in mono_get_method ().
35815 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
35817         * loader.c (mono_get_method): use pinvoke for internal call
35819         * icall.c: use pinvoke for internal call
35821         * loader.c (method_from_memberref): set the method name
35823 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
35825         * metadata.c: help the compiler generate better code for
35826         mono_class_from_mono_type ().
35828 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
35830         * class.c (mono_class_metadata_init): delayed computing of the
35831         class size to mono_class_metadata_init ()
35833 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
35835         * class.c, class.h: add an interfaces member to MonoClass.
35836         * image.c, image.h: add assembly_name field to MonoImage
35837         from the assembly table.
35838         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
35840 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35842         * class.c: Handle Array in mono_class_from_mono_type ().
35843         * metadata.c, pedump.c: some endian fixes.
35845 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35847         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
35848         * metadata.c: fix small problem introduced with the latest commit.
35850 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
35852         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
35853         We don't need a MonoMetadata pointer anymore to compare signatures in
35854         mono_metadata_signature_equal (), update callers.
35855         Reduced memory usage an number of allocations for MonoMethodHeader and
35856         MonoMethodSignature.
35858 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
35860         * metadata.c: added compare for szarray.
35862 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
35864         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
35865         and add a couple more types to it and mono_defaults. Give an hint on
35866         classes that need implementing in our corlib and are referenced
35867         in mscorlib.
35869 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
35871         * class.h, class.c: keep track if a class is also an Enum.
35872         * loader.c: Implement a couple more types for use in libffi
35873         marshalling. Gives better diagnostics when failing to dlopen
35874         a library. Set method->klass for P/Invoke methods, too.
35876 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35878         * class.c, class.h: add a MonoType this_arg to MonoClass that
35879         represents a pointer to an object of the class' type that
35880         can be used by the interpreter and later the type cache.
35881         Add best guess alignment info for valuetype objects.
35883 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35885         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35886         into MonoType: one less level of indirection and allocation and
35887         simplifies quite a bit of code. Added cache for MonoTypes that are
35888         used frequently, so that we don't need to allocate them all the time.
35890 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35892         * class.c (mono_class_create_from_typedef): System.Enum is also a
35893         value type, although it does not derive from System.ValueType
35894         (maybe a bug in the ms compiler?)
35896         * metadata.c (mono_type_size): return the right size for value types
35898         * loader.c (mono_get_method): only initialize method header if not abstract
35900         * class.c (mono_class_from_mono_type): use mono_default values. 
35902 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35904         * *: use MonoClass pointers instead of <type_tokens>
35905         
35906         * class.h: new flag: metadata_inited.
35908         * class.c (mono_class_metadata_init): impl.
35909         (mono_class_instance_size): impl.
35910         (mono_class_data_size): impl.
35912 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35914         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35915         MonoClass now has the name and name_space fields. 
35916         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35917         mono_get_method () takes and optional MonoClass as argument.
35918         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35919         instead that takes advantage of a map from class names to typedef
35920         tokens in MonoImage.
35922 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35924         * metadata.c: zero is not a valid alignment boundary.
35925         Merge MONO_TYPE_VOID in default decoding code.
35927 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35929         * image.h: merged MonoMetadata into MonoImage
35931         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35932         identify the type of elements.
35934 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35936         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35937         * cil-coff.h: split MonoMSDOSHeader and add size info.
35938         * image.c: add some consistency checks.
35939         * metadata.c: fix row size computation: one programmer
35940         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35941         add explanation for the locator routine.
35942         Fix decoding of size in method header.
35943         
35944 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35946         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35947         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35948         function from gnome-libs.  This uses the right path separator
35949         based on the OS, and also works around a bug in some systems where
35950         a double slash is not allowed. 
35951         (default_assembly_name_resolver): Use g_concat_dir_and_file
35952         (mono_assembly_open): ditto.
35954 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35956         * metadata.c (mono_metadata_signature_equal): impl.
35958         * *: void is now a realy MonoType (instead of using NULL)
35959         
35960         * metadata.c (do_mono_metadata_parse_type): use
35961         mono_metadata_parse_type to parse void value.
35963 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35965         * metadata.c, metadata.h: in the signature and method header store
35966         only the space required for holding the loca vars and incoming arguments.
35968 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35970         * metadata.c (do_mono_metadata_parse_type): treat void like any
35971         other type (instead of assigning NULL);
35973 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35975         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35977 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35979         * image.c (do_mono_image_open): added a cache for arrays.
35981 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35983         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35984         decode a single column from a row in a metadata table and changes
35985         to take advantage of it in the typedef locator (gives a nice speed up).
35986         Store offset info for function params.
35988 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35990         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35992 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35994         * assembly.c: how could mono_assembly_close () had ever worked?
35995         * metadata.c, metadata.h: provide offset info for local vars.
35996         Implement mono_type_size () to take care of alignment as well
35997         as size (it was mono_field_type_size in cli/class.c before).
35999 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
36001         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
36003         * assembly.h (CORLIB_NAME): set to corlib.dll
36005         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
36007 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36009         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
36010         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
36011         tokentype.h: massive namespace cleanup.
36013 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36015         * metadata.h, metadata.c: decode exception clauses when parsing method header.
36017 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
36019         * metadata.c (mono_metadata_free_type): added check for type !=
36020         NULL (void) before calling mono_metadata_free_type()
36022 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
36024         * metadata.h, row_indexes.h: added header with enumerations to use
36025         to index in the columns from tables in metadata and to decode coded
36026         tokens: we should start using this instead of embedding magic numbers
36027         all over the code.
36029 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
36031         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
36032         Move metadata_t info from cli_image_info_t to MonoImage, where
36033         it's easily accessible. Changed all the uses accordingly.
36034         Added the method and class caches to MonoImage.
36035         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
36036         and mono_metadata_decode_value () signature to be more consistent
36037         with the other parse functions (and simplify code). Taken advantage
36038         of zero-length array allocation with GCC. Removed reduntant (and
36039         wrong) MonoFieldType struct and use MonoParam instead. Changed
36040         mono_metadata_parse_field_type () to use common code for parsing.
36041         Added mono_metadata_typedef_from_field () and
36042         mono_metadata_typedef_from_method () to lookup a typedef index from a
36043         field or method token.
36044         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
36046 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
36048         * metadata.c (mono_metadata_parse_field_type): Implement. 
36049         (do_mono_metadata_parse_type): Split engine from
36050         mono_metadata_parse_type, so that we can create smaller structures
36051         for things that just have one pointer to the MonoType (look at
36052         the MonoFieldType)
36054 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
36056         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
36057         as Jan Gray found out, it is incorrect. 
36059 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
36061         * assembly.c: Implement asssembly loading.  This loads an image
36062         and loads all the referenced assemblies.  Come to think of it, we
36063         could always do lazy loading of the assemblies. 
36065         * image.c (mono_image_open): Keep loaded images in a hashtable.
36067         * image.h (MonoImage): Add reference count.
36069 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
36071         * assembly.c (mono_assembly_open): Keep track of the file name in
36072         case the assembly has no ASSEMBLY table.
36074         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
36075         from get.c here.
36077 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
36079         * metadata.c, metadata.h: decode local vars in method header
36080         parse function. Change callers accordingly.
36082 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
36084         * metadata.h, cil-coff.h: protect against multiple inclusion.
36085         Added some new structures to hold information decoded from metadata:
36086         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
36087         and relevant decoding/free functions.
36088         * metadata.c: implement decoding functions. Add warning for out of bounds
36089         index in mono_metadata_locate(). Implement mono_get_method () to retreive
36090         all the info about a method signature and invocation. Remove check on
36091         uninitialized local var in parse_mh() and fix memory leak.
36093 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
36095         * metadata.h: More macros.
36097         * tokentype.h: New file.
36099 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
36101         * assembly.c: added a consistency check and initialize
36102         some structures with g_new0().
36103         * metadata.c: fixed a couple more bugs in table size computation
36104         and add other checks for out-of bound access to metadata.
36106 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
36108         * metatada.c: fix bugs computing table sizes. Spew a
36109         warning when index in string heap is out of bounds.
36111 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
36113         * metadata.h: Add a couple of macros to manipulate tokens. 
36115 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36117         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
36118         cli_section_tables).
36120 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
36122         * metadata.c (mono_metadata_user_string): New function, provides
36123         access to the UserString heap. 
36125 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
36127         * metadata.c: Add inline documentation.
36129 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
36131         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
36132         files. 
36134 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
36136         * typeattr.h: New file, TypeAttribute flags. 
36138 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
36140         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
36141         mono_assembly_ensure_section): Section loading code.
36142         (load_section_tables): Load the sections.
36144         * mono/metadata/metadata.c (mono_metadata_locate_token,
36145         mono_metadata_locate): Functions to locate the information
36146         definition given a token or a table and an index.
36147         (mono_metadata_compute_table_bases): New.
36148         (compute_size): New function to compute the sizes of the various
36149         tables.
36151         * mono/metadata/metadata.h: Finish listing the different index
36152         types. 
36154         * mono/metadata/pedump.c: Improve to dump new information.
36156 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
36158         * mono/metadata/metadata.c: Entered all the tables matching
36159         Beta2. 
36161         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2